.btn {
  border-width: 2px;
}
body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #910909 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #fff0b0 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #910909 !important;
  border-color: #910909 !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: #3f0404 !important;
  border-color: #3f0404 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3f0404 !important;
  border-color: #3f0404 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #910909 !important;
  border-color: #910909 !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: #3f0404 !important;
  border-color: #3f0404 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3f0404 !important;
  border-color: #3f0404 !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: #fff0b0 !important;
  border-color: #fff0b0 !important;
  color: #b08f00 !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: #594800 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #b08f00 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !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: #910909;
  color: #910909;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3f0404 !important;
  background-color: transparent!important;
  border-color: #3f0404 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #910909 !important;
  border-color: #910909 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #910909;
  color: #910909;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3f0404 !important;
  background-color: transparent!important;
  border-color: #3f0404 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #910909 !important;
  border-color: #910909 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #fff0b0;
  color: #fff0b0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe059 !important;
  background-color: transparent!important;
  border-color: #ffe059 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #b08f00 !important;
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #910909 !important;
}
.text-secondary {
  color: #910909 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #fff0b0 !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: #310303 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #310303 !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: #ffdd4a !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: #910909;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #fff0b0;
}
.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: #910909;
  border-color: #910909;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #910909;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f22828;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #910909 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #910909;
}
/* 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: #910909;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #910909;
}
.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: #910909;
  border-bottom-color: #910909;
}
.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: #910909 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #910909 !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='%23910909' %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-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugIHkp5NuE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugIHkp5NuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugIHkp5NuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugIHkp5NuE .container {
    padding: 0 24px;
  }
}
.cid-ugIHkp5NuE .row {
  justify-content: center;
}
.cid-ugIHkp5NuE .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugIHkp5NuE .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugIHkp5NuE .content-wrapper {
    padding: 32px;
  }
}
.cid-ugIHkp5NuE .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugIHkp5NuE .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugIHkp5NuE .mbr-section-title {
  color: #000000;
}
.cid-ugIHkp5NuE .mbr-text {
  color: #262642;
}
.cid-ugYVl4jK2X {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ugYVl4jK2X .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-ugYVl4jK2X .card-box {
  z-index: 2;
  position: relative;
}
.cid-ugYVl4jK2X .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #000000;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-ugYVl4jK2X .mbr-iconfont-big {
  font-size: 16rem;
  color: #000000;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-ugYVl4jK2X .card-title,
.cid-ugYVl4jK2X .card-text,
.cid-ugYVl4jK2X .card-number {
  transition: all 0.3s;
}
.cid-ugYVl4jK2X .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #f2f2f2;
  transition: all 0.3s;
}
.cid-ugYVl4jK2X .card-wrapper:hover {
  background: #000000;
}
.cid-ugYVl4jK2X .card-wrapper:hover .mbr-iconfont-big {
  color: #808080;
  transform: rotate(-20deg);
}
.cid-ugYVl4jK2X .card-wrapper:hover .card-title,
.cid-ugYVl4jK2X .card-wrapper:hover .card-text,
.cid-ugYVl4jK2X .card-wrapper:hover .card-number {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ugYVl4jK2X .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ugYVl4jK2X .card-title,
.cid-ugYVl4jK2X .iconfont-wrapper {
  color: #160830;
}
.cid-ugYVl4jK2X .card-text {
  color: #353535;
}
.cid-ugYVl4jK2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugYVl4jK2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGEmUJ3KWL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uGEmUJ3KWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGEmUJ3KWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/slide3-1-1600x1080.jpg");
}
.cid-uGEmUJ3KWL .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uGEmUJ3KWL .container-fluid {
    padding: 0 20px;
  }
}
.cid-uGEmUJ3KWL .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uGEmUJ3KWL .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uGEmUJ3KWL .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uGEmUJ3KWL .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uGEmUJ3KWL .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uGEmUJ3KWL .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uGEmUJ3KWL .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uGEmUJ3KWL .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGEmUJ3KWL .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uGEmUJ3KWL .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uGEmUJ3KWL .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uGEmUJ3KWL .mbr-section-title {
  color: #ffffff;
}
.cid-uGEmUJ3KWL .mbr-text,
.cid-uGEmUJ3KWL .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uGEmUJ3KWL .mbr-section-title,
.cid-uGEmUJ3KWL .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uGEmUJ3KWL .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugqM4UygOt {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-ugqM4UygOt img,
.cid-ugqM4UygOt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ugqM4UygOt .item:focus,
.cid-ugqM4UygOt span:focus {
  outline: none;
}
.cid-ugqM4UygOt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugqM4UygOt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugqM4UygOt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ugqM4UygOt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugqM4UygOt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ugqM4UygOt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ugqM4UygOt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugqM4UygOt .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-ugqM4UygOt .mbr-text,
.cid-ugqM4UygOt .mbr-section-btn {
  text-align: left;
}
.cid-ugqM4UygOt .item-title {
  text-align: left;
}
.cid-ugqM4UygOt .item-subtitle {
  text-align: left;
}
.cid-uGDYRWvJnK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uGDYRWvJnK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDYRWvJnK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/slide3-1-1600x1080.jpg");
}
.cid-uGDYRWvJnK .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uGDYRWvJnK .container-fluid {
    padding: 0 20px;
  }
}
.cid-uGDYRWvJnK .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uGDYRWvJnK .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uGDYRWvJnK .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uGDYRWvJnK .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uGDYRWvJnK .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uGDYRWvJnK .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uGDYRWvJnK .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uGDYRWvJnK .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGDYRWvJnK .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uGDYRWvJnK .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uGDYRWvJnK .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uGDYRWvJnK .mbr-section-title {
  color: #ffffff;
}
.cid-uGDYRWvJnK .mbr-text,
.cid-uGDYRWvJnK .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uGDYRWvJnK .mbr-section-title,
.cid-uGDYRWvJnK .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uGDYRWvJnK .content-wrapper {
    min-height: 360px;
  }
}
.cid-ulBQilsBrR .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-ulBQilsBrR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulBQilsBrR .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-ulBQilsBrR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulBQilsBrR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugZYmwL5yc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZYmwL5yc .mbr-overlay {
  z-index: 1;
}
.cid-ugZYmwL5yc .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZYmwL5yc .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZYmwL5yc .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZYmwL5yc .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZYmwL5yc .mbr-text {
  color: #555555;
}
.cid-ugZYmwL5yc .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZYmwL5yc .card-container {
  display: flex;
}
.cid-ugZYmwL5yc .card-container .card {
  border-radius: 0;
}
.cid-ugZYmwL5yc .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZYmwL5yc .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZYmwL5yc .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZYmwL5yc .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-uC7O3MB0rK.popup-builder {
  background-color: #ffffff;
}
.cid-uC7O3MB0rK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uC7O3MB0rK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uC7O3MB0rK .modal-content,
.cid-uC7O3MB0rK .modal-dialog {
  height: auto;
}
.cid-uC7O3MB0rK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uC7O3MB0rK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uC7O3MB0rK .form-wrapper .mbr-form .form-group,
  .cid-uC7O3MB0rK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uC7O3MB0rK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uC7O3MB0rK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uC7O3MB0rK .mbr-text {
  text-align: center;
}
.cid-uC7O3MB0rK .pt-0 {
  padding-top: 0 !important;
}
.cid-uC7O3MB0rK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uC7O3MB0rK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uC7O3MB0rK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uC7O3MB0rK .modal-open {
  overflow: hidden;
}
.cid-uC7O3MB0rK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uC7O3MB0rK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uC7O3MB0rK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uC7O3MB0rK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uC7O3MB0rK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uC7O3MB0rK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uC7O3MB0rK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uC7O3MB0rK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uC7O3MB0rK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uC7O3MB0rK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uC7O3MB0rK .modal-backdrop.fade {
  opacity: 0;
}
.cid-uC7O3MB0rK .modal-backdrop.show {
  opacity: .5;
}
.cid-uC7O3MB0rK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uC7O3MB0rK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uC7O3MB0rK .modal-header {
    padding: 1rem;
  }
}
.cid-uC7O3MB0rK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uC7O3MB0rK .modal-header .close svg {
  fill: #353535;
}
.cid-uC7O3MB0rK .modal-header .close:hover {
  opacity: 1;
}
.cid-uC7O3MB0rK .modal-header .close:focus {
  outline: none;
}
.cid-uC7O3MB0rK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uC7O3MB0rK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uC7O3MB0rK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC7O3MB0rK .modal-body {
    padding: 1rem;
  }
}
.cid-uC7O3MB0rK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uC7O3MB0rK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC7O3MB0rK .modal-footer {
    padding: 1rem;
  }
}
.cid-uC7O3MB0rK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uC7O3MB0rK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uC7O3MB0rK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uC7O3MB0rK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uC7O3MB0rK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uC7O3MB0rK .modal-lg,
  .cid-uC7O3MB0rK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uC7O3MB0rK .modal-xl {
    max-width: 1140px;
  }
}
.cid-uC7O3MB0rK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uC7O3MB0rK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uC7O3MB0rK .form-group {
  margin-bottom: 1rem;
}
.cid-uC7O3MB0rK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uC7O3MB0rK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uC7O3MB0rK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uC7O3MB0rK .mbr-section-btn {
  margin: 0;
}
.cid-uC7O3MB0rK .mbr-section-btn .btn {
  margin: 0;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugNvlsieVJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNvlsieVJ .mbr-overlay {
  z-index: 1;
}
.cid-ugNvlsieVJ .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugNvlsieVJ .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugNvlsieVJ .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugNvlsieVJ .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugNvlsieVJ .mbr-text {
  color: #555555;
}
.cid-ugNvlsieVJ .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugNvlsieVJ .card-container {
  display: flex;
}
.cid-ugNvlsieVJ .card-container .card {
  border-radius: 0;
}
.cid-ugNvlsieVJ .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugNvlsieVJ .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugNvlsieVJ .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugNvlsieVJ .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ujUWa5cr0o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ujUWa5cr0o .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUWa5cr0o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ujUWa5cr0o .container {
    padding: 0 24px;
  }
}
.cid-ujUWa5cr0o .row {
  justify-content: center;
}
.cid-ujUWa5cr0o .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ujUWa5cr0o .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ujUWa5cr0o .content-wrapper {
    padding: 32px;
  }
}
.cid-ujUWa5cr0o .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ujUWa5cr0o .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ujUWa5cr0o .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ujUWa5cr0o .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ujUWkp4IK4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e6e6e6;
}
.cid-ujUWkp4IK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUWkp4IK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUWkp4IK4 .row {
  justify-content: center;
}
.cid-ujUWkp4IK4 .video-block {
  margin-bottom: 20px;
}
.cid-ujUWkp4IK4 .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-ujUWkp4IK4 .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-ujUWkp4IK4 .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-ujUWkp4IK4 .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ujUWkp4IK4 .mbr-section-title {
  color: #E0BDB6;
}
.cid-ujUWkp4IK4 .mbr-date {
  color: #747474;
}
.cid-ujUWkp4IK4 .mbr-text {
  color: #747474;
}
.cid-ujUW1egxNQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ujUW1egxNQ img,
.cid-ujUW1egxNQ .item-img {
  width: 100%;
}
.cid-ujUW1egxNQ .item:focus,
.cid-ujUW1egxNQ span:focus {
  outline: none;
}
.cid-ujUW1egxNQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujUW1egxNQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujUW1egxNQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujUW1egxNQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujUW1egxNQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujUW1egxNQ .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-ujUW1egxNQ .mbr-text,
.cid-ujUW1egxNQ .mbr-section-btn {
  text-align: left;
}
.cid-ujUW1egxNQ .item-title {
  text-align: left;
}
.cid-ujUW1egxNQ .item-subtitle {
  text-align: left;
}
.cid-ugJ4ZA70VV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ugJ4ZA70VV img,
.cid-ugJ4ZA70VV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ugJ4ZA70VV .item:focus,
.cid-ugJ4ZA70VV span:focus {
  outline: none;
}
.cid-ugJ4ZA70VV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugJ4ZA70VV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugJ4ZA70VV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugJ4ZA70VV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugJ4ZA70VV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugJ4ZA70VV .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-ugJ4ZA70VV .mbr-text,
.cid-ugJ4ZA70VV .mbr-section-btn {
  text-align: left;
}
.cid-ugJ4ZA70VV .item-title {
  text-align: left;
}
.cid-ugJ4ZA70VV .item-subtitle {
  text-align: left;
}
.cid-uhyQtb1p6u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyQtb1p6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyQtb1p6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyQtb1p6u .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyQtb1p6u .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyQtb1p6u .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyQtb1p6u .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyQtb1p6u .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyQtb1p6u .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyQtb1p6u .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyQtb1p6u .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyQtb1p6u .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyQtb1p6u .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyQtb1p6u .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyQtb1p6u .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyQtb1p6u .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyQtb1p6u .mbr-section-title {
  color: #ffffff;
}
.cid-uhyQtb1p6u .mbr-text,
.cid-uhyQtb1p6u .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyQtb1p6u .mbr-section-title,
.cid-uhyQtb1p6u .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyQtb1p6u .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugZbwx79wQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #353535;
}
.cid-ugZbwx79wQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZbwx79wQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugZbwx79wQ .container {
    padding: 0 16px;
  }
}
.cid-ugZbwx79wQ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugZbwx79wQ .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugZbwx79wQ .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugZbwx79wQ .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugZbwx79wQ .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugZbwx79wQ .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugZbwx79wQ .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugZbwx79wQ .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugZbwx79wQ .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugZbwx79wQ .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugZbwx79wQ .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugZbwx79wQ .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugZbwx79wQ .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugZbwx79wQ .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugZbwx79wQ .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugZbwx79wQ .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugZbwx79wQ .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugZbwx79wQ .mbr-section-title {
  color: #000000;
}
.cid-ugZbwx79wQ .mbr-text,
.cid-ugZbwx79wQ .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugZbwx79wQ .item-title {
  color: #000000;
}
.cid-ugZbwx79wQ .item-text {
  color: #6f6f6f;
}
.cid-ugZbwx79wQ .mbr-section-title,
.cid-ugZbwx79wQ .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-ugZc3rRdmp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZc3rRdmp .mbr-overlay {
  z-index: 1;
}
.cid-ugZc3rRdmp .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZc3rRdmp .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZc3rRdmp .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZc3rRdmp .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZc3rRdmp .mbr-text {
  color: #555555;
}
.cid-ugZc3rRdmp .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZc3rRdmp .card-container {
  display: flex;
}
.cid-ugZc3rRdmp .card-container .card {
  border-radius: 0;
}
.cid-ugZc3rRdmp .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZc3rRdmp .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZc3rRdmp .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZc3rRdmp .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugClHeDYXI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fcfcfc;
}
.cid-ugClHeDYXI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ugZckBiA9f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZckBiA9f .mbr-overlay {
  z-index: 1;
}
.cid-ugZckBiA9f .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZckBiA9f .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZckBiA9f .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZckBiA9f .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZckBiA9f .mbr-text {
  color: #555555;
}
.cid-ugZckBiA9f .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZckBiA9f .card-container {
  display: flex;
}
.cid-ugZckBiA9f .card-container .card {
  border-radius: 0;
}
.cid-ugZckBiA9f .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZckBiA9f .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZckBiA9f .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZckBiA9f .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugCdH9yTZU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugCdH9yTZU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCdH9yTZU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCdH9yTZU .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugCdH9yTZU .panel-group {
  border: none;
}
.cid-ugCdH9yTZU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugCdH9yTZU .panel-body,
.cid-ugCdH9yTZU .card-header {
  padding: 1rem 0;
}
.cid-ugCdH9yTZU .panel-title-edit {
  color: #000000;
}
.cid-ugCdH9yTZU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugCdH9yTZU H3 {
  text-align: left;
}
.cid-ugCeq22lsm {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-ugCeq22lsm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCeq22lsm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCeq22lsm .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugCeq22lsm .panel-group {
  border: none;
}
.cid-ugCeq22lsm .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugCeq22lsm .panel-body,
.cid-ugCeq22lsm .card-header {
  padding: 1rem 0;
}
.cid-ugCeq22lsm .panel-title-edit {
  color: #000000;
}
.cid-ugCeq22lsm .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugCeq22lsm H3 {
  text-align: left;
}
.cid-usBfVjpa8s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBfVjpa8s .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBfVjpa8s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBfVjpa8s .video-wrapper iframe {
  width: 100%;
}
.cid-usBfVjpa8s .mbr-section-title,
.cid-usBfVjpa8s .mbr-section-subtitle,
.cid-usBfVjpa8s .mbr-text {
  text-align: center;
}
.cid-usBfVZUcGM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBfVZUcGM .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBfVZUcGM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBfVZUcGM .video-wrapper iframe {
  width: 100%;
}
.cid-usBfVZUcGM .mbr-section-title,
.cid-usBfVZUcGM .mbr-section-subtitle,
.cid-usBfVZUcGM .mbr-text {
  text-align: center;
}
.cid-uoaLbVIBQd {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoaLbVIBQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoaLbVIBQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoaLbVIBQd .item {
  padding-bottom: 2rem;
}
.cid-uoaLbVIBQd .item-wrapper {
  position: relative;
}
.cid-uoaLbVIBQd .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-uoaLbVIBQd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uoaLbVIBQd .carousel-control,
.cid-uoaLbVIBQd .close {
  background: #1b1b1b;
}
.cid-uoaLbVIBQd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uoaLbVIBQd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uoaLbVIBQd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uoaLbVIBQd .carousel-control-next span {
  margin-left: 5px;
}
.cid-uoaLbVIBQd .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-uoaLbVIBQd .close::before {
  content: '\e91a';
}
.cid-uoaLbVIBQd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uoaLbVIBQd .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-uoaLbVIBQd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uoaLbVIBQd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uoaLbVIBQd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uoaLbVIBQd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uoaLbVIBQd .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-uoaLbVIBQd .carousel-indicators li.active,
.cid-uoaLbVIBQd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uoaLbVIBQd .carousel-indicators li::after,
.cid-uoaLbVIBQd .carousel-indicators li::before {
  content: none;
}
.cid-uoaLbVIBQd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uoaLbVIBQd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uoaLbVIBQd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uoaLbVIBQd .carousel-indicators {
    display: none;
  }
}
.cid-uoaLbVIBQd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uoaLbVIBQd .carousel-inner > .active {
  display: block;
}
.cid-uoaLbVIBQd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uoaLbVIBQd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uoaLbVIBQd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uoaLbVIBQd .carousel-control,
  .cid-uoaLbVIBQd .carousel-indicators,
  .cid-uoaLbVIBQd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uoaLbVIBQd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uoaLbVIBQd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uoaLbVIBQd .carousel-indicators .active,
.cid-uoaLbVIBQd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uoaLbVIBQd .carousel-indicators .active {
  background: #fff;
}
.cid-uoaLbVIBQd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uoaLbVIBQd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uoaLbVIBQd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uoaLbVIBQd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uoaLbVIBQd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uoaLbVIBQd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uoaLbVIBQd .carousel {
  width: 100%;
}
.cid-uoaLbVIBQd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uoaLbVIBQd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uoaLbVIBQd .modal.fade .modal-dialog,
.cid-uoaLbVIBQd .modal.in .modal-dialog {
  transform: none;
}
.cid-uoaLbVIBQd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uoaLbVIBQd H6 {
  text-align: center;
}
.cid-ugZc9Klxw9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZc9Klxw9 .mbr-overlay {
  z-index: 1;
}
.cid-ugZc9Klxw9 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZc9Klxw9 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZc9Klxw9 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZc9Klxw9 .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZc9Klxw9 .mbr-text {
  color: #555555;
}
.cid-ugZc9Klxw9 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZc9Klxw9 .card-container {
  display: flex;
}
.cid-ugZc9Klxw9 .card-container .card {
  border-radius: 0;
}
.cid-ugZc9Klxw9 .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZc9Klxw9 .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZc9Klxw9 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZc9Klxw9 .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZUU2WoVh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZUU2WoVh .mbr-overlay {
  z-index: 1;
}
.cid-ugZUU2WoVh .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZUU2WoVh .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZUU2WoVh .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZUU2WoVh .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZUU2WoVh .mbr-text {
  color: #555555;
}
.cid-ugZUU2WoVh .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZUU2WoVh .card-container {
  display: flex;
}
.cid-ugZUU2WoVh .card-container .card {
  border-radius: 0;
}
.cid-ugZUU2WoVh .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZUU2WoVh .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZUU2WoVh .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZUU2WoVh .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugIPo3ZOAM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugIPo3ZOAM img,
.cid-ugIPo3ZOAM .item-img {
  width: 100%;
}
.cid-ugIPo3ZOAM .item:focus,
.cid-ugIPo3ZOAM span:focus {
  outline: none;
}
.cid-ugIPo3ZOAM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugIPo3ZOAM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f2f2f2;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugIPo3ZOAM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugIPo3ZOAM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugIPo3ZOAM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugIPo3ZOAM .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugIPo3ZOAM .mbr-text,
.cid-ugIPo3ZOAM .mbr-section-btn {
  text-align: left;
}
.cid-ugIPo3ZOAM .item-title {
  text-align: left;
}
.cid-ugIPo3ZOAM .item-subtitle {
  text-align: left;
}
.cid-ugIPo3ZOAM .mbr-section-subtitle {
  text-align: left;
}
.cid-ujUu9WTgEV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-ujUu9WTgEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUu9WTgEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUu9WTgEV .row {
  justify-content: center;
}
.cid-ujUu9WTgEV .video-block {
  margin-bottom: 20px;
}
.cid-ujUu9WTgEV .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-ujUu9WTgEV .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-ujUu9WTgEV .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-ujUu9WTgEV .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ujUu9WTgEV .mbr-section-title {
  color: #E0BDB6;
}
.cid-ujUu9WTgEV .mbr-date {
  color: #747474;
}
.cid-ujUu9WTgEV .mbr-text {
  color: #747474;
}
.cid-uhz69FlkpG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uhz69FlkpG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhz69FlkpG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhz69FlkpG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhz69FlkpG .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uhz69FlkpG .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uhz69FlkpG .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uhz69FlkpG .container {
    padding: 0 12px;
  }
}
.cid-uhz69FlkpG .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhz69FlkpG .content-wrapper {
    padding: 0 24px;
  }
}
.cid-uhz69FlkpG .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uhz69FlkpG .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uhz69FlkpG .mbr-section-title {
  color: #1D1D1F;
}
.cid-uhz69FlkpG .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-uhz69FlkpG .mbr-section-title,
.cid-uhz69FlkpG .mbr-section-btn {
  text-align: center;
}
.cid-uhtFMJuoTX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtFMJuoTX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtFMJuoTX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtFMJuoTX .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtFMJuoTX .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtFMJuoTX .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtFMJuoTX .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtFMJuoTX .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtFMJuoTX .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtFMJuoTX .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtFMJuoTX .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtFMJuoTX .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtFMJuoTX .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtFMJuoTX .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtFMJuoTX .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtFMJuoTX .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtFMJuoTX .mbr-section-title {
  color: #ffffff;
}
.cid-uhtFMJuoTX .mbr-text,
.cid-uhtFMJuoTX .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtFMJuoTX .mbr-section-title,
.cid-uhtFMJuoTX .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtFMJuoTX .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugC6LJBG0R {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-ugC6LJBG0R .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugC6LJBG0R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugC6LJBG0R .container {
    padding: 0 16px;
  }
}
.cid-ugC6LJBG0R .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugC6LJBG0R .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugC6LJBG0R .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugC6LJBG0R .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugC6LJBG0R .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugC6LJBG0R .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugC6LJBG0R .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugC6LJBG0R .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugC6LJBG0R .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugC6LJBG0R .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugC6LJBG0R .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugC6LJBG0R .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugC6LJBG0R .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugC6LJBG0R .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugC6LJBG0R .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugC6LJBG0R .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugC6LJBG0R .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugC6LJBG0R .mbr-section-title {
  color: #000000;
}
.cid-ugC6LJBG0R .mbr-text,
.cid-ugC6LJBG0R .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugC6LJBG0R .item-title {
  color: #000000;
}
.cid-ugC6LJBG0R .item-text {
  color: #6f6f6f;
}
.cid-ugC6LJBG0R .mbr-section-title,
.cid-ugC6LJBG0R .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-ugMRC7WqN7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ugMRC7WqN7 .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-ugMRC7WqN7 .card-box {
  z-index: 2;
  position: relative;
}
.cid-ugMRC7WqN7 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #000000;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-ugMRC7WqN7 .mbr-iconfont-big {
  font-size: 16rem;
  color: #000000;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-ugMRC7WqN7 .card-title,
.cid-ugMRC7WqN7 .card-text,
.cid-ugMRC7WqN7 .card-number {
  transition: all 0.3s;
}
.cid-ugMRC7WqN7 .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #f2f2f2;
  transition: all 0.3s;
}
.cid-ugMRC7WqN7 .card-wrapper:hover {
  background: #000000;
}
.cid-ugMRC7WqN7 .card-wrapper:hover .mbr-iconfont-big {
  color: #808080;
  transform: rotate(-20deg);
}
.cid-ugMRC7WqN7 .card-wrapper:hover .card-title,
.cid-ugMRC7WqN7 .card-wrapper:hover .card-text,
.cid-ugMRC7WqN7 .card-wrapper:hover .card-number {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ugMRC7WqN7 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ugMRC7WqN7 .card-title,
.cid-ugMRC7WqN7 .iconfont-wrapper {
  color: #160830;
}
.cid-ugMRC7WqN7 .card-text {
  color: #353535;
}
.cid-ugMRC7WqN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugMRC7WqN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhtLu4XmSk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtLu4XmSk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtLu4XmSk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtLu4XmSk .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtLu4XmSk .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtLu4XmSk .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtLu4XmSk .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtLu4XmSk .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtLu4XmSk .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtLu4XmSk .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtLu4XmSk .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtLu4XmSk .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtLu4XmSk .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtLu4XmSk .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtLu4XmSk .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtLu4XmSk .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtLu4XmSk .mbr-section-title {
  color: #ffffff;
}
.cid-uhtLu4XmSk .mbr-text,
.cid-uhtLu4XmSk .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtLu4XmSk .mbr-section-title,
.cid-uhtLu4XmSk .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtLu4XmSk .content-wrapper {
    min-height: 360px;
  }
}
.cid-ui179MFwPl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui179MFwPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui179MFwPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui179MFwPl .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ui179MFwPl .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui179MFwPl .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui179MFwPl .card-wrapper {
    padding: 4rem;
  }
}
.cid-ui179MFwPl .mbr-text,
.cid-ui179MFwPl .mbr-section-btn {
  color: #ffffff;
}
.cid-ui179MFwPl .card-title,
.cid-ui179MFwPl .card-box {
  text-align: center;
}
.cid-ugC7nkjCab {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #f2f2f2;
}
.cid-ugC7nkjCab .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugC7nkjCab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugC7nkjCab .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugC7nkjCab .panel-group {
  border: none;
}
.cid-ugC7nkjCab .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugC7nkjCab .panel-body,
.cid-ugC7nkjCab .card-header {
  padding: 1rem 0;
}
.cid-ugC7nkjCab .panel-title-edit {
  color: #000000;
}
.cid-ugC7nkjCab .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugC7nkjCab H3 {
  text-align: left;
}
.cid-ulf9pEvaTM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ulf9pEvaTM img,
.cid-ulf9pEvaTM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulf9pEvaTM .item:focus,
.cid-ulf9pEvaTM span:focus {
  outline: none;
}
.cid-ulf9pEvaTM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ulf9pEvaTM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulf9pEvaTM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulf9pEvaTM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulf9pEvaTM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulf9pEvaTM .mbr-section-title {
  color: #ffffff;
}
.cid-ulf9pEvaTM .mbr-text,
.cid-ulf9pEvaTM .mbr-section-btn {
  text-align: center;
}
.cid-ulf9pEvaTM .item-title {
  text-align: center;
}
.cid-ulf9pEvaTM .item-subtitle {
  text-align: left;
}
.cid-usBfICGlo4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBfICGlo4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBfICGlo4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBfICGlo4 .video-wrapper iframe {
  width: 100%;
}
.cid-usBfICGlo4 .mbr-section-title,
.cid-usBfICGlo4 .mbr-section-subtitle,
.cid-usBfICGlo4 .mbr-text {
  text-align: center;
}
.cid-uDP5tX7Xl0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP5tX7Xl0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP5tX7Xl0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP5tX7Xl0 .video-wrapper iframe {
  width: 100%;
}
.cid-uDP5tX7Xl0 .mbr-section-title,
.cid-uDP5tX7Xl0 .mbr-section-subtitle,
.cid-uDP5tX7Xl0 .mbr-text {
  text-align: center;
}
.cid-uDP5uH7aEj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP5uH7aEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP5uH7aEj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP5uH7aEj .video-wrapper iframe {
  width: 100%;
}
.cid-uDP5uH7aEj .mbr-section-title,
.cid-uDP5uH7aEj .mbr-section-subtitle,
.cid-uDP5uH7aEj .mbr-text {
  text-align: center;
}
.cid-usBfJIRwq4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBfJIRwq4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBfJIRwq4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBfJIRwq4 .video-wrapper iframe {
  width: 100%;
}
.cid-usBfJIRwq4 .mbr-section-title,
.cid-usBfJIRwq4 .mbr-section-subtitle,
.cid-usBfJIRwq4 .mbr-text {
  text-align: center;
}
.cid-uoaFYjvBFM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoaFYjvBFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoaFYjvBFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoaFYjvBFM .item {
  padding-bottom: 2rem;
}
.cid-uoaFYjvBFM .item-wrapper {
  position: relative;
}
.cid-uoaFYjvBFM .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-uoaFYjvBFM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uoaFYjvBFM .carousel-control,
.cid-uoaFYjvBFM .close {
  background: #1b1b1b;
}
.cid-uoaFYjvBFM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uoaFYjvBFM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uoaFYjvBFM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uoaFYjvBFM .carousel-control-next span {
  margin-left: 5px;
}
.cid-uoaFYjvBFM .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-uoaFYjvBFM .close::before {
  content: '\e91a';
}
.cid-uoaFYjvBFM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uoaFYjvBFM .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-uoaFYjvBFM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uoaFYjvBFM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uoaFYjvBFM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uoaFYjvBFM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uoaFYjvBFM .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-uoaFYjvBFM .carousel-indicators li.active,
.cid-uoaFYjvBFM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uoaFYjvBFM .carousel-indicators li::after,
.cid-uoaFYjvBFM .carousel-indicators li::before {
  content: none;
}
.cid-uoaFYjvBFM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uoaFYjvBFM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uoaFYjvBFM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uoaFYjvBFM .carousel-indicators {
    display: none;
  }
}
.cid-uoaFYjvBFM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uoaFYjvBFM .carousel-inner > .active {
  display: block;
}
.cid-uoaFYjvBFM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uoaFYjvBFM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uoaFYjvBFM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uoaFYjvBFM .carousel-control,
  .cid-uoaFYjvBFM .carousel-indicators,
  .cid-uoaFYjvBFM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uoaFYjvBFM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uoaFYjvBFM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uoaFYjvBFM .carousel-indicators .active,
.cid-uoaFYjvBFM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uoaFYjvBFM .carousel-indicators .active {
  background: #fff;
}
.cid-uoaFYjvBFM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uoaFYjvBFM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uoaFYjvBFM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uoaFYjvBFM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uoaFYjvBFM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uoaFYjvBFM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uoaFYjvBFM .carousel {
  width: 100%;
}
.cid-uoaFYjvBFM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uoaFYjvBFM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uoaFYjvBFM .modal.fade .modal-dialog,
.cid-uoaFYjvBFM .modal.in .modal-dialog {
  transform: none;
}
.cid-uoaFYjvBFM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uoaFYjvBFM H6 {
  text-align: center;
}
.cid-ugZVgwy1u5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZVgwy1u5 .mbr-overlay {
  z-index: 1;
}
.cid-ugZVgwy1u5 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZVgwy1u5 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZVgwy1u5 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZVgwy1u5 .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZVgwy1u5 .mbr-text {
  color: #555555;
}
.cid-ugZVgwy1u5 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZVgwy1u5 .card-container {
  display: flex;
}
.cid-ugZVgwy1u5 .card-container .card {
  border-radius: 0;
}
.cid-ugZVgwy1u5 .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZVgwy1u5 .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZVgwy1u5 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZVgwy1u5 .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZ5ZL2fFI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZ5ZL2fFI .mbr-overlay {
  z-index: 1;
}
.cid-ugZ5ZL2fFI .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZ5ZL2fFI .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZ5ZL2fFI .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZ5ZL2fFI .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZ5ZL2fFI .mbr-text {
  color: #555555;
}
.cid-ugZ5ZL2fFI .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZ5ZL2fFI .card-container {
  display: flex;
}
.cid-ugZ5ZL2fFI .card-container .card {
  border-radius: 0;
}
.cid-ugZ5ZL2fFI .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZ5ZL2fFI .card-container .card .item-img {
    height: 600px;
  }
}
.cid-ugZ5ZL2fFI .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-ugZ5ZL2fFI .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugGQiibRNU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGQiibRNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugGQiibRNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugGQiibRNU .container {
    padding: 0 24px;
  }
}
.cid-ugGQiibRNU .row {
  justify-content: center;
}
.cid-ugGQiibRNU .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugGQiibRNU .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugGQiibRNU .content-wrapper {
    padding: 32px;
  }
}
.cid-ugGQiibRNU .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugGQiibRNU .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugGQiibRNU .mbr-section-title {
  color: #000000;
}
.cid-ugGQiibRNU .mbr-text {
  color: #262642;
}
.cid-umPlJ59Qws {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDP4CzpVAl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP4CzpVAl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP4CzpVAl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP4CzpVAl .video-wrapper iframe {
  width: 100%;
}
.cid-uDP4CzpVAl .mbr-section-title,
.cid-uDP4CzpVAl .mbr-section-subtitle,
.cid-uDP4CzpVAl .mbr-text {
  text-align: center;
}
.cid-ugGP2eTEBo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ugGP2eTEBo .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-ugGP2eTEBo .card-box {
  z-index: 2;
  position: relative;
}
.cid-ugGP2eTEBo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #000000;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-ugGP2eTEBo .mbr-iconfont-big {
  font-size: 16rem;
  color: #000000;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-ugGP2eTEBo .card-title,
.cid-ugGP2eTEBo .card-text,
.cid-ugGP2eTEBo .card-number {
  transition: all 0.3s;
}
.cid-ugGP2eTEBo .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.3s;
}
.cid-ugGP2eTEBo .card-wrapper:hover {
  background: #000000;
}
.cid-ugGP2eTEBo .card-wrapper:hover .mbr-iconfont-big {
  color: #808080;
  transform: rotate(-20deg);
}
.cid-ugGP2eTEBo .card-wrapper:hover .card-title,
.cid-ugGP2eTEBo .card-wrapper:hover .card-text,
.cid-ugGP2eTEBo .card-wrapper:hover .card-number {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ugGP2eTEBo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ugGP2eTEBo .card-title,
.cid-ugGP2eTEBo .iconfont-wrapper {
  color: #160830;
}
.cid-ugGP2eTEBo .card-text {
  color: #353535;
}
.cid-ugGP2eTEBo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugGP2eTEBo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCNHD3mNH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ededed;
}
.cid-ugCNHD3mNH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCNHD3mNH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugCNHD3mNH .container {
    padding: 0 16px;
  }
}
.cid-ugCNHD3mNH .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugCNHD3mNH .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugCNHD3mNH .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugCNHD3mNH .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugCNHD3mNH .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugCNHD3mNH .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugCNHD3mNH .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugCNHD3mNH .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugCNHD3mNH .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugCNHD3mNH .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugCNHD3mNH .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugCNHD3mNH .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugCNHD3mNH .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugCNHD3mNH .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugCNHD3mNH .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugCNHD3mNH .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugCNHD3mNH .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugCNHD3mNH .mbr-section-title {
  color: #000000;
}
.cid-ugCNHD3mNH .mbr-text,
.cid-ugCNHD3mNH .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugCNHD3mNH .item-title {
  color: #000000;
}
.cid-ugCNHD3mNH .item-text {
  color: #6f6f6f;
}
.cid-ugCNHD3mNH .mbr-section-title,
.cid-ugCNHD3mNH .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-uhtHifFqCt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtHifFqCt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtHifFqCt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-4.jpeg");
}
.cid-uhtHifFqCt .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHifFqCt .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtHifFqCt .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHifFqCt .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtHifFqCt .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtHifFqCt .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtHifFqCt .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtHifFqCt .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtHifFqCt .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtHifFqCt .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtHifFqCt .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtHifFqCt .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtHifFqCt .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtHifFqCt .mbr-section-title {
  color: #ffffff;
}
.cid-uhtHifFqCt .mbr-text,
.cid-uhtHifFqCt .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtHifFqCt .mbr-section-title,
.cid-uhtHifFqCt .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtHifFqCt .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugCQB3NVi4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f7f9fc;
}
.cid-ugCQB3NVi4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-umPjh1nxSV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umPjh1nxSV .mbr-overlay {
  z-index: 1;
}
.cid-umPjh1nxSV .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-umPjh1nxSV .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-umPjh1nxSV .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-umPjh1nxSV .item-title {
  width: 100%;
  color: #111111;
}
.cid-umPjh1nxSV .mbr-text {
  color: #555555;
}
.cid-umPjh1nxSV .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-umPjh1nxSV .card-container {
  display: flex;
}
.cid-umPjh1nxSV .card-container .card {
  border-radius: 0;
}
.cid-umPjh1nxSV .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-umPjh1nxSV .card-container .card .item-img {
    height: 400px;
  }
}
.cid-umPjh1nxSV .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-umPjh1nxSV .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugCOHzSbtX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugCOHzSbtX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCOHzSbtX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCOHzSbtX .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugCOHzSbtX .panel-group {
  border: none;
}
.cid-ugCOHzSbtX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugCOHzSbtX .panel-body,
.cid-ugCOHzSbtX .card-header {
  padding: 1rem 0;
}
.cid-ugCOHzSbtX .panel-title-edit {
  color: #000000;
}
.cid-ugCOHzSbtX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugCOHzSbtX H3 {
  text-align: left;
}
.cid-ugCPl8m2Ow {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugCPl8m2Ow .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCPl8m2Ow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCPl8m2Ow .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugCPl8m2Ow .panel-group {
  border: none;
}
.cid-ugCPl8m2Ow .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugCPl8m2Ow .panel-body,
.cid-ugCPl8m2Ow .card-header {
  padding: 1rem 0;
}
.cid-ugCPl8m2Ow .panel-title-edit {
  color: #000000;
}
.cid-ugCPl8m2Ow .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugCPl8m2Ow H3 {
  text-align: left;
}
.cid-umPtdQxnq7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umPtdQxnq7 .mbr-overlay {
  z-index: 1;
}
.cid-umPtdQxnq7 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-umPtdQxnq7 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-umPtdQxnq7 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-umPtdQxnq7 .item-title {
  width: 100%;
  color: #111111;
}
.cid-umPtdQxnq7 .mbr-text {
  color: #555555;
}
.cid-umPtdQxnq7 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-umPtdQxnq7 .card-container {
  display: flex;
}
.cid-umPtdQxnq7 .card-container .card {
  border-radius: 0;
}
.cid-umPtdQxnq7 .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-umPtdQxnq7 .card-container .card .item-img {
    height: 600px;
  }
}
.cid-umPtdQxnq7 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-umPtdQxnq7 .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-umPjJfqSNP {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPjJfqSNP audio {
    width: 100% !important;
  }
}
.cid-umPjJfqSNP audio {
  margin: auto;
  display: block;
}
.cid-umPpA48iNo {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPpA48iNo audio {
    width: 100% !important;
  }
}
.cid-umPpA48iNo audio {
  margin: auto;
  display: block;
}
.cid-umPpBcp9ZO {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPpBcp9ZO audio {
    width: 100% !important;
  }
}
.cid-umPpBcp9ZO audio {
  margin: auto;
  display: block;
}
.cid-umPpBXQUBd {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPpBXQUBd audio {
    width: 100% !important;
  }
}
.cid-umPpBXQUBd audio {
  margin: auto;
  display: block;
}
.cid-umPpCIMG5Q {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPpCIMG5Q audio {
    width: 100% !important;
  }
}
.cid-umPpCIMG5Q audio {
  margin: auto;
  display: block;
}
.cid-umPpDxjEGg {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPpDxjEGg audio {
    width: 100% !important;
  }
}
.cid-umPpDxjEGg audio {
  margin: auto;
  display: block;
}
.cid-umPpEsp8ds {
  background-color: #e6e6e6;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .cid-umPpEsp8ds audio {
    width: 100% !important;
  }
}
.cid-umPpEsp8ds audio {
  margin: auto;
  display: block;
}
.cid-umPqtwEVZr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umPqtwEVZr .mbr-overlay {
  z-index: 1;
}
.cid-umPqtwEVZr .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-umPqtwEVZr .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-umPqtwEVZr .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-umPqtwEVZr .item-title {
  width: 100%;
  color: #111111;
}
.cid-umPqtwEVZr .mbr-text {
  color: #555555;
}
.cid-umPqtwEVZr .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-umPqtwEVZr .card-container {
  display: flex;
}
.cid-umPqtwEVZr .card-container .card {
  border-radius: 0;
}
.cid-umPqtwEVZr .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-umPqtwEVZr .card-container .card .item-img {
    height: 600px;
  }
}
.cid-umPqtwEVZr .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-umPqtwEVZr .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZRWUESFT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZRWUESFT .mbr-overlay {
  z-index: 1;
}
.cid-ugZRWUESFT .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZRWUESFT .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZRWUESFT .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZRWUESFT .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZRWUESFT .mbr-text {
  color: #555555;
}
.cid-ugZRWUESFT .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZRWUESFT .card-container {
  display: flex;
}
.cid-ugZRWUESFT .card-container .card {
  border-radius: 0;
}
.cid-ugZRWUESFT .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZRWUESFT .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZRWUESFT .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZRWUESFT .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugDaj5uRsK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugDaj5uRsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugDaj5uRsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugDaj5uRsK .container {
    padding: 0 24px;
  }
}
.cid-ugDaj5uRsK .row {
  justify-content: center;
}
.cid-ugDaj5uRsK .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugDaj5uRsK .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugDaj5uRsK .content-wrapper {
    padding: 32px;
  }
}
.cid-ugDaj5uRsK .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugDaj5uRsK .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugDaj5uRsK .mbr-section-title {
  color: #000000;
}
.cid-ugDaj5uRsK .mbr-text {
  color: #262642;
}
.cid-ugD87BzDSS {
  padding-top: 0rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-ugD87BzDSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugD87BzDSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .container {
    padding: 0 24px;
  }
}
.cid-ugD87BzDSS .card-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper {
    display: block;
  }
}
.cid-ugD87BzDSS .card-wrapper .number-wrap {
  position: relative;
  width: 72px;
  display: inline-flex;
  justify-content: center;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper .number-wrap {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 28px;
  }
}
.cid-ugD87BzDSS .card-wrapper .number-wrap .mbr-number {
  position: relative;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e43f3f;
  border-radius: 100%;
  z-index: 1;
  margin-bottom: 0;
}
.cid-ugD87BzDSS .card-wrapper .number-wrap::before {
  content: '';
  position: absolute;
  top: -50vh;
  width: 1px;
  height: 200vh;
  background-color: #ffffff;
  opacity: .33;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper .number-wrap::before {
    display: none;
  }
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  width: 40%;
}
@media (max-width: 1200px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 66px;
  gap: 24px;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item {
  background-color: #ffffff;
  border-radius: .8rem !important;
  padding: 32px 36px;
}
@media (max-width: 1199px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item {
    padding: 20px;
  }
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 28px;
  }
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #c7b1ff;
  display: inline-flex;
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .card-title {
    margin-bottom: 28px;
  }
}
.cid-ugD87BzDSS .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-ugD87BzDSS .mbr-section-title {
  color: #ffffff;
}
.cid-ugD87BzDSS .mbr-text {
  color: #ffffff;
}
.cid-ugD87BzDSS .card-number {
  color: #202020;
}
.cid-ugD87BzDSS .card-title {
  color: #202020;
}
.cid-ugD87BzDSS .card-text {
  color: #202020;
}
.cid-ugZS0ZMqc2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZS0ZMqc2 .mbr-overlay {
  z-index: 1;
}
.cid-ugZS0ZMqc2 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZS0ZMqc2 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZS0ZMqc2 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZS0ZMqc2 .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZS0ZMqc2 .mbr-text {
  color: #555555;
}
.cid-ugZS0ZMqc2 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZS0ZMqc2 .card-container {
  display: flex;
}
.cid-ugZS0ZMqc2 .card-container .card {
  border-radius: 0;
}
.cid-ugZS0ZMqc2 .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZS0ZMqc2 .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZS0ZMqc2 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZS0ZMqc2 .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-uhVBgebPTP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}
.cid-uhVBgebPTP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uhyQavgtqJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyQavgtqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyQavgtqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyQavgtqJ .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyQavgtqJ .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyQavgtqJ .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyQavgtqJ .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyQavgtqJ .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyQavgtqJ .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyQavgtqJ .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyQavgtqJ .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyQavgtqJ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyQavgtqJ .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyQavgtqJ .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyQavgtqJ .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyQavgtqJ .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyQavgtqJ .mbr-section-title {
  color: #ffffff;
}
.cid-uhyQavgtqJ .mbr-text,
.cid-uhyQavgtqJ .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyQavgtqJ .mbr-section-title,
.cid-uhyQavgtqJ .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyQavgtqJ .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugNZaeoW40 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-ugNZaeoW40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNZaeoW40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugNZaeoW40 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugNZaeoW40 .panel-group {
  border: none;
}
.cid-ugNZaeoW40 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugNZaeoW40 .panel-body,
.cid-ugNZaeoW40 .card-header {
  padding: 1rem 0;
}
.cid-ugNZaeoW40 .panel-title-edit {
  color: #000000;
}
.cid-ugNZaeoW40 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugNZaeoW40 H3 {
  text-align: left;
}
.cid-uhyQeewrVx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyQeewrVx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyQeewrVx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyQeewrVx .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyQeewrVx .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyQeewrVx .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyQeewrVx .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyQeewrVx .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyQeewrVx .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyQeewrVx .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyQeewrVx .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyQeewrVx .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyQeewrVx .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyQeewrVx .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyQeewrVx .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyQeewrVx .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyQeewrVx .mbr-section-title {
  color: #ffffff;
}
.cid-uhyQeewrVx .mbr-text,
.cid-uhyQeewrVx .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyQeewrVx .mbr-section-title,
.cid-uhyQeewrVx .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyQeewrVx .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugZS5mAn6D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZS5mAn6D .mbr-overlay {
  z-index: 1;
}
.cid-ugZS5mAn6D .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZS5mAn6D .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZS5mAn6D .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZS5mAn6D .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZS5mAn6D .mbr-text {
  color: #555555;
}
.cid-ugZS5mAn6D .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZS5mAn6D .card-container {
  display: flex;
}
.cid-ugZS5mAn6D .card-container .card {
  border-radius: 0;
}
.cid-ugZS5mAn6D .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZS5mAn6D .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZS5mAn6D .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZS5mAn6D .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugNDh5pUnd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNDh5pUnd .mbr-overlay {
  z-index: 1;
}
.cid-ugNDh5pUnd .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugNDh5pUnd .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugNDh5pUnd .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugNDh5pUnd .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugNDh5pUnd .mbr-text {
  color: #555555;
}
.cid-ugNDh5pUnd .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugNDh5pUnd .card-container {
  display: flex;
}
.cid-ugNDh5pUnd .card-container .card {
  border-radius: 0;
}
.cid-ugNDh5pUnd .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugNDh5pUnd .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugNDh5pUnd .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugNDh5pUnd .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugNERqTrsE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNERqTrsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNERqTrsE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugNERqTrsE .container {
    padding: 0 24px;
  }
}
.cid-ugNERqTrsE .row {
  justify-content: center;
}
.cid-ugNERqTrsE .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugNERqTrsE .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugNERqTrsE .content-wrapper {
    padding: 32px;
  }
}
.cid-ugNERqTrsE .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugNERqTrsE .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugNERqTrsE .mbr-section-title {
  color: #000000;
}
.cid-ugNERqTrsE .mbr-text {
  color: #262642;
}
.cid-ujUKb4TZfE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-ujUKb4TZfE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUKb4TZfE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUKb4TZfE .row {
  justify-content: center;
}
.cid-ujUKb4TZfE .video-block {
  margin-bottom: 20px;
}
.cid-ujUKb4TZfE .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-ujUKb4TZfE .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-ujUKb4TZfE .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-ujUKb4TZfE .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ujUKb4TZfE .mbr-section-title {
  color: #E0BDB6;
}
.cid-ujUKb4TZfE .mbr-date {
  color: #747474;
}
.cid-ujUKb4TZfE .mbr-text {
  color: #747474;
}
.cid-ugNDsDuJ8B {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ugNDsDuJ8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNDsDuJ8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugNDsDuJ8B .container {
    padding: 0 16px;
  }
}
.cid-ugNDsDuJ8B .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugNDsDuJ8B .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugNDsDuJ8B .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugNDsDuJ8B .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugNDsDuJ8B .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugNDsDuJ8B .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugNDsDuJ8B .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugNDsDuJ8B .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugNDsDuJ8B .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugNDsDuJ8B .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugNDsDuJ8B .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugNDsDuJ8B .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugNDsDuJ8B .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugNDsDuJ8B .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugNDsDuJ8B .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugNDsDuJ8B .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugNDsDuJ8B .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugNDsDuJ8B .mbr-section-title {
  color: #000000;
}
.cid-ugNDsDuJ8B .mbr-text,
.cid-ugNDsDuJ8B .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugNDsDuJ8B .item-title {
  color: #000000;
}
.cid-ugNDsDuJ8B .item-text {
  color: #6f6f6f;
}
.cid-ugNDsDuJ8B .mbr-section-title,
.cid-ugNDsDuJ8B .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-ugZd2bjjpm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZd2bjjpm .mbr-overlay {
  z-index: 1;
}
.cid-ugZd2bjjpm .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZd2bjjpm .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZd2bjjpm .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZd2bjjpm .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZd2bjjpm .mbr-text {
  color: #555555;
}
.cid-ugZd2bjjpm .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZd2bjjpm .card-container {
  display: flex;
}
.cid-ugZd2bjjpm .card-container .card {
  border-radius: 0;
}
.cid-ugZd2bjjpm .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZd2bjjpm .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZd2bjjpm .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZd2bjjpm .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-utx07ubOu2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-utx07ubOu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utx07ubOu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utx07ubOu2 .item {
  padding-bottom: 2rem;
}
.cid-utx07ubOu2 .item-wrapper {
  position: relative;
}
.cid-utx07ubOu2 .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-utx07ubOu2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-utx07ubOu2 .carousel-control,
.cid-utx07ubOu2 .close {
  background: #1b1b1b;
}
.cid-utx07ubOu2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-utx07ubOu2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-utx07ubOu2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-utx07ubOu2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-utx07ubOu2 .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-utx07ubOu2 .close::before {
  content: '\e91a';
}
.cid-utx07ubOu2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-utx07ubOu2 .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-utx07ubOu2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utx07ubOu2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-utx07ubOu2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-utx07ubOu2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-utx07ubOu2 .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-utx07ubOu2 .carousel-indicators li.active,
.cid-utx07ubOu2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-utx07ubOu2 .carousel-indicators li::after,
.cid-utx07ubOu2 .carousel-indicators li::before {
  content: none;
}
.cid-utx07ubOu2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-utx07ubOu2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-utx07ubOu2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utx07ubOu2 .carousel-indicators {
    display: none;
  }
}
.cid-utx07ubOu2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-utx07ubOu2 .carousel-inner > .active {
  display: block;
}
.cid-utx07ubOu2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utx07ubOu2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-utx07ubOu2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-utx07ubOu2 .carousel-control,
  .cid-utx07ubOu2 .carousel-indicators,
  .cid-utx07ubOu2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-utx07ubOu2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-utx07ubOu2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-utx07ubOu2 .carousel-indicators .active,
.cid-utx07ubOu2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-utx07ubOu2 .carousel-indicators .active {
  background: #fff;
}
.cid-utx07ubOu2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-utx07ubOu2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-utx07ubOu2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-utx07ubOu2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-utx07ubOu2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-utx07ubOu2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-utx07ubOu2 .carousel {
  width: 100%;
}
.cid-utx07ubOu2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-utx07ubOu2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-utx07ubOu2 .modal.fade .modal-dialog,
.cid-utx07ubOu2 .modal.in .modal-dialog {
  transform: none;
}
.cid-utx07ubOu2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-utx07ubOu2 H6 {
  text-align: center;
}
.cid-ugNGLUnp9w {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ugNGLUnp9w .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ugNFcfb3Tb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fbfbfb;
}
.cid-ugNFcfb3Tb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNFcfb3Tb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugNFcfb3Tb .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugNFcfb3Tb .panel-group {
  border: none;
}
.cid-ugNFcfb3Tb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugNFcfb3Tb .panel-body,
.cid-ugNFcfb3Tb .card-header {
  padding: 1rem 0;
}
.cid-ugNFcfb3Tb .panel-title-edit {
  color: #000000;
}
.cid-ugNFcfb3Tb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugNFcfb3Tb H3 {
  text-align: left;
}
.cid-uljyQYqpTo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uljyQYqpTo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uljyQYqpTo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uljyQYqpTo .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uljyQYqpTo .container-fluid {
    padding: 0 20px;
  }
}
.cid-uljyQYqpTo .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uljyQYqpTo .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uljyQYqpTo .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uljyQYqpTo .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uljyQYqpTo .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uljyQYqpTo .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uljyQYqpTo .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uljyQYqpTo .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uljyQYqpTo .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uljyQYqpTo .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uljyQYqpTo .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uljyQYqpTo .mbr-section-title {
  color: #ffffff;
}
.cid-uljyQYqpTo .mbr-text,
.cid-uljyQYqpTo .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uljyQYqpTo .mbr-section-title,
.cid-uljyQYqpTo .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uljyQYqpTo .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugNmEDNap3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNmEDNap3 .mbr-overlay {
  z-index: 1;
}
.cid-ugNmEDNap3 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugNmEDNap3 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugNmEDNap3 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugNmEDNap3 .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugNmEDNap3 .mbr-text {
  color: #555555;
}
.cid-ugNmEDNap3 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugNmEDNap3 .card-container {
  display: flex;
}
.cid-ugNmEDNap3 .card-container .card {
  border-radius: 0;
}
.cid-ugNmEDNap3 .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugNmEDNap3 .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugNmEDNap3 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugNmEDNap3 .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugNu7X36J8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ugNu7X36J8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNu7X36J8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugNu7X36J8 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugNu7X36J8 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ugNu7X36J8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ugNu7X36J8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ugNu7X36J8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugNu7X36J8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ugNu7X36J8 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ugNu7X36J8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ugNdBvUXOz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugNdBvUXOz img,
.cid-ugNdBvUXOz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ugNdBvUXOz .item:focus,
.cid-ugNdBvUXOz span:focus {
  outline: none;
}
.cid-ugNdBvUXOz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugNdBvUXOz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f2f2f2;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugNdBvUXOz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugNdBvUXOz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugNdBvUXOz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugNdBvUXOz .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-ugNdBvUXOz .mbr-text,
.cid-ugNdBvUXOz .mbr-section-btn {
  text-align: left;
}
.cid-ugNdBvUXOz .item-title {
  text-align: left;
}
.cid-ugNdBvUXOz .item-subtitle {
  text-align: left;
}
.cid-ugZ8F8DUr4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZ8F8DUr4 .mbr-overlay {
  z-index: 1;
}
.cid-ugZ8F8DUr4 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZ8F8DUr4 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZ8F8DUr4 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZ8F8DUr4 .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZ8F8DUr4 .mbr-text {
  color: #555555;
}
.cid-ugZ8F8DUr4 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZ8F8DUr4 .card-container {
  display: flex;
}
.cid-ugZ8F8DUr4 .card-container .card {
  border-radius: 0;
}
.cid-ugZ8F8DUr4 .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZ8F8DUr4 .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZ8F8DUr4 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZ8F8DUr4 .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ui0XbMQUZS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui0XbMQUZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0XbMQUZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui0XbMQUZS .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ui0XbMQUZS .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui0XbMQUZS .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui0XbMQUZS .card-wrapper {
    padding: 4rem;
  }
}
.cid-ui0XbMQUZS .mbr-text,
.cid-ui0XbMQUZS .mbr-section-btn {
  color: #ffffff;
}
.cid-ui0XbMQUZS .card-title,
.cid-ui0XbMQUZS .card-box {
  text-align: center;
}
.cid-ugNm6HTkXF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNm6HTkXF .mbr-overlay {
  z-index: 1;
}
.cid-ugNm6HTkXF .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugNm6HTkXF .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugNm6HTkXF .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugNm6HTkXF .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugNm6HTkXF .mbr-text {
  color: #555555;
}
.cid-ugNm6HTkXF .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugNm6HTkXF .card-container {
  display: flex;
}
.cid-ugNm6HTkXF .card-container .card {
  border-radius: 0;
}
.cid-ugNm6HTkXF .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugNm6HTkXF .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugNm6HTkXF .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugNm6HTkXF .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugNkX4IhxG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugNkX4IhxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNkX4IhxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugNkX4IhxG .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugNkX4IhxG .panel-group {
  border: none;
}
.cid-ugNkX4IhxG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugNkX4IhxG .panel-body,
.cid-ugNkX4IhxG .card-header {
  padding: 1rem 0;
}
.cid-ugNkX4IhxG .panel-title-edit {
  color: #000000;
}
.cid-ugNkX4IhxG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugNkX4IhxG H3 {
  text-align: left;
}
.cid-ugNlP6JYGq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugNlP6JYGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNlP6JYGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugNlP6JYGq .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugNlP6JYGq .panel-group {
  border: none;
}
.cid-ugNlP6JYGq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugNlP6JYGq .panel-body,
.cid-ugNlP6JYGq .card-header {
  padding: 1rem 0;
}
.cid-ugNlP6JYGq .panel-title-edit {
  color: #000000;
}
.cid-ugNlP6JYGq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugNlP6JYGq H3 {
  text-align: left;
}
.cid-ugNkUm6Pue {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNkUm6Pue .mbr-overlay {
  z-index: 1;
}
.cid-ugNkUm6Pue .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugNkUm6Pue .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugNkUm6Pue .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugNkUm6Pue .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugNkUm6Pue .mbr-text {
  color: #555555;
}
.cid-ugNkUm6Pue .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugNkUm6Pue .card-container {
  display: flex;
}
.cid-ugNkUm6Pue .card-container .card {
  border-radius: 0;
}
.cid-ugNkUm6Pue .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugNkUm6Pue .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugNkUm6Pue .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugNkUm6Pue .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um5Xkr6KXk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um5Xkr6KXk .mbr-overlay {
  z-index: 1;
}
.cid-um5Xkr6KXk .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-um5Xkr6KXk .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-um5Xkr6KXk .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-um5Xkr6KXk .item-title {
  width: 100%;
  color: #111111;
}
.cid-um5Xkr6KXk .mbr-text {
  color: #555555;
}
.cid-um5Xkr6KXk .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-um5Xkr6KXk .card-container {
  display: flex;
}
.cid-um5Xkr6KXk .card-container .card {
  border-radius: 0;
}
.cid-um5Xkr6KXk .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-um5Xkr6KXk .card-container .card .item-img {
    height: 600px;
  }
}
.cid-um5Xkr6KXk .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-um5Xkr6KXk .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-uh07Vn9pI1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uh07Vn9pI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh07Vn9pI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uh07Vn9pI1 .item {
  padding-bottom: 2rem;
}
.cid-uh07Vn9pI1 .item-wrapper {
  position: relative;
}
.cid-uh07Vn9pI1 .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-uh07Vn9pI1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uh07Vn9pI1 .carousel-control,
.cid-uh07Vn9pI1 .close {
  background: #1b1b1b;
}
.cid-uh07Vn9pI1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uh07Vn9pI1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uh07Vn9pI1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uh07Vn9pI1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uh07Vn9pI1 .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-uh07Vn9pI1 .close::before {
  content: '\e91a';
}
.cid-uh07Vn9pI1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uh07Vn9pI1 .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-uh07Vn9pI1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uh07Vn9pI1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uh07Vn9pI1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uh07Vn9pI1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uh07Vn9pI1 .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-uh07Vn9pI1 .carousel-indicators li.active,
.cid-uh07Vn9pI1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uh07Vn9pI1 .carousel-indicators li::after,
.cid-uh07Vn9pI1 .carousel-indicators li::before {
  content: none;
}
.cid-uh07Vn9pI1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uh07Vn9pI1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uh07Vn9pI1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uh07Vn9pI1 .carousel-indicators {
    display: none;
  }
}
.cid-uh07Vn9pI1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uh07Vn9pI1 .carousel-inner > .active {
  display: block;
}
.cid-uh07Vn9pI1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uh07Vn9pI1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uh07Vn9pI1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uh07Vn9pI1 .carousel-control,
  .cid-uh07Vn9pI1 .carousel-indicators,
  .cid-uh07Vn9pI1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uh07Vn9pI1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uh07Vn9pI1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uh07Vn9pI1 .carousel-indicators .active,
.cid-uh07Vn9pI1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uh07Vn9pI1 .carousel-indicators .active {
  background: #fff;
}
.cid-uh07Vn9pI1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uh07Vn9pI1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uh07Vn9pI1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uh07Vn9pI1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uh07Vn9pI1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uh07Vn9pI1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uh07Vn9pI1 .carousel {
  width: 100%;
}
.cid-uh07Vn9pI1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uh07Vn9pI1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uh07Vn9pI1 .modal.fade .modal-dialog,
.cid-uh07Vn9pI1 .modal.in .modal-dialog {
  transform: none;
}
.cid-uh07Vn9pI1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uh07Vn9pI1 H6 {
  text-align: center;
}
.cid-um5Vcw6AlM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-um5Vcw6AlM .mbr-fallback-image.disabled {
  display: none;
}
.cid-um5Vcw6AlM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um5Vcw6AlM .item {
  padding-bottom: 2rem;
}
.cid-um5Vcw6AlM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-um5Vcw6AlM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-um5Vcw6AlM .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-um5Vcw6AlM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-um5Vcw6AlM .carousel-control,
.cid-um5Vcw6AlM .close {
  background: #1b1b1b;
}
.cid-um5Vcw6AlM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-um5Vcw6AlM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-um5Vcw6AlM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-um5Vcw6AlM .carousel-control-next span {
  margin-left: 5px;
}
.cid-um5Vcw6AlM .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-um5Vcw6AlM .close::before {
  content: '\e91a';
}
.cid-um5Vcw6AlM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-um5Vcw6AlM .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-um5Vcw6AlM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-um5Vcw6AlM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-um5Vcw6AlM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-um5Vcw6AlM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-um5Vcw6AlM .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-um5Vcw6AlM .carousel-indicators li.active,
.cid-um5Vcw6AlM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-um5Vcw6AlM .carousel-indicators li::after,
.cid-um5Vcw6AlM .carousel-indicators li::before {
  content: none;
}
.cid-um5Vcw6AlM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-um5Vcw6AlM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-um5Vcw6AlM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-um5Vcw6AlM .carousel-indicators {
    display: none;
  }
}
.cid-um5Vcw6AlM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-um5Vcw6AlM .carousel-inner > .active {
  display: block;
}
.cid-um5Vcw6AlM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-um5Vcw6AlM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-um5Vcw6AlM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-um5Vcw6AlM .carousel-control,
  .cid-um5Vcw6AlM .carousel-indicators,
  .cid-um5Vcw6AlM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-um5Vcw6AlM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-um5Vcw6AlM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-um5Vcw6AlM .carousel-indicators .active,
.cid-um5Vcw6AlM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-um5Vcw6AlM .carousel-indicators .active {
  background: #fff;
}
.cid-um5Vcw6AlM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-um5Vcw6AlM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-um5Vcw6AlM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-um5Vcw6AlM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-um5Vcw6AlM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-um5Vcw6AlM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-um5Vcw6AlM .carousel {
  width: 100%;
}
.cid-um5Vcw6AlM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-um5Vcw6AlM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-um5Vcw6AlM .modal.fade .modal-dialog,
.cid-um5Vcw6AlM .modal.in .modal-dialog {
  transform: none;
}
.cid-um5Vcw6AlM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-um5Vcw6AlM H6 {
  text-align: center;
}
.cid-uhybCT4qAR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhybCT4qAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhybCT4qAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhybCT4qAR .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhybCT4qAR .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhybCT4qAR .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhybCT4qAR .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhybCT4qAR .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhybCT4qAR .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhybCT4qAR .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhybCT4qAR .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhybCT4qAR .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhybCT4qAR .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhybCT4qAR .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhybCT4qAR .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhybCT4qAR .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhybCT4qAR .mbr-section-title {
  color: #ffffff;
}
.cid-uhybCT4qAR .mbr-text,
.cid-uhybCT4qAR .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhybCT4qAR .mbr-section-title,
.cid-uhybCT4qAR .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhybCT4qAR .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhxrfN7a1w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhxrfN7a1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxrfN7a1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhxrfN7a1w .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhxrfN7a1w .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhxrfN7a1w .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhxrfN7a1w .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhxrfN7a1w .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhxrfN7a1w .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhxrfN7a1w .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhxrfN7a1w .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhxrfN7a1w .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhxrfN7a1w .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhxrfN7a1w .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhxrfN7a1w .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhxrfN7a1w .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhxrfN7a1w .mbr-section-title {
  color: #ffffff;
}
.cid-uhxrfN7a1w .mbr-text,
.cid-uhxrfN7a1w .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhxrfN7a1w .mbr-section-title,
.cid-uhxrfN7a1w .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhxrfN7a1w .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugOmwxeUcg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugOmwxeUcg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOmwxeUcg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOmwxeUcg .container {
    padding: 0 24px;
  }
}
.cid-ugOmwxeUcg .row {
  justify-content: center;
}
.cid-ugOmwxeUcg .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugOmwxeUcg .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugOmwxeUcg .content-wrapper {
    padding: 32px;
  }
}
.cid-ugOmwxeUcg .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugOmwxeUcg .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugOmwxeUcg .mbr-section-title {
  color: #000000;
}
.cid-ugOmwxeUcg .mbr-text {
  color: #262642;
}
.cid-uBKfSx3zvG {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBKfSx3zvG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBKfSx3zvG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBKfSx3zvG .item {
  padding-bottom: 2rem;
}
.cid-uBKfSx3zvG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uBKfSx3zvG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBKfSx3zvG .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-uBKfSx3zvG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBKfSx3zvG .carousel-control,
.cid-uBKfSx3zvG .close {
  background: #1b1b1b;
}
.cid-uBKfSx3zvG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBKfSx3zvG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBKfSx3zvG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBKfSx3zvG .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBKfSx3zvG .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-uBKfSx3zvG .close::before {
  content: '\e91a';
}
.cid-uBKfSx3zvG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBKfSx3zvG .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-uBKfSx3zvG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBKfSx3zvG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBKfSx3zvG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBKfSx3zvG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBKfSx3zvG .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-uBKfSx3zvG .carousel-indicators li.active,
.cid-uBKfSx3zvG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBKfSx3zvG .carousel-indicators li::after,
.cid-uBKfSx3zvG .carousel-indicators li::before {
  content: none;
}
.cid-uBKfSx3zvG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBKfSx3zvG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBKfSx3zvG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBKfSx3zvG .carousel-indicators {
    display: none;
  }
}
.cid-uBKfSx3zvG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBKfSx3zvG .carousel-inner > .active {
  display: block;
}
.cid-uBKfSx3zvG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBKfSx3zvG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBKfSx3zvG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBKfSx3zvG .carousel-control,
  .cid-uBKfSx3zvG .carousel-indicators,
  .cid-uBKfSx3zvG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBKfSx3zvG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBKfSx3zvG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBKfSx3zvG .carousel-indicators .active,
.cid-uBKfSx3zvG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBKfSx3zvG .carousel-indicators .active {
  background: #fff;
}
.cid-uBKfSx3zvG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBKfSx3zvG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBKfSx3zvG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBKfSx3zvG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBKfSx3zvG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBKfSx3zvG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBKfSx3zvG .carousel {
  width: 100%;
}
.cid-uBKfSx3zvG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBKfSx3zvG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBKfSx3zvG .modal.fade .modal-dialog,
.cid-uBKfSx3zvG .modal.in .modal-dialog {
  transform: none;
}
.cid-uBKfSx3zvG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBKfSx3zvG H6 {
  text-align: center;
}
.cid-ugOln0gbAT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugOln0gbAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOln0gbAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOln0gbAT .item {
  padding-bottom: 2rem;
}
.cid-ugOln0gbAT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ugOln0gbAT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ugOln0gbAT .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-ugOln0gbAT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ugOln0gbAT .carousel-control,
.cid-ugOln0gbAT .close {
  background: #1b1b1b;
}
.cid-ugOln0gbAT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ugOln0gbAT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ugOln0gbAT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ugOln0gbAT .carousel-control-next span {
  margin-left: 5px;
}
.cid-ugOln0gbAT .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-ugOln0gbAT .close::before {
  content: '\e91a';
}
.cid-ugOln0gbAT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ugOln0gbAT .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-ugOln0gbAT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOln0gbAT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugOln0gbAT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ugOln0gbAT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ugOln0gbAT .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-ugOln0gbAT .carousel-indicators li.active,
.cid-ugOln0gbAT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ugOln0gbAT .carousel-indicators li::after,
.cid-ugOln0gbAT .carousel-indicators li::before {
  content: none;
}
.cid-ugOln0gbAT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ugOln0gbAT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ugOln0gbAT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ugOln0gbAT .carousel-indicators {
    display: none;
  }
}
.cid-ugOln0gbAT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ugOln0gbAT .carousel-inner > .active {
  display: block;
}
.cid-ugOln0gbAT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOln0gbAT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ugOln0gbAT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ugOln0gbAT .carousel-control,
  .cid-ugOln0gbAT .carousel-indicators,
  .cid-ugOln0gbAT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ugOln0gbAT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ugOln0gbAT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ugOln0gbAT .carousel-indicators .active,
.cid-ugOln0gbAT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ugOln0gbAT .carousel-indicators .active {
  background: #fff;
}
.cid-ugOln0gbAT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ugOln0gbAT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ugOln0gbAT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ugOln0gbAT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ugOln0gbAT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ugOln0gbAT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ugOln0gbAT .carousel {
  width: 100%;
}
.cid-ugOln0gbAT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ugOln0gbAT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ugOln0gbAT .modal.fade .modal-dialog,
.cid-ugOln0gbAT .modal.in .modal-dialog {
  transform: none;
}
.cid-ugOln0gbAT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ugOln0gbAT H6 {
  text-align: center;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhyca0BEoM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyca0BEoM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyca0BEoM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyca0BEoM .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyca0BEoM .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyca0BEoM .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyca0BEoM .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyca0BEoM .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyca0BEoM .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyca0BEoM .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyca0BEoM .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyca0BEoM .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyca0BEoM .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyca0BEoM .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyca0BEoM .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyca0BEoM .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyca0BEoM .mbr-section-title {
  color: #ffffff;
}
.cid-uhyca0BEoM .mbr-text,
.cid-uhyca0BEoM .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyca0BEoM .mbr-section-title,
.cid-uhyca0BEoM .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyca0BEoM .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugOoW7m1AX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugOoW7m1AX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOoW7m1AX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOoW7m1AX .item {
  padding-bottom: 2rem;
}
.cid-ugOoW7m1AX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ugOoW7m1AX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ugOoW7m1AX .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-ugOoW7m1AX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ugOoW7m1AX .carousel-control,
.cid-ugOoW7m1AX .close {
  background: #1b1b1b;
}
.cid-ugOoW7m1AX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ugOoW7m1AX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ugOoW7m1AX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ugOoW7m1AX .carousel-control-next span {
  margin-left: 5px;
}
.cid-ugOoW7m1AX .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-ugOoW7m1AX .close::before {
  content: '\e91a';
}
.cid-ugOoW7m1AX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ugOoW7m1AX .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-ugOoW7m1AX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOoW7m1AX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugOoW7m1AX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ugOoW7m1AX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ugOoW7m1AX .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-ugOoW7m1AX .carousel-indicators li.active,
.cid-ugOoW7m1AX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ugOoW7m1AX .carousel-indicators li::after,
.cid-ugOoW7m1AX .carousel-indicators li::before {
  content: none;
}
.cid-ugOoW7m1AX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ugOoW7m1AX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ugOoW7m1AX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ugOoW7m1AX .carousel-indicators {
    display: none;
  }
}
.cid-ugOoW7m1AX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ugOoW7m1AX .carousel-inner > .active {
  display: block;
}
.cid-ugOoW7m1AX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOoW7m1AX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ugOoW7m1AX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ugOoW7m1AX .carousel-control,
  .cid-ugOoW7m1AX .carousel-indicators,
  .cid-ugOoW7m1AX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ugOoW7m1AX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ugOoW7m1AX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ugOoW7m1AX .carousel-indicators .active,
.cid-ugOoW7m1AX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ugOoW7m1AX .carousel-indicators .active {
  background: #fff;
}
.cid-ugOoW7m1AX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ugOoW7m1AX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ugOoW7m1AX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ugOoW7m1AX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ugOoW7m1AX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ugOoW7m1AX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ugOoW7m1AX .carousel {
  width: 100%;
}
.cid-ugOoW7m1AX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ugOoW7m1AX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ugOoW7m1AX .modal.fade .modal-dialog,
.cid-ugOoW7m1AX .modal.in .modal-dialog {
  transform: none;
}
.cid-ugOoW7m1AX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ugOoW7m1AX H6 {
  text-align: center;
}
.cid-uhypZVoQYz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhypZVoQYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhypZVoQYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhypZVoQYz .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhypZVoQYz .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhypZVoQYz .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhypZVoQYz .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhypZVoQYz .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhypZVoQYz .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhypZVoQYz .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhypZVoQYz .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhypZVoQYz .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhypZVoQYz .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhypZVoQYz .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhypZVoQYz .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhypZVoQYz .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhypZVoQYz .mbr-section-title {
  color: #ffffff;
}
.cid-uhypZVoQYz .mbr-text,
.cid-uhypZVoQYz .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhypZVoQYz .mbr-section-title,
.cid-uhypZVoQYz .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhypZVoQYz .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugYSgNLb4f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugYSgNLb4f .mbr-overlay {
  z-index: 1;
}
.cid-ugYSgNLb4f .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugYSgNLb4f .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugYSgNLb4f .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugYSgNLb4f .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugYSgNLb4f .mbr-text {
  color: #555555;
}
.cid-ugYSgNLb4f .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugYSgNLb4f .card-container {
  display: flex;
}
.cid-ugYSgNLb4f .card-container .card {
  border-radius: 0;
}
.cid-ugYSgNLb4f .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugYSgNLb4f .card-container .card .item-img {
    height: 600px;
  }
}
.cid-ugYSgNLb4f .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-ugYSgNLb4f .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugOq7Ik4bA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugOq7Ik4bA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOq7Ik4bA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOq7Ik4bA .container {
    padding: 0 24px;
  }
}
.cid-ugOq7Ik4bA .row {
  justify-content: center;
}
.cid-ugOq7Ik4bA .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugOq7Ik4bA .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugOq7Ik4bA .content-wrapper {
    padding: 32px;
  }
}
.cid-ugOq7Ik4bA .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugOq7Ik4bA .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugOq7Ik4bA .mbr-section-title {
  color: #000000;
}
.cid-ugOq7Ik4bA .mbr-text {
  color: #262642;
}
.cid-ugOqpCfaTA {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-ugOqpCfaTA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOqpCfaTA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugOqpCfaTA .container {
    padding: 0 16px;
  }
}
.cid-ugOqpCfaTA .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugOqpCfaTA .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugOqpCfaTA .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugOqpCfaTA .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugOqpCfaTA .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugOqpCfaTA .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugOqpCfaTA .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugOqpCfaTA .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugOqpCfaTA .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugOqpCfaTA .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugOqpCfaTA .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugOqpCfaTA .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugOqpCfaTA .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugOqpCfaTA .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugOqpCfaTA .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugOqpCfaTA .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugOqpCfaTA .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugOqpCfaTA .mbr-section-title {
  color: #000000;
}
.cid-ugOqpCfaTA .mbr-text,
.cid-ugOqpCfaTA .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugOqpCfaTA .item-title {
  color: #000000;
}
.cid-ugOqpCfaTA .item-text {
  color: #6f6f6f;
}
.cid-ugOqpCfaTA .mbr-section-title,
.cid-ugOqpCfaTA .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-ugZWWgOPwn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZWWgOPwn .mbr-overlay {
  z-index: 1;
}
.cid-ugZWWgOPwn .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZWWgOPwn .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZWWgOPwn .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZWWgOPwn .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZWWgOPwn .mbr-text {
  color: #555555;
}
.cid-ugZWWgOPwn .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZWWgOPwn .card-container {
  display: flex;
}
.cid-ugZWWgOPwn .card-container .card {
  border-radius: 0;
}
.cid-ugZWWgOPwn .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZWWgOPwn .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZWWgOPwn .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZWWgOPwn .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ui0UixBihj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui0UixBihj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0UixBihj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui0UixBihj .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ui0UixBihj .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui0UixBihj .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui0UixBihj .card-wrapper {
    padding: 4rem;
  }
}
.cid-ui0UixBihj .mbr-text,
.cid-ui0UixBihj .mbr-section-btn {
  color: #ffffff;
}
.cid-ui0UixBihj .card-title,
.cid-ui0UixBihj .card-box {
  text-align: center;
}
.cid-uhyqyMWKM7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyqyMWKM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyqyMWKM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyqyMWKM7 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyqyMWKM7 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyqyMWKM7 .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyqyMWKM7 .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyqyMWKM7 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyqyMWKM7 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyqyMWKM7 .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyqyMWKM7 .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyqyMWKM7 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyqyMWKM7 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyqyMWKM7 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyqyMWKM7 .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyqyMWKM7 .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyqyMWKM7 .mbr-section-title {
  color: #ffffff;
}
.cid-uhyqyMWKM7 .mbr-text,
.cid-uhyqyMWKM7 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyqyMWKM7 .mbr-section-title,
.cid-uhyqyMWKM7 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyqyMWKM7 .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugYSrFMpYr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugYSrFMpYr .mbr-overlay {
  z-index: 1;
}
.cid-ugYSrFMpYr .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugYSrFMpYr .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugYSrFMpYr .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugYSrFMpYr .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugYSrFMpYr .mbr-text {
  color: #555555;
}
.cid-ugYSrFMpYr .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugYSrFMpYr .card-container {
  display: flex;
}
.cid-ugYSrFMpYr .card-container .card {
  border-radius: 0;
}
.cid-ugYSrFMpYr .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugYSrFMpYr .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugYSrFMpYr .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugYSrFMpYr .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZW4gBULl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZW4gBULl .mbr-overlay {
  z-index: 1;
}
.cid-ugZW4gBULl .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZW4gBULl .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZW4gBULl .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZW4gBULl .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZW4gBULl .mbr-text {
  color: #555555;
}
.cid-ugZW4gBULl .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZW4gBULl .card-container {
  display: flex;
}
.cid-ugZW4gBULl .card-container .card {
  border-radius: 0;
}
.cid-ugZW4gBULl .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZW4gBULl .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZW4gBULl .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZW4gBULl .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugOs6e5jY6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugOs6e5jY6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOs6e5jY6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOs6e5jY6 .container {
    padding: 0 24px;
  }
}
.cid-ugOs6e5jY6 .row {
  justify-content: center;
}
.cid-ugOs6e5jY6 .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugOs6e5jY6 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugOs6e5jY6 .content-wrapper {
    padding: 32px;
  }
}
.cid-ugOs6e5jY6 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugOs6e5jY6 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugOs6e5jY6 .mbr-section-title {
  color: #000000;
}
.cid-ugOs6e5jY6 .mbr-text {
  color: #262642;
}
.cid-ugOtZu34Wf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugOtZu34Wf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOtZu34Wf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOtZu34Wf .container {
    padding: 0 24px;
  }
}
.cid-ugOtZu34Wf .row {
  justify-content: center;
}
.cid-ugOtZu34Wf .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugOtZu34Wf .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugOtZu34Wf .content-wrapper {
    padding: 32px;
  }
}
.cid-ugOtZu34Wf .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugOtZu34Wf .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugOtZu34Wf .mbr-section-title {
  color: #000000;
}
.cid-ugOtZu34Wf .mbr-text {
  color: #262642;
}
.cid-uh0lphysM9 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uh0lphysM9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh0lphysM9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uh0lphysM9 .container {
    padding: 0 16px;
  }
}
.cid-uh0lphysM9 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uh0lphysM9 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uh0lphysM9 .content-wrapper {
  margin-bottom: 80px;
}
.cid-uh0lphysM9 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uh0lphysM9 .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uh0lphysM9 .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uh0lphysM9 .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uh0lphysM9 .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-uh0lphysM9 .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uh0lphysM9 .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uh0lphysM9 .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uh0lphysM9 .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uh0lphysM9 .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-uh0lphysM9 .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uh0lphysM9 .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-uh0lphysM9 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uh0lphysM9 .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-uh0lphysM9 .mbr-section-title {
  color: #000000;
}
.cid-uh0lphysM9 .mbr-text,
.cid-uh0lphysM9 .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-uh0lphysM9 .item-title {
  color: #000000;
}
.cid-uh0lphysM9 .item-text {
  color: #6f6f6f;
}
.cid-uh0lphysM9 .mbr-section-title,
.cid-uh0lphysM9 .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-ugZW7rEfJd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZW7rEfJd .mbr-overlay {
  z-index: 1;
}
.cid-ugZW7rEfJd .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZW7rEfJd .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZW7rEfJd .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZW7rEfJd .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZW7rEfJd .mbr-text {
  color: #555555;
}
.cid-ugZW7rEfJd .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZW7rEfJd .card-container {
  display: flex;
}
.cid-ugZW7rEfJd .card-container .card {
  border-radius: 0;
}
.cid-ugZW7rEfJd .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZW7rEfJd .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZW7rEfJd .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZW7rEfJd .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugOwhDCJaI {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-ugOwhDCJaI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOwhDCJaI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugOwhDCJaI .container {
    padding: 0 16px;
  }
}
.cid-ugOwhDCJaI .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugOwhDCJaI .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugOwhDCJaI .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugOwhDCJaI .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugOwhDCJaI .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugOwhDCJaI .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugOwhDCJaI .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugOwhDCJaI .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugOwhDCJaI .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugOwhDCJaI .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugOwhDCJaI .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugOwhDCJaI .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugOwhDCJaI .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugOwhDCJaI .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugOwhDCJaI .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugOwhDCJaI .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugOwhDCJaI .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugOwhDCJaI .mbr-section-title {
  color: #000000;
}
.cid-ugOwhDCJaI .mbr-text,
.cid-ugOwhDCJaI .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugOwhDCJaI .item-title {
  color: #000000;
}
.cid-ugOwhDCJaI .item-text {
  color: #6f6f6f;
}
.cid-ugOwhDCJaI .mbr-section-title,
.cid-ugOwhDCJaI .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uhyrnjiQsV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyrnjiQsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyrnjiQsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyrnjiQsV .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyrnjiQsV .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyrnjiQsV .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyrnjiQsV .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyrnjiQsV .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyrnjiQsV .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyrnjiQsV .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyrnjiQsV .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyrnjiQsV .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyrnjiQsV .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyrnjiQsV .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyrnjiQsV .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyrnjiQsV .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyrnjiQsV .mbr-section-title {
  color: #ffffff;
}
.cid-uhyrnjiQsV .mbr-text,
.cid-uhyrnjiQsV .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyrnjiQsV .mbr-section-title,
.cid-uhyrnjiQsV .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyrnjiQsV .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugB2oIlwH5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugB2oIlwH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugB2oIlwH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugB2oIlwH5 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugB2oIlwH5 .panel-group {
  border: none;
}
.cid-ugB2oIlwH5 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugB2oIlwH5 .panel-body,
.cid-ugB2oIlwH5 .card-header {
  padding: 1rem 0;
}
.cid-ugB2oIlwH5 .panel-title-edit {
  color: #000000;
}
.cid-ugB2oIlwH5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugB2oIlwH5 H3 {
  text-align: left;
}
.cid-ugB3j7C8ka {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f2f2;
}
.cid-ugB3j7C8ka .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugB3j7C8ka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugB3j7C8ka .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugB3j7C8ka .panel-group {
  border: none;
}
.cid-ugB3j7C8ka .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugB3j7C8ka .panel-body,
.cid-ugB3j7C8ka .card-header {
  padding: 1rem 0;
}
.cid-ugB3j7C8ka .panel-title-edit {
  color: #000000;
}
.cid-ugB3j7C8ka .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugB3j7C8ka H3 {
  text-align: left;
}
.cid-ui0V3ljmCH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui0V3ljmCH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0V3ljmCH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui0V3ljmCH .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ui0V3ljmCH .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui0V3ljmCH .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui0V3ljmCH .card-wrapper {
    padding: 4rem;
  }
}
.cid-ui0V3ljmCH .mbr-text,
.cid-ui0V3ljmCH .mbr-section-btn {
  color: #ffffff;
}
.cid-ui0V3ljmCH .card-title,
.cid-ui0V3ljmCH .card-box {
  text-align: center;
}
.cid-ugZWgZT9bZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZWgZT9bZ .mbr-overlay {
  z-index: 1;
}
.cid-ugZWgZT9bZ .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZWgZT9bZ .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZWgZT9bZ .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZWgZT9bZ .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZWgZT9bZ .mbr-text {
  color: #555555;
}
.cid-ugZWgZT9bZ .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZWgZT9bZ .card-container {
  display: flex;
}
.cid-ugZWgZT9bZ .card-container .card {
  border-radius: 0;
}
.cid-ugZWgZT9bZ .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZWgZT9bZ .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZWgZT9bZ .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZWgZT9bZ .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uh5rEYQH40 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uh5rEYQH40 .mbr-overlay {
  z-index: 1;
}
.cid-uh5rEYQH40 .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uh5rEYQH40 .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uh5rEYQH40 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-uh5rEYQH40 .item-title {
  width: 100%;
  color: #111111;
}
.cid-uh5rEYQH40 .mbr-text {
  color: #555555;
}
.cid-uh5rEYQH40 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-uh5rEYQH40 .card-container {
  display: flex;
}
.cid-uh5rEYQH40 .card-container .card {
  border-radius: 0;
}
.cid-uh5rEYQH40 .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uh5rEYQH40 .card-container .card .item-img {
    height: 400px;
  }
}
.cid-uh5rEYQH40 .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-uh5rEYQH40 .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-uh0nKTJxs0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f2f2;
}
.cid-uh0nKTJxs0 img,
.cid-uh0nKTJxs0 .item-img {
  width: 100%;
}
.cid-uh0nKTJxs0 .item:focus,
.cid-uh0nKTJxs0 span:focus {
  outline: none;
}
.cid-uh0nKTJxs0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uh0nKTJxs0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uh0nKTJxs0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uh0nKTJxs0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uh0nKTJxs0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uh0nKTJxs0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uh0nKTJxs0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uh0nKTJxs0 .mbr-section-title {
  color: #232323;
}
.cid-uh0nKTJxs0 .mbr-text,
.cid-uh0nKTJxs0 .mbr-section-btn {
  text-align: left;
}
.cid-uh0nKTJxs0 .item-title {
  text-align: left;
}
.cid-uh0nKTJxs0 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uhyrxtTGSx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyrxtTGSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyrxtTGSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyrxtTGSx .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyrxtTGSx .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyrxtTGSx .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyrxtTGSx .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyrxtTGSx .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyrxtTGSx .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyrxtTGSx .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyrxtTGSx .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyrxtTGSx .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyrxtTGSx .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyrxtTGSx .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyrxtTGSx .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyrxtTGSx .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyrxtTGSx .mbr-section-title {
  color: #ffffff;
}
.cid-uhyrxtTGSx .mbr-text,
.cid-uhyrxtTGSx .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyrxtTGSx .mbr-section-title,
.cid-uhyrxtTGSx .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyrxtTGSx .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhysjuNxeQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uhysjuNxeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhysjuNxeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhysjuNxeQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhysjuNxeQ .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uhysjuNxeQ .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uhysjuNxeQ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uhysjuNxeQ .container {
    padding: 0 12px;
  }
}
.cid-uhysjuNxeQ .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhysjuNxeQ .content-wrapper {
    padding: 0 24px;
  }
}
.cid-uhysjuNxeQ .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uhysjuNxeQ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uhysjuNxeQ .mbr-section-title {
  color: #1D1D1F;
}
.cid-uhysjuNxeQ .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-uhysjuNxeQ .mbr-section-title,
.cid-uhysjuNxeQ .mbr-section-btn {
  text-align: center;
}
.cid-ugTIL9qQJP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ugTIL9qQJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugTIL9qQJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugTIL9qQJP .item {
  padding-bottom: 2rem;
}
.cid-ugTIL9qQJP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ugTIL9qQJP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ugTIL9qQJP .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-ugTIL9qQJP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ugTIL9qQJP .carousel-control,
.cid-ugTIL9qQJP .close {
  background: #1b1b1b;
}
.cid-ugTIL9qQJP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ugTIL9qQJP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ugTIL9qQJP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ugTIL9qQJP .carousel-control-next span {
  margin-left: 5px;
}
.cid-ugTIL9qQJP .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-ugTIL9qQJP .close::before {
  content: '\e91a';
}
.cid-ugTIL9qQJP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ugTIL9qQJP .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-ugTIL9qQJP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugTIL9qQJP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugTIL9qQJP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ugTIL9qQJP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ugTIL9qQJP .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-ugTIL9qQJP .carousel-indicators li.active,
.cid-ugTIL9qQJP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ugTIL9qQJP .carousel-indicators li::after,
.cid-ugTIL9qQJP .carousel-indicators li::before {
  content: none;
}
.cid-ugTIL9qQJP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ugTIL9qQJP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ugTIL9qQJP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ugTIL9qQJP .carousel-indicators {
    display: none;
  }
}
.cid-ugTIL9qQJP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ugTIL9qQJP .carousel-inner > .active {
  display: block;
}
.cid-ugTIL9qQJP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugTIL9qQJP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ugTIL9qQJP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ugTIL9qQJP .carousel-control,
  .cid-ugTIL9qQJP .carousel-indicators,
  .cid-ugTIL9qQJP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ugTIL9qQJP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ugTIL9qQJP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ugTIL9qQJP .carousel-indicators .active,
.cid-ugTIL9qQJP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ugTIL9qQJP .carousel-indicators .active {
  background: #fff;
}
.cid-ugTIL9qQJP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ugTIL9qQJP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ugTIL9qQJP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ugTIL9qQJP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ugTIL9qQJP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ugTIL9qQJP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ugTIL9qQJP .carousel {
  width: 100%;
}
.cid-ugTIL9qQJP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ugTIL9qQJP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ugTIL9qQJP .modal.fade .modal-dialog,
.cid-ugTIL9qQJP .modal.in .modal-dialog {
  transform: none;
}
.cid-ugTIL9qQJP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ugTIL9qQJP H6 {
  text-align: center;
}
.cid-ugOHBnoiee {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugOHBnoiee .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOHBnoiee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOHBnoiee .item {
  padding-bottom: 2rem;
}
.cid-ugOHBnoiee .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ugOHBnoiee .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ugOHBnoiee .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-ugOHBnoiee .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ugOHBnoiee .carousel-control,
.cid-ugOHBnoiee .close {
  background: #1b1b1b;
}
.cid-ugOHBnoiee .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ugOHBnoiee .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ugOHBnoiee .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ugOHBnoiee .carousel-control-next span {
  margin-left: 5px;
}
.cid-ugOHBnoiee .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-ugOHBnoiee .close::before {
  content: '\e91a';
}
.cid-ugOHBnoiee .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ugOHBnoiee .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-ugOHBnoiee .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOHBnoiee .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugOHBnoiee .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ugOHBnoiee .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ugOHBnoiee .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-ugOHBnoiee .carousel-indicators li.active,
.cid-ugOHBnoiee .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ugOHBnoiee .carousel-indicators li::after,
.cid-ugOHBnoiee .carousel-indicators li::before {
  content: none;
}
.cid-ugOHBnoiee .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ugOHBnoiee .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ugOHBnoiee .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ugOHBnoiee .carousel-indicators {
    display: none;
  }
}
.cid-ugOHBnoiee .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ugOHBnoiee .carousel-inner > .active {
  display: block;
}
.cid-ugOHBnoiee .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOHBnoiee .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ugOHBnoiee .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ugOHBnoiee .carousel-control,
  .cid-ugOHBnoiee .carousel-indicators,
  .cid-ugOHBnoiee .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ugOHBnoiee .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ugOHBnoiee .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ugOHBnoiee .carousel-indicators .active,
.cid-ugOHBnoiee .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ugOHBnoiee .carousel-indicators .active {
  background: #fff;
}
.cid-ugOHBnoiee .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ugOHBnoiee .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ugOHBnoiee .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ugOHBnoiee .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ugOHBnoiee .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ugOHBnoiee .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ugOHBnoiee .carousel {
  width: 100%;
}
.cid-ugOHBnoiee .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ugOHBnoiee .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ugOHBnoiee .modal.fade .modal-dialog,
.cid-ugOHBnoiee .modal.in .modal-dialog {
  transform: none;
}
.cid-ugOHBnoiee .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ugOHBnoiee H6 {
  text-align: center;
}
.cid-uhytbZBjuo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhytbZBjuo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhytbZBjuo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhytbZBjuo .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhytbZBjuo .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhytbZBjuo .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhytbZBjuo .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhytbZBjuo .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhytbZBjuo .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhytbZBjuo .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhytbZBjuo .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhytbZBjuo .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhytbZBjuo .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhytbZBjuo .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhytbZBjuo .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhytbZBjuo .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhytbZBjuo .mbr-section-title {
  color: #ffffff;
}
.cid-uhytbZBjuo .mbr-text,
.cid-uhytbZBjuo .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhytbZBjuo .mbr-section-title,
.cid-uhytbZBjuo .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhytbZBjuo .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um5REvQPhc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um5REvQPhc .mbr-overlay {
  z-index: 1;
}
.cid-um5REvQPhc .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-um5REvQPhc .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-um5REvQPhc .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-um5REvQPhc .item-title {
  width: 100%;
  color: #111111;
}
.cid-um5REvQPhc .mbr-text {
  color: #555555;
}
.cid-um5REvQPhc .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-um5REvQPhc .card-container {
  display: flex;
}
.cid-um5REvQPhc .card-container .card {
  border-radius: 0;
}
.cid-um5REvQPhc .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-um5REvQPhc .card-container .card .item-img {
    height: 600px;
  }
}
.cid-um5REvQPhc .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-um5REvQPhc .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-uhytmPUYx0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uhytmPUYx0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhytmPUYx0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uhytmPUYx0 .container {
    padding: 0 16px;
  }
}
.cid-uhytmPUYx0 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uhytmPUYx0 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uhytmPUYx0 .content-wrapper {
  margin-bottom: 80px;
}
.cid-uhytmPUYx0 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uhytmPUYx0 .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uhytmPUYx0 .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uhytmPUYx0 .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhytmPUYx0 .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-uhytmPUYx0 .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uhytmPUYx0 .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uhytmPUYx0 .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uhytmPUYx0 .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhytmPUYx0 .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-uhytmPUYx0 .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uhytmPUYx0 .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-uhytmPUYx0 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uhytmPUYx0 .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-uhytmPUYx0 .mbr-section-title {
  color: #000000;
}
.cid-uhytmPUYx0 .mbr-text,
.cid-uhytmPUYx0 .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-uhytmPUYx0 .item-title {
  color: #000000;
}
.cid-uhytmPUYx0 .item-text {
  color: #6f6f6f;
}
.cid-uhytmPUYx0 .mbr-section-title,
.cid-uhytmPUYx0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhyx8Pb575 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyx8Pb575 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyx8Pb575 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyx8Pb575 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyx8Pb575 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyx8Pb575 .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyx8Pb575 .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyx8Pb575 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyx8Pb575 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyx8Pb575 .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyx8Pb575 .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyx8Pb575 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyx8Pb575 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyx8Pb575 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyx8Pb575 .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyx8Pb575 .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyx8Pb575 .mbr-section-title {
  color: #ffffff;
}
.cid-uhyx8Pb575 .mbr-text,
.cid-uhyx8Pb575 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyx8Pb575 .mbr-section-title,
.cid-uhyx8Pb575 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyx8Pb575 .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugZVPy1PgM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZVPy1PgM .mbr-overlay {
  z-index: 1;
}
.cid-ugZVPy1PgM .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZVPy1PgM .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZVPy1PgM .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZVPy1PgM .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZVPy1PgM .mbr-text {
  color: #555555;
}
.cid-ugZVPy1PgM .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZVPy1PgM .card-container {
  display: flex;
}
.cid-ugZVPy1PgM .card-container .card {
  border-radius: 0;
}
.cid-ugZVPy1PgM .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZVPy1PgM .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZVPy1PgM .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZVPy1PgM .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um5RKq7n6T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um5RKq7n6T .mbr-overlay {
  z-index: 1;
}
.cid-um5RKq7n6T .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-um5RKq7n6T .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-um5RKq7n6T .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-um5RKq7n6T .item-title {
  width: 100%;
  color: #111111;
}
.cid-um5RKq7n6T .mbr-text {
  color: #555555;
}
.cid-um5RKq7n6T .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-um5RKq7n6T .card-container {
  display: flex;
}
.cid-um5RKq7n6T .card-container .card {
  border-radius: 0;
}
.cid-um5RKq7n6T .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-um5RKq7n6T .card-container .card .item-img {
    height: 600px;
  }
}
.cid-um5RKq7n6T .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-um5RKq7n6T .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugBXUHVph1 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-ugBXUHVph1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBXUHVph1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugBXUHVph1 .container {
    padding: 0 16px;
  }
}
.cid-ugBXUHVph1 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugBXUHVph1 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugBXUHVph1 .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugBXUHVph1 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugBXUHVph1 .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugBXUHVph1 .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugBXUHVph1 .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugBXUHVph1 .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugBXUHVph1 .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugBXUHVph1 .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugBXUHVph1 .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugBXUHVph1 .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugBXUHVph1 .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugBXUHVph1 .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugBXUHVph1 .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugBXUHVph1 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugBXUHVph1 .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugBXUHVph1 .mbr-section-title {
  color: #000000;
}
.cid-ugBXUHVph1 .mbr-text,
.cid-ugBXUHVph1 .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugBXUHVph1 .item-title {
  color: #000000;
}
.cid-ugBXUHVph1 .item-text {
  color: #6f6f6f;
}
.cid-ugBXUHVph1 .mbr-section-title,
.cid-ugBXUHVph1 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ugZVChP0hC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZVChP0hC .mbr-overlay {
  z-index: 1;
}
.cid-ugZVChP0hC .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZVChP0hC .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZVChP0hC .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZVChP0hC .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZVChP0hC .mbr-text {
  color: #555555;
}
.cid-ugZVChP0hC .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZVChP0hC .card-container {
  display: flex;
}
.cid-ugZVChP0hC .card-container .card {
  border-radius: 0;
}
.cid-ugZVChP0hC .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZVChP0hC .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZVChP0hC .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZVChP0hC .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZSaUBT0W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZSaUBT0W .mbr-overlay {
  z-index: 1;
}
.cid-ugZSaUBT0W .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZSaUBT0W .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZSaUBT0W .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZSaUBT0W .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZSaUBT0W .mbr-text {
  color: #555555;
}
.cid-ugZSaUBT0W .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZSaUBT0W .card-container {
  display: flex;
}
.cid-ugZSaUBT0W .card-container .card {
  border-radius: 0;
}
.cid-ugZSaUBT0W .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZSaUBT0W .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZSaUBT0W .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZSaUBT0W .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugNQGUpt89 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugNQGUpt89 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNQGUpt89 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugNQGUpt89 .container {
    padding: 0 24px;
  }
}
.cid-ugNQGUpt89 .row {
  justify-content: center;
}
.cid-ugNQGUpt89 .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugNQGUpt89 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugNQGUpt89 .content-wrapper {
    padding: 32px;
  }
}
.cid-ugNQGUpt89 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugNQGUpt89 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugNQGUpt89 .mbr-section-title {
  color: #000000;
}
.cid-ugNQGUpt89 .mbr-text {
  color: #262642;
}
.cid-ugNTgLI1zs {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-ugNTgLI1zs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNTgLI1zs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ugNTgLI1zs .container {
    padding: 0 16px;
  }
}
.cid-ugNTgLI1zs .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ugNTgLI1zs .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ugNTgLI1zs .content-wrapper {
  margin-bottom: 80px;
}
.cid-ugNTgLI1zs .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ugNTgLI1zs .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-ugNTgLI1zs .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-ugNTgLI1zs .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-ugNTgLI1zs .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-ugNTgLI1zs .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ugNTgLI1zs .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ugNTgLI1zs .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ugNTgLI1zs .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ugNTgLI1zs .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-ugNTgLI1zs .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-ugNTgLI1zs .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-ugNTgLI1zs .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ugNTgLI1zs .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-ugNTgLI1zs .mbr-section-title {
  color: #000000;
}
.cid-ugNTgLI1zs .mbr-text,
.cid-ugNTgLI1zs .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-ugNTgLI1zs .item-title {
  color: #000000;
}
.cid-ugNTgLI1zs .item-text {
  color: #6f6f6f;
}
.cid-ugNTgLI1zs .mbr-section-title,
.cid-ugNTgLI1zs .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-uhyLyRk9B0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyLyRk9B0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyLyRk9B0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyLyRk9B0 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyLyRk9B0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyLyRk9B0 .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyLyRk9B0 .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyLyRk9B0 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyLyRk9B0 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyLyRk9B0 .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyLyRk9B0 .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyLyRk9B0 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyLyRk9B0 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyLyRk9B0 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyLyRk9B0 .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyLyRk9B0 .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyLyRk9B0 .mbr-section-title {
  color: #ffffff;
}
.cid-uhyLyRk9B0 .mbr-text,
.cid-uhyLyRk9B0 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyLyRk9B0 .mbr-section-title,
.cid-uhyLyRk9B0 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyLyRk9B0 .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugCYI4zQ6L {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugCYI4zQ6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCYI4zQ6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCYI4zQ6L .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugCYI4zQ6L .panel-group {
  border: none;
}
.cid-ugCYI4zQ6L .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugCYI4zQ6L .panel-body,
.cid-ugCYI4zQ6L .card-header {
  padding: 1rem 0;
}
.cid-ugCYI4zQ6L .panel-title-edit {
  color: #000000;
}
.cid-ugCYI4zQ6L .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugCYI4zQ6L H3 {
  text-align: left;
}
.cid-ugCZcczr3l {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-ugCZcczr3l .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugCZcczr3l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugCZcczr3l .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugCZcczr3l .panel-group {
  border: none;
}
.cid-ugCZcczr3l .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugCZcczr3l .panel-body,
.cid-ugCZcczr3l .card-header {
  padding: 1rem 0;
}
.cid-ugCZcczr3l .panel-title-edit {
  color: #000000;
}
.cid-ugCZcczr3l .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugCZcczr3l H3 {
  text-align: left;
}
.cid-uhyKZqdhTc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyKZqdhTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyKZqdhTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyKZqdhTc .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyKZqdhTc .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyKZqdhTc .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyKZqdhTc .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyKZqdhTc .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyKZqdhTc .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyKZqdhTc .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyKZqdhTc .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyKZqdhTc .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyKZqdhTc .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyKZqdhTc .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyKZqdhTc .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyKZqdhTc .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyKZqdhTc .mbr-section-title {
  color: #ffffff;
}
.cid-uhyKZqdhTc .mbr-text,
.cid-uhyKZqdhTc .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyKZqdhTc .mbr-section-title,
.cid-uhyKZqdhTc .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyKZqdhTc .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugNUFa8PEw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}
.cid-ugNUFa8PEw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uhyNpk8aG8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhyNpk8aG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyNpk8aG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhyNpk8aG8 .item {
  padding-bottom: 2rem;
}
.cid-uhyNpk8aG8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uhyNpk8aG8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uhyNpk8aG8 .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-uhyNpk8aG8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uhyNpk8aG8 .carousel-control,
.cid-uhyNpk8aG8 .close {
  background: #1b1b1b;
}
.cid-uhyNpk8aG8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uhyNpk8aG8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uhyNpk8aG8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uhyNpk8aG8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uhyNpk8aG8 .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-uhyNpk8aG8 .close::before {
  content: '\e91a';
}
.cid-uhyNpk8aG8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uhyNpk8aG8 .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-uhyNpk8aG8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhyNpk8aG8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhyNpk8aG8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uhyNpk8aG8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uhyNpk8aG8 .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-uhyNpk8aG8 .carousel-indicators li.active,
.cid-uhyNpk8aG8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uhyNpk8aG8 .carousel-indicators li::after,
.cid-uhyNpk8aG8 .carousel-indicators li::before {
  content: none;
}
.cid-uhyNpk8aG8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyNpk8aG8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uhyNpk8aG8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uhyNpk8aG8 .carousel-indicators {
    display: none;
  }
}
.cid-uhyNpk8aG8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uhyNpk8aG8 .carousel-inner > .active {
  display: block;
}
.cid-uhyNpk8aG8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhyNpk8aG8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uhyNpk8aG8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uhyNpk8aG8 .carousel-control,
  .cid-uhyNpk8aG8 .carousel-indicators,
  .cid-uhyNpk8aG8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uhyNpk8aG8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uhyNpk8aG8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uhyNpk8aG8 .carousel-indicators .active,
.cid-uhyNpk8aG8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uhyNpk8aG8 .carousel-indicators .active {
  background: #fff;
}
.cid-uhyNpk8aG8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uhyNpk8aG8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uhyNpk8aG8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uhyNpk8aG8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uhyNpk8aG8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uhyNpk8aG8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uhyNpk8aG8 .carousel {
  width: 100%;
}
.cid-uhyNpk8aG8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uhyNpk8aG8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uhyNpk8aG8 .modal.fade .modal-dialog,
.cid-uhyNpk8aG8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uhyNpk8aG8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uhyNpk8aG8 H6 {
  text-align: center;
}
.cid-uhyLgB1dbA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyLgB1dbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyLgB1dbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyLgB1dbA .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyLgB1dbA .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyLgB1dbA .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyLgB1dbA .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyLgB1dbA .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyLgB1dbA .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyLgB1dbA .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyLgB1dbA .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyLgB1dbA .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyLgB1dbA .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyLgB1dbA .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyLgB1dbA .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyLgB1dbA .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyLgB1dbA .mbr-section-title {
  color: #ffffff;
}
.cid-uhyLgB1dbA .mbr-text,
.cid-uhyLgB1dbA .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyLgB1dbA .mbr-section-title,
.cid-uhyLgB1dbA .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyLgB1dbA .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umaj1yl09z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umaj1yl09z .mbr-overlay {
  z-index: 1;
}
.cid-umaj1yl09z .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-umaj1yl09z .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-umaj1yl09z .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-umaj1yl09z .item-title {
  width: 100%;
  color: #111111;
}
.cid-umaj1yl09z .mbr-text {
  color: #555555;
}
.cid-umaj1yl09z .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-umaj1yl09z .card-container {
  display: flex;
}
.cid-umaj1yl09z .card-container .card {
  border-radius: 0;
}
.cid-umaj1yl09z .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-umaj1yl09z .card-container .card .item-img {
    height: 600px;
  }
}
.cid-umaj1yl09z .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-umaj1yl09z .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugIZbrzXhV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}
.cid-ugIZbrzXhV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-upnilZsKnQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-upnilZsKnQ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-upnilZsKnQ .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-upnilZsKnQ .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-upnilZsKnQ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upnilZsKnQ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-upnilZsKnQ .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #910909;
}
@media (max-width: 767px) {
  .cid-upnilZsKnQ .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-upnilZsKnQ .mbr-section-subtitle {
  color: #696969;
}
.cid-upnilZsKnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upnilZsKnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulBNGb1ePO .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-ulBNGb1ePO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulBNGb1ePO .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-ulBNGb1ePO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulBNGb1ePO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um5TeG3pOA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um5TeG3pOA .mbr-overlay {
  z-index: 1;
}
.cid-um5TeG3pOA .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-um5TeG3pOA .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-um5TeG3pOA .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-um5TeG3pOA .item-title {
  width: 100%;
  color: #111111;
}
.cid-um5TeG3pOA .mbr-text {
  color: #555555;
}
.cid-um5TeG3pOA .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-um5TeG3pOA .card-container {
  display: flex;
}
.cid-um5TeG3pOA .card-container .card {
  border-radius: 0;
}
.cid-um5TeG3pOA .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-um5TeG3pOA .card-container .card .item-img {
    height: 600px;
  }
}
.cid-um5TeG3pOA .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-um5TeG3pOA .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugISoTiJIw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}
.cid-ugISoTiJIw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-upnjnJQKal {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-upnjnJQKal .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-upnjnJQKal .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-upnjnJQKal .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-upnjnJQKal .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upnjnJQKal .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-upnjnJQKal .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #910909;
}
@media (max-width: 767px) {
  .cid-upnjnJQKal .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-upnjnJQKal .mbr-section-subtitle {
  color: #696969;
}
.cid-upnjnJQKal .mbr-fallback-image.disabled {
  display: none;
}
.cid-upnjnJQKal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upn9cObxmS .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-upn9cObxmS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upn9cObxmS .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-upn9cObxmS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upn9cObxmS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um5ThHpluA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um5ThHpluA .mbr-overlay {
  z-index: 1;
}
.cid-um5ThHpluA .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-um5ThHpluA .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-um5ThHpluA .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-um5ThHpluA .item-title {
  width: 100%;
  color: #111111;
}
.cid-um5ThHpluA .mbr-text {
  color: #555555;
}
.cid-um5ThHpluA .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-um5ThHpluA .card-container {
  display: flex;
}
.cid-um5ThHpluA .card-container .card {
  border-radius: 0;
}
.cid-um5ThHpluA .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-um5ThHpluA .card-container .card .item-img {
    height: 600px;
  }
}
.cid-um5ThHpluA .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-um5ThHpluA .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-ugJ1to9MeF {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}
.cid-ugJ1to9MeF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-upnjtMQ3mW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-upnjtMQ3mW .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-upnjtMQ3mW .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-upnjtMQ3mW .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-upnjtMQ3mW .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upnjtMQ3mW .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-upnjtMQ3mW .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #910909;
}
@media (max-width: 767px) {
  .cid-upnjtMQ3mW .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-upnjtMQ3mW .mbr-section-subtitle {
  color: #696969;
}
.cid-upnjtMQ3mW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upnjtMQ3mW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upn9nv5Mpy .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-upn9nv5Mpy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upn9nv5Mpy .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-upn9nv5Mpy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upn9nv5Mpy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhtK1kmpLk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtK1kmpLk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtK1kmpLk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtK1kmpLk .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtK1kmpLk .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtK1kmpLk .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtK1kmpLk .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtK1kmpLk .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtK1kmpLk .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtK1kmpLk .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtK1kmpLk .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtK1kmpLk .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtK1kmpLk .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtK1kmpLk .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtK1kmpLk .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtK1kmpLk .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtK1kmpLk .mbr-section-title {
  color: #ffffff;
}
.cid-uhtK1kmpLk .mbr-text,
.cid-uhtK1kmpLk .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtK1kmpLk .mbr-section-title,
.cid-uhtK1kmpLk .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtK1kmpLk .content-wrapper {
    min-height: 360px;
  }
}
.cid-uhyRAIbKJc {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uhyRAIbKJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyRAIbKJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhyRAIbKJc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhyRAIbKJc .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uhyRAIbKJc .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uhyRAIbKJc .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uhyRAIbKJc .container {
    padding: 0 12px;
  }
}
.cid-uhyRAIbKJc .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhyRAIbKJc .content-wrapper {
    padding: 0 24px;
  }
}
.cid-uhyRAIbKJc .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uhyRAIbKJc .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uhyRAIbKJc .mbr-section-title {
  color: #1D1D1F;
}
.cid-uhyRAIbKJc .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-uhyRAIbKJc .mbr-section-title,
.cid-uhyRAIbKJc .mbr-section-btn {
  text-align: center;
}
.cid-uk0WsstbfC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-uk0WsstbfC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0WsstbfC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0WsstbfC .row {
  justify-content: center;
}
.cid-uk0WsstbfC .video-block {
  margin-bottom: 20px;
}
.cid-uk0WsstbfC .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-uk0WsstbfC .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-uk0WsstbfC .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-uk0WsstbfC .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uk0WsstbfC .mbr-section-title {
  color: #E0BDB6;
}
.cid-uk0WsstbfC .mbr-date {
  color: #747474;
}
.cid-uk0WsstbfC .mbr-text {
  color: #747474;
}
.cid-ugIKLsbhAL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ugIKLsbhAL img,
.cid-ugIKLsbhAL .item-img {
  width: 100%;
}
.cid-ugIKLsbhAL .item:focus,
.cid-ugIKLsbhAL span:focus {
  outline: none;
}
.cid-ugIKLsbhAL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugIKLsbhAL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugIKLsbhAL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugIKLsbhAL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugIKLsbhAL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugIKLsbhAL .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-ugIKLsbhAL .mbr-text,
.cid-ugIKLsbhAL .mbr-section-btn {
  text-align: left;
}
.cid-ugIKLsbhAL .item-title {
  text-align: left;
}
.cid-ugIKLsbhAL .item-subtitle {
  text-align: left;
}
.cid-ugZVm5QJlP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZVm5QJlP .mbr-overlay {
  z-index: 1;
}
.cid-ugZVm5QJlP .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugZVm5QJlP .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugZVm5QJlP .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugZVm5QJlP .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugZVm5QJlP .mbr-text {
  color: #555555;
}
.cid-ugZVm5QJlP .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugZVm5QJlP .card-container {
  display: flex;
}
.cid-ugZVm5QJlP .card-container .card {
  border-radius: 0;
}
.cid-ugZVm5QJlP .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugZVm5QJlP .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugZVm5QJlP .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugZVm5QJlP .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugMRvNdzhP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ugMRvNdzhP .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-ugMRvNdzhP .card-box {
  z-index: 2;
  position: relative;
}
.cid-ugMRvNdzhP .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #000000;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-ugMRvNdzhP .mbr-iconfont-big {
  font-size: 16rem;
  color: #000000;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-ugMRvNdzhP .card-title,
.cid-ugMRvNdzhP .card-text,
.cid-ugMRvNdzhP .card-number {
  transition: all 0.3s;
}
.cid-ugMRvNdzhP .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #f2f2f2;
  transition: all 0.3s;
}
.cid-ugMRvNdzhP .card-wrapper:hover {
  background: #000000;
}
.cid-ugMRvNdzhP .card-wrapper:hover .mbr-iconfont-big {
  color: #808080;
  transform: rotate(-20deg);
}
.cid-ugMRvNdzhP .card-wrapper:hover .card-title,
.cid-ugMRvNdzhP .card-wrapper:hover .card-text,
.cid-ugMRvNdzhP .card-wrapper:hover .card-number {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ugMRvNdzhP .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ugMRvNdzhP .card-title,
.cid-ugMRvNdzhP .iconfont-wrapper {
  color: #160830;
}
.cid-ugMRvNdzhP .card-text {
  color: #353535;
}
.cid-ugMRvNdzhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugMRvNdzhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhtLcxJEDp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtLcxJEDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtLcxJEDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtLcxJEDp .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtLcxJEDp .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtLcxJEDp .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtLcxJEDp .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtLcxJEDp .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtLcxJEDp .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtLcxJEDp .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtLcxJEDp .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtLcxJEDp .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtLcxJEDp .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtLcxJEDp .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtLcxJEDp .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtLcxJEDp .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtLcxJEDp .mbr-section-title {
  color: #ffffff;
}
.cid-uhtLcxJEDp .mbr-text,
.cid-uhtLcxJEDp .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtLcxJEDp .mbr-section-title,
.cid-uhtLcxJEDp .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtLcxJEDp .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugC3tyE8aw {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugC3tyE8aw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugC3tyE8aw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugC3tyE8aw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugC3tyE8aw .panel-group {
  border: none;
}
.cid-ugC3tyE8aw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugC3tyE8aw .panel-body,
.cid-ugC3tyE8aw .card-header {
  padding: 1rem 0;
}
.cid-ugC3tyE8aw .panel-title-edit {
  color: #000000;
}
.cid-ugC3tyE8aw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugC3tyE8aw H3 {
  text-align: left;
}
.cid-ugC49aAuKt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugC49aAuKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugC49aAuKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugC49aAuKt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugC49aAuKt .panel-group {
  border: none;
}
.cid-ugC49aAuKt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugC49aAuKt .panel-body,
.cid-ugC49aAuKt .card-header {
  padding: 1rem 0;
}
.cid-ugC49aAuKt .panel-title-edit {
  color: #000000;
}
.cid-ugC49aAuKt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugC49aAuKt H3 {
  text-align: left;
}
.cid-ugC4TFceZv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugC4TFceZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugC4TFceZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugC4TFceZv .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-ugC4TFceZv .panel-group {
  border: none;
}
.cid-ugC4TFceZv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugC4TFceZv .panel-body,
.cid-ugC4TFceZv .card-header {
  padding: 1rem 0;
}
.cid-ugC4TFceZv .panel-title-edit {
  color: #000000;
}
.cid-ugC4TFceZv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugC4TFceZv H3 {
  text-align: left;
}
.cid-ulk0uCGsZ2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-ulk0uCGsZ2 img,
.cid-ulk0uCGsZ2 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulk0uCGsZ2 .item:focus,
.cid-ulk0uCGsZ2 span:focus {
  outline: none;
}
.cid-ulk0uCGsZ2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ulk0uCGsZ2 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulk0uCGsZ2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulk0uCGsZ2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulk0uCGsZ2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulk0uCGsZ2 .mbr-section-title {
  color: #ffffff;
}
.cid-ulk0uCGsZ2 .mbr-text,
.cid-ulk0uCGsZ2 .mbr-section-btn {
  text-align: center;
}
.cid-ulk0uCGsZ2 .item-title {
  text-align: center;
}
.cid-ulk0uCGsZ2 .item-subtitle {
  text-align: left;
}
.cid-uhySqj8ueE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}
.cid-uhySqj8ueE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDP4XDF3KG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP4XDF3KG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP4XDF3KG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP4XDF3KG .video-wrapper iframe {
  width: 100%;
}
.cid-uDP4XDF3KG .mbr-section-title,
.cid-uDP4XDF3KG .mbr-section-subtitle,
.cid-uDP4XDF3KG .mbr-text {
  text-align: center;
}
.cid-uDP4YqCEzn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP4YqCEzn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP4YqCEzn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP4YqCEzn .video-wrapper iframe {
  width: 100%;
}
.cid-uDP4YqCEzn .mbr-section-title,
.cid-uDP4YqCEzn .mbr-section-subtitle,
.cid-uDP4YqCEzn .mbr-text {
  text-align: center;
}
.cid-usBf5d4ft2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBf5d4ft2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBf5d4ft2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBf5d4ft2 .video-wrapper iframe {
  width: 100%;
}
.cid-usBf5d4ft2 .mbr-section-title,
.cid-usBf5d4ft2 .mbr-section-subtitle,
.cid-usBf5d4ft2 .mbr-text {
  text-align: center;
}
.cid-uDP5fdm5Mu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP5fdm5Mu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP5fdm5Mu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP5fdm5Mu .video-wrapper iframe {
  width: 100%;
}
.cid-uDP5fdm5Mu .mbr-section-title,
.cid-uDP5fdm5Mu .mbr-section-subtitle,
.cid-uDP5fdm5Mu .mbr-text {
  text-align: center;
}
.cid-usBfoAn4iw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBfoAn4iw .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBfoAn4iw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBfoAn4iw .video-wrapper iframe {
  width: 100%;
}
.cid-usBfoAn4iw .mbr-section-title,
.cid-usBfoAn4iw .mbr-section-subtitle,
.cid-usBfoAn4iw .mbr-text {
  text-align: center;
}
.cid-uhySFhu65e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhySFhu65e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhySFhu65e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhySFhu65e .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhySFhu65e .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhySFhu65e .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhySFhu65e .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhySFhu65e .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhySFhu65e .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhySFhu65e .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhySFhu65e .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhySFhu65e .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhySFhu65e .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhySFhu65e .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhySFhu65e .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhySFhu65e .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhySFhu65e .mbr-section-title {
  color: #ffffff;
}
.cid-uhySFhu65e .mbr-text,
.cid-uhySFhu65e .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhySFhu65e .mbr-section-title,
.cid-uhySFhu65e .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhySFhu65e .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhtHKaSiI0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtHKaSiI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtHKaSiI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtHKaSiI0 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHKaSiI0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtHKaSiI0 .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHKaSiI0 .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtHKaSiI0 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtHKaSiI0 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtHKaSiI0 .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtHKaSiI0 .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtHKaSiI0 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtHKaSiI0 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtHKaSiI0 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtHKaSiI0 .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtHKaSiI0 .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtHKaSiI0 .mbr-section-title {
  color: #ffffff;
}
.cid-uhtHKaSiI0 .mbr-text,
.cid-uhtHKaSiI0 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtHKaSiI0 .mbr-section-title,
.cid-uhtHKaSiI0 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtHKaSiI0 .content-wrapper {
    min-height: 360px;
  }
}
.cid-uhWBrE5EAF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uhWBrE5EAF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWBrE5EAF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhWBrE5EAF .video-wrapper iframe {
  width: 100%;
}
.cid-uhWBrE5EAF .mbr-section-title,
.cid-uhWBrE5EAF .mbr-section-subtitle,
.cid-uhWBrE5EAF .mbr-text {
  text-align: center;
}
.cid-uGDXlAUEAk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uGDXlAUEAk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDXlAUEAk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDXlAUEAk .video-wrapper iframe {
  width: 100%;
}
.cid-uGDXlAUEAk .mbr-section-title,
.cid-uGDXlAUEAk .mbr-section-subtitle,
.cid-uGDXlAUEAk .mbr-text {
  text-align: center;
}
.cid-uDP3wZHqFh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP3wZHqFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP3wZHqFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP3wZHqFh .video-wrapper iframe {
  width: 100%;
}
.cid-uDP3wZHqFh .mbr-section-title,
.cid-uDP3wZHqFh .mbr-section-subtitle,
.cid-uDP3wZHqFh .mbr-text {
  text-align: center;
}
.cid-uDP3UhhELf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP3UhhELf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP3UhhELf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP3UhhELf .video-wrapper iframe {
  width: 100%;
}
.cid-uDP3UhhELf .mbr-section-title,
.cid-uDP3UhhELf .mbr-section-subtitle,
.cid-uDP3UhhELf .mbr-text {
  text-align: center;
}
.cid-uDP3VpAj0V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP3VpAj0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP3VpAj0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP3VpAj0V .video-wrapper iframe {
  width: 100%;
}
.cid-uDP3VpAj0V .mbr-section-title,
.cid-uDP3VpAj0V .mbr-section-subtitle,
.cid-uDP3VpAj0V .mbr-text {
  text-align: center;
}
.cid-usBeHiGUbn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-usBeHiGUbn .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBeHiGUbn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBeHiGUbn .video-wrapper iframe {
  width: 100%;
}
.cid-usBeHiGUbn .mbr-section-title,
.cid-usBeHiGUbn .mbr-section-subtitle,
.cid-usBeHiGUbn .mbr-text {
  text-align: center;
}
.cid-uDP4iMp4Ls {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uDP4iMp4Ls .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDP4iMp4Ls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDP4iMp4Ls .video-wrapper iframe {
  width: 100%;
}
.cid-uDP4iMp4Ls .mbr-section-title,
.cid-uDP4iMp4Ls .mbr-section-subtitle,
.cid-uDP4iMp4Ls .mbr-text {
  text-align: center;
}
.cid-uhWBWWucNn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhWBWWucNn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWBWWucNn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhWBWWucNn .video-wrapper iframe {
  width: 100%;
}
.cid-uhWBWWucNn .mbr-section-title,
.cid-uhWBWWucNn .mbr-section-subtitle,
.cid-uhWBWWucNn .mbr-text {
  text-align: center;
}
.cid-uhWClGwZmU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uhWClGwZmU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWClGwZmU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhWClGwZmU .video-wrapper iframe {
  width: 100%;
}
.cid-uhWClGwZmU .mbr-section-title,
.cid-uhWClGwZmU .mbr-section-subtitle,
.cid-uhWClGwZmU .mbr-text {
  text-align: center;
}
.cid-uhWHZDvEkI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhWHZDvEkI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWHZDvEkI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhWHZDvEkI .video-wrapper iframe {
  width: 100%;
}
.cid-uhWHZDvEkI .mbr-section-title,
.cid-uhWHZDvEkI .mbr-section-subtitle,
.cid-uhWHZDvEkI .mbr-text {
  text-align: center;
}
.cid-uhWIkKJvFI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uhWIkKJvFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWIkKJvFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhWIkKJvFI .video-wrapper iframe {
  width: 100%;
}
.cid-uhWIkKJvFI .mbr-section-title,
.cid-uhWIkKJvFI .mbr-section-subtitle,
.cid-uhWIkKJvFI .mbr-text {
  text-align: center;
}
.cid-uhtHQk7qQd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtHQk7qQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtHQk7qQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtHQk7qQd .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHQk7qQd .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtHQk7qQd .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHQk7qQd .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtHQk7qQd .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtHQk7qQd .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtHQk7qQd .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtHQk7qQd .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtHQk7qQd .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtHQk7qQd .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtHQk7qQd .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtHQk7qQd .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtHQk7qQd .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtHQk7qQd .mbr-section-title {
  color: #ffffff;
}
.cid-uhtHQk7qQd .mbr-text,
.cid-uhtHQk7qQd .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtHQk7qQd .mbr-section-title,
.cid-uhtHQk7qQd .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtHQk7qQd .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhrX9n1RK8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhrX9n1RK8 img,
.cid-uhrX9n1RK8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhrX9n1RK8 .item:focus,
.cid-uhrX9n1RK8 span:focus {
  outline: none;
}
.cid-uhrX9n1RK8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uhrX9n1RK8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhrX9n1RK8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrX9n1RK8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhrX9n1RK8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhrX9n1RK8 .mbr-section-title {
  color: #ffffff;
}
.cid-uhrX9n1RK8 .mbr-text,
.cid-uhrX9n1RK8 .mbr-section-btn {
  text-align: center;
}
.cid-uhrX9n1RK8 .item-title {
  text-align: center;
}
.cid-uhrX9n1RK8 .item-subtitle {
  text-align: left;
}
.cid-ugN6xrJ9yR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-ugN6xrJ9yR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugN6xrJ9yR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugN6xrJ9yR .container {
    padding: 0 16px;
  }
}
.cid-ugN6xrJ9yR .row {
  margin: 0 -20px;
}
.cid-ugN6xrJ9yR .item {
  padding: 0 20px;
}
.cid-ugN6xrJ9yR .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugN6xrJ9yR .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uhrYnggixR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhrYnggixR img,
.cid-uhrYnggixR .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhrYnggixR .item:focus,
.cid-uhrYnggixR span:focus {
  outline: none;
}
.cid-uhrYnggixR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uhrYnggixR .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhrYnggixR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrYnggixR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhrYnggixR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhrYnggixR .mbr-section-title {
  color: #ffffff;
}
.cid-uhrYnggixR .mbr-text,
.cid-uhrYnggixR .mbr-section-btn {
  text-align: center;
}
.cid-uhrYnggixR .item-title {
  text-align: center;
}
.cid-uhrYnggixR .item-subtitle {
  text-align: left;
}
.cid-ugN471Sirs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-ugN471Sirs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugN471Sirs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugN471Sirs .container {
    padding: 0 16px;
  }
}
.cid-ugN471Sirs .row {
  margin: 0 -20px;
}
.cid-ugN471Sirs .item {
  padding: 0 20px;
}
.cid-ugN471Sirs .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugN471Sirs .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uhrZit3pkU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhrZit3pkU img,
.cid-uhrZit3pkU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhrZit3pkU .item:focus,
.cid-uhrZit3pkU span:focus {
  outline: none;
}
.cid-uhrZit3pkU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uhrZit3pkU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhrZit3pkU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrZit3pkU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhrZit3pkU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhrZit3pkU .mbr-section-title {
  color: #ffffff;
}
.cid-uhrZit3pkU .mbr-text,
.cid-uhrZit3pkU .mbr-section-btn {
  text-align: center;
}
.cid-uhrZit3pkU .item-title {
  text-align: center;
}
.cid-uhrZit3pkU .item-subtitle {
  text-align: left;
}
.cid-ugTOkcO6lZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-ugTOkcO6lZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugTOkcO6lZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugTOkcO6lZ .container {
    padding: 0 16px;
  }
}
.cid-ugTOkcO6lZ .row {
  margin: 0 -20px;
}
.cid-ugTOkcO6lZ .item {
  padding: 0 20px;
}
.cid-ugTOkcO6lZ .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugTOkcO6lZ .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-ugTNYEuE8w {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-ugTNYEuE8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugTNYEuE8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugTNYEuE8w .container {
    padding: 0 16px;
  }
}
.cid-ugTNYEuE8w .row {
  margin: 0 -20px;
}
.cid-ugTNYEuE8w .item {
  padding: 0 20px;
}
.cid-ugTNYEuE8w .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugTNYEuE8w .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uljAG6HNv1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uljAG6HNv1 img,
.cid-uljAG6HNv1 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uljAG6HNv1 .item:focus,
.cid-uljAG6HNv1 span:focus {
  outline: none;
}
.cid-uljAG6HNv1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uljAG6HNv1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uljAG6HNv1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uljAG6HNv1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uljAG6HNv1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uljAG6HNv1 .mbr-section-title {
  color: #ffffff;
}
.cid-uljAG6HNv1 .mbr-text,
.cid-uljAG6HNv1 .mbr-section-btn {
  text-align: center;
}
.cid-uljAG6HNv1 .item-title {
  text-align: center;
}
.cid-uljAG6HNv1 .item-subtitle {
  text-align: left;
}
.cid-uljBXxzAxk {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uljBXxzAxk img,
.cid-uljBXxzAxk .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uljBXxzAxk .item:focus,
.cid-uljBXxzAxk span:focus {
  outline: none;
}
.cid-uljBXxzAxk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uljBXxzAxk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uljBXxzAxk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uljBXxzAxk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uljBXxzAxk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uljBXxzAxk .mbr-section-title {
  color: #ffffff;
}
.cid-uljBXxzAxk .mbr-text,
.cid-uljBXxzAxk .mbr-section-btn {
  text-align: center;
}
.cid-uljBXxzAxk .item-title {
  text-align: center;
}
.cid-uljBXxzAxk .item-subtitle {
  text-align: left;
}
.cid-uhzb4pDIXn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhzb4pDIXn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhzb4pDIXn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhzb4pDIXn .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhzb4pDIXn .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhzb4pDIXn .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhzb4pDIXn .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhzb4pDIXn .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhzb4pDIXn .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhzb4pDIXn .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhzb4pDIXn .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhzb4pDIXn .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhzb4pDIXn .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhzb4pDIXn .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhzb4pDIXn .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhzb4pDIXn .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhzb4pDIXn .mbr-section-title {
  color: #ffffff;
}
.cid-uhzb4pDIXn .mbr-text,
.cid-uhzb4pDIXn .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhzb4pDIXn .mbr-section-title,
.cid-uhzb4pDIXn .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhzb4pDIXn .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugOd24hSlq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugOd24hSlq nav.navbar {
  position: fixed;
}
.cid-ugOd24hSlq .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-ugOd24hSlq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugOd24hSlq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugOd24hSlq .dropdown-item:hover,
.cid-ugOd24hSlq .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugOd24hSlq .dropdown-item:hover span {
  color: white;
}
.cid-ugOd24hSlq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugOd24hSlq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugOd24hSlq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugOd24hSlq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugOd24hSlq .nav-link {
  position: relative;
}
.cid-ugOd24hSlq .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugOd24hSlq .container {
    flex-wrap: wrap;
  }
}
.cid-ugOd24hSlq .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugOd24hSlq .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugOd24hSlq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugOd24hSlq .dropdown-menu,
.cid-ugOd24hSlq .navbar.opened {
  background: #000000 !important;
}
.cid-ugOd24hSlq .nav-item:focus,
.cid-ugOd24hSlq .nav-link:focus {
  outline: none;
}
.cid-ugOd24hSlq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugOd24hSlq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugOd24hSlq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugOd24hSlq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugOd24hSlq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugOd24hSlq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugOd24hSlq .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: #000000;
}
.cid-ugOd24hSlq .navbar.opened {
  transition: all 0.3s;
}
.cid-ugOd24hSlq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugOd24hSlq .navbar .navbar-logo img {
  width: auto;
}
.cid-ugOd24hSlq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugOd24hSlq .navbar.collapsed {
  justify-content: center;
}
.cid-ugOd24hSlq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugOd24hSlq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugOd24hSlq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugOd24hSlq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugOd24hSlq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugOd24hSlq .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-ugOd24hSlq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugOd24hSlq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugOd24hSlq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugOd24hSlq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugOd24hSlq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugOd24hSlq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugOd24hSlq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugOd24hSlq .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-ugOd24hSlq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugOd24hSlq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugOd24hSlq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugOd24hSlq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugOd24hSlq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugOd24hSlq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugOd24hSlq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugOd24hSlq .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugOd24hSlq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugOd24hSlq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugOd24hSlq .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-ugOd24hSlq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugOd24hSlq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugOd24hSlq .dropdown-item.active,
.cid-ugOd24hSlq .dropdown-item:active {
  background-color: transparent;
}
.cid-ugOd24hSlq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugOd24hSlq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugOd24hSlq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugOd24hSlq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugOd24hSlq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugOd24hSlq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugOd24hSlq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugOd24hSlq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugOd24hSlq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugOd24hSlq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugOd24hSlq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugOd24hSlq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugOd24hSlq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugOd24hSlq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugOd24hSlq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugOd24hSlq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugOd24hSlq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugOd24hSlq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugOd24hSlq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugOd24hSlq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugOd24hSlq .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-ugOd24hSlq .navbar {
    height: 70px;
  }
  .cid-ugOd24hSlq .navbar.opened {
    height: auto;
  }
  .cid-ugOd24hSlq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhyayICHHx {
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.cid-uhyayICHHx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyayICHHx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyayICHHx .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyayICHHx .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyayICHHx .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyayICHHx .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyayICHHx .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyayICHHx .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyayICHHx .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyayICHHx .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyayICHHx .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyayICHHx .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyayICHHx .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyayICHHx .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyayICHHx .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyayICHHx .mbr-section-title {
  color: #ffffff;
}
.cid-uhyayICHHx .mbr-text,
.cid-uhyayICHHx .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyayICHHx .mbr-section-title,
.cid-uhyayICHHx .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyayICHHx .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugOdAivuuU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugOdAivuuU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOdAivuuU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOdAivuuU .container {
    padding: 0 24px;
  }
}
.cid-ugOdAivuuU .row {
  justify-content: center;
}
.cid-ugOdAivuuU .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugOdAivuuU .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugOdAivuuU .content-wrapper {
    padding: 32px;
  }
}
.cid-ugOdAivuuU .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugOdAivuuU .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugOdAivuuU .mbr-section-title {
  color: #000000;
}
.cid-ugOdAivuuU .mbr-text {
  color: #262642;
}
.cid-uhskB4X5NY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhskB4X5NY .mbr-overlay {
  z-index: 1;
}
.cid-uhskB4X5NY .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uhskB4X5NY .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uhskB4X5NY .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-uhskB4X5NY .item-title {
  width: 100%;
  color: #111111;
}
.cid-uhskB4X5NY .mbr-text {
  color: #555555;
}
.cid-uhskB4X5NY .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-uhskB4X5NY .card-container {
  display: flex;
}
.cid-uhskB4X5NY .card-container .card {
  border-radius: 0;
}
.cid-uhskB4X5NY .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhskB4X5NY .card-container .card .item-img {
    height: 400px;
  }
}
.cid-uhskB4X5NY .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-uhskB4X5NY .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-uhWkmZoLFS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhWkmZoLFS .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-uhWkmZoLFS .card-box {
  z-index: 2;
  position: relative;
}
.cid-uhWkmZoLFS .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #000000;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-uhWkmZoLFS .mbr-iconfont-big {
  font-size: 16rem;
  color: #000000;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-uhWkmZoLFS .card-title,
.cid-uhWkmZoLFS .card-text,
.cid-uhWkmZoLFS .card-number {
  transition: all 0.3s;
}
.cid-uhWkmZoLFS .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #f2f2f2;
  transition: all 0.3s;
}
.cid-uhWkmZoLFS .card-wrapper:hover {
  background: #000000;
}
.cid-uhWkmZoLFS .card-wrapper:hover .mbr-iconfont-big {
  color: #808080;
  transform: rotate(-20deg);
}
.cid-uhWkmZoLFS .card-wrapper:hover .card-title,
.cid-uhWkmZoLFS .card-wrapper:hover .card-text,
.cid-uhWkmZoLFS .card-wrapper:hover .card-number {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uhWkmZoLFS .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uhWkmZoLFS .card-title,
.cid-uhWkmZoLFS .iconfont-wrapper {
  color: #160830;
}
.cid-uhWkmZoLFS .card-text {
  color: #353535;
}
.cid-uhWkmZoLFS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWkmZoLFS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhslbhCbAy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhslbhCbAy img,
.cid-uhslbhCbAy .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhslbhCbAy .item:focus,
.cid-uhslbhCbAy span:focus {
  outline: none;
}
.cid-uhslbhCbAy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uhslbhCbAy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhslbhCbAy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhslbhCbAy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhslbhCbAy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhslbhCbAy .mbr-section-title {
  color: #ffffff;
}
.cid-uhslbhCbAy .mbr-text,
.cid-uhslbhCbAy .mbr-section-btn {
  text-align: center;
}
.cid-uhslbhCbAy .item-title {
  text-align: center;
}
.cid-uhslbhCbAy .item-subtitle {
  text-align: left;
}
.cid-ugOd20Npwz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-ugOd20Npwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOd20Npwz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOd20Npwz .container {
    padding: 0 16px;
  }
}
.cid-ugOd20Npwz .row {
  margin: 0 -20px;
}
.cid-ugOd20Npwz .item {
  padding: 0 20px;
}
.cid-ugOd20Npwz .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugOd20Npwz .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uhskUkhmSe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhskUkhmSe img,
.cid-uhskUkhmSe .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhskUkhmSe .item:focus,
.cid-uhskUkhmSe span:focus {
  outline: none;
}
.cid-uhskUkhmSe .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uhskUkhmSe .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhskUkhmSe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhskUkhmSe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhskUkhmSe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhskUkhmSe .mbr-section-title {
  color: #ffffff;
}
.cid-uhskUkhmSe .mbr-text,
.cid-uhskUkhmSe .mbr-section-btn {
  text-align: center;
}
.cid-uhskUkhmSe .item-title {
  text-align: center;
}
.cid-uhskUkhmSe .item-subtitle {
  text-align: left;
}
.cid-ugOd222ko7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-ugOd222ko7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOd222ko7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOd222ko7 .container {
    padding: 0 16px;
  }
}
.cid-ugOd222ko7 .row {
  margin: 0 -20px;
}
.cid-ugOd222ko7 .item {
  padding: 0 20px;
}
.cid-ugOd222ko7 .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ugOd222ko7 .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uhslgRTovW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhslgRTovW img,
.cid-uhslgRTovW .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhslgRTovW .item:focus,
.cid-uhslgRTovW span:focus {
  outline: none;
}
.cid-uhslgRTovW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uhslgRTovW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhslgRTovW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhslgRTovW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhslgRTovW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhslgRTovW .mbr-section-title {
  color: #ffffff;
}
.cid-uhslgRTovW .mbr-text,
.cid-uhslgRTovW .mbr-section-btn {
  text-align: center;
}
.cid-uhslgRTovW .item-title {
  text-align: center;
}
.cid-uhslgRTovW .item-subtitle {
  text-align: left;
}
.cid-uh06dyeD1M {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-uh06dyeD1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh06dyeD1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uh06dyeD1M .container {
    padding: 0 16px;
  }
}
.cid-uh06dyeD1M .row {
  margin: 0 -20px;
}
.cid-uh06dyeD1M .item {
  padding: 0 20px;
}
.cid-uh06dyeD1M .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uh06dyeD1M .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uhyaDDjSv2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyaDDjSv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyaDDjSv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyaDDjSv2 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyaDDjSv2 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyaDDjSv2 .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyaDDjSv2 .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyaDDjSv2 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyaDDjSv2 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyaDDjSv2 .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyaDDjSv2 .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyaDDjSv2 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyaDDjSv2 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyaDDjSv2 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyaDDjSv2 .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyaDDjSv2 .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyaDDjSv2 .mbr-section-title {
  color: #ffffff;
}
.cid-uhyaDDjSv2 .mbr-text,
.cid-uhyaDDjSv2 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyaDDjSv2 .mbr-section-title,
.cid-uhyaDDjSv2 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyaDDjSv2 .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugOd23qxI3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugOd23qxI3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOd23qxI3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOd23qxI3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugOd23qxI3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugOd23qxI3 .row {
    text-align: center;
  }
  .cid-ugOd23qxI3 .social-row {
    justify-content: center;
  }
}
.cid-ugOd23qxI3 .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugOd23qxI3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugOd23qxI3 .list {
    margin-bottom: 0rem;
  }
}
.cid-ugOd23qxI3 .mbr-text {
  color: #ffffff;
}
.cid-ugOd23qxI3 .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upbGL2xQjB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upbGL2xQjB .mbr-overlay {
  z-index: 1;
}
.cid-upbGL2xQjB .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-upbGL2xQjB .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-upbGL2xQjB .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-upbGL2xQjB .item-title {
  width: 100%;
  color: #111111;
}
.cid-upbGL2xQjB .mbr-text {
  color: #555555;
}
.cid-upbGL2xQjB .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-upbGL2xQjB .card-container {
  display: flex;
}
.cid-upbGL2xQjB .card-container .card {
  border-radius: 0;
}
.cid-upbGL2xQjB .card-container .card .item-img {
  height: 750px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-upbGL2xQjB .card-container .card .item-img {
    height: 700px;
  }
}
.cid-upbGL2xQjB .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 750px;
}
@media (max-width: 767px) {
  .cid-upbGL2xQjB .card-container .card .item-img img {
    height: 700px;
  }
}
.cid-ugOyzc5VqI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-ugOyzc5VqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOyzc5VqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugOyzc5VqI .container {
    padding: 0 24px;
  }
}
.cid-ugOyzc5VqI .row {
  justify-content: center;
}
.cid-ugOyzc5VqI .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ugOyzc5VqI .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ugOyzc5VqI .content-wrapper {
    padding: 32px;
  }
}
.cid-ugOyzc5VqI .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugOyzc5VqI .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ugOyzc5VqI .mbr-section-title {
  color: #000000;
}
.cid-ugOyzc5VqI .mbr-text {
  color: #000000;
}
.cid-uhncjx2ZI6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uk0yRM2Joc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fcfcfc;
}
.cid-uk0yRM2Joc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0yRM2Joc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0yRM2Joc .row {
  justify-content: center;
}
.cid-uk0yRM2Joc .video-block {
  margin-bottom: 20px;
}
.cid-uk0yRM2Joc .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-uk0yRM2Joc .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-uk0yRM2Joc .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-uk0yRM2Joc .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uk0yRM2Joc .mbr-section-title {
  color: #E0BDB6;
}
.cid-uk0yRM2Joc .mbr-date {
  color: #747474;
}
.cid-uk0yRM2Joc .mbr-text {
  color: #747474;
}
.cid-uh57Xi3qRq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uh57Xi3qRq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh57Xi3qRq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uh57Xi3qRq .container {
    padding: 0 24px;
  }
}
.cid-uh57Xi3qRq .row {
  justify-content: center;
}
.cid-uh57Xi3qRq .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uh57Xi3qRq .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uh57Xi3qRq .content-wrapper {
    padding: 32px;
  }
}
.cid-uh57Xi3qRq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uh57Xi3qRq .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uh57Xi3qRq .mbr-section-title {
  color: #910909;
}
.cid-uh57Xi3qRq .mbr-text {
  color: #262642;
}
.cid-uh59k6pPBA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uh59k6pPBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh59k6pPBA .item-wrapper {
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-uh59k6pPBA .item-wrapper {
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.cid-uh59k6pPBA .item-wrapper:hover {
  background: #bbbbbb;
  transform: translateY(-5px);
}
.cid-uh59k6pPBA .item-wrapper:hover .card-title,
.cid-uh59k6pPBA .item-wrapper:hover .card-text,
.cid-uh59k6pPBA .item-wrapper:hover .card-link,
.cid-uh59k6pPBA .item-wrapper:hover .card-link a {
  color: white !important;
}
.cid-uh59k6pPBA .item-wrapper:hover span {
  color: #910909;
}
.cid-uh59k6pPBA .card-title,
.cid-uh59k6pPBA .card-text,
.cid-uh59k6pPBA .card-link,
.cid-uh59k6pPBA .card-link a {
  transition: all 0.3s;
}
.cid-uh59k6pPBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uh59k6pPBA .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uh59k6pPBA .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-uh59k6pPBA .link-wrapper:hover {
  cursor: pointer;
}
.cid-uh59k6pPBA .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #bbbbbb;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uh59k6pPBA .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-uh59k6pPBA .card-title,
.cid-uh59k6pPBA .iconfont-wrapper {
  color: #000000;
}
.cid-uh59k6pPBA .card-text {
  color: #232323;
}
.cid-uh59k6pPBA .content-head {
  max-width: 800px;
}
.cid-uh59k6pPBA .mbr-section-title {
  color: #000000;
}
.cid-uh59k6pPBA .card-link,
.cid-uh59k6pPBA .link-icon,
.cid-uh59k6pPBA .link-align {
  color: #232323;
}
.cid-uhz7WgNYej {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhz7WgNYej .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhz7WgNYej .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhz7WgNYej .item {
  padding-bottom: 2rem;
}
.cid-uhz7WgNYej .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uhz7WgNYej .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uhz7WgNYej .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-uhz7WgNYej .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uhz7WgNYej .carousel-control,
.cid-uhz7WgNYej .close {
  background: #1b1b1b;
}
.cid-uhz7WgNYej .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uhz7WgNYej .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uhz7WgNYej .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uhz7WgNYej .carousel-control-next span {
  margin-left: 5px;
}
.cid-uhz7WgNYej .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-uhz7WgNYej .close::before {
  content: '\e91a';
}
.cid-uhz7WgNYej .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uhz7WgNYej .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-uhz7WgNYej .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhz7WgNYej .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhz7WgNYej .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uhz7WgNYej .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uhz7WgNYej .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-uhz7WgNYej .carousel-indicators li.active,
.cid-uhz7WgNYej .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uhz7WgNYej .carousel-indicators li::after,
.cid-uhz7WgNYej .carousel-indicators li::before {
  content: none;
}
.cid-uhz7WgNYej .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhz7WgNYej .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uhz7WgNYej .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uhz7WgNYej .carousel-indicators {
    display: none;
  }
}
.cid-uhz7WgNYej .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uhz7WgNYej .carousel-inner > .active {
  display: block;
}
.cid-uhz7WgNYej .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhz7WgNYej .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uhz7WgNYej .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uhz7WgNYej .carousel-control,
  .cid-uhz7WgNYej .carousel-indicators,
  .cid-uhz7WgNYej .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uhz7WgNYej .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uhz7WgNYej .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uhz7WgNYej .carousel-indicators .active,
.cid-uhz7WgNYej .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uhz7WgNYej .carousel-indicators .active {
  background: #fff;
}
.cid-uhz7WgNYej .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uhz7WgNYej .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uhz7WgNYej .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uhz7WgNYej .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uhz7WgNYej .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uhz7WgNYej .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uhz7WgNYej .carousel {
  width: 100%;
}
.cid-uhz7WgNYej .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uhz7WgNYej .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uhz7WgNYej .modal.fade .modal-dialog,
.cid-uhz7WgNYej .modal.in .modal-dialog {
  transform: none;
}
.cid-uhz7WgNYej .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uhz7WgNYej H6 {
  text-align: center;
}
.cid-uh5e23AV8X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uh5e23AV8X img,
.cid-uh5e23AV8X .item-img {
  width: 100%;
}
.cid-uh5e23AV8X .item:focus,
.cid-uh5e23AV8X span:focus {
  outline: none;
}
.cid-uh5e23AV8X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uh5e23AV8X .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uh5e23AV8X .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uh5e23AV8X .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uh5e23AV8X .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uh5e23AV8X .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uh5e23AV8X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uh5e23AV8X .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uh5e23AV8X .mbr-text,
.cid-uh5e23AV8X .mbr-section-btn {
  text-align: left;
}
.cid-uh5e23AV8X .item-title {
  text-align: left;
  color: #000000;
}
.cid-uh5e23AV8X .item-subtitle {
  text-align: left;
}
.cid-um5Qrb3y7W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um5Qrb3y7W .mbr-overlay {
  z-index: 1;
}
.cid-um5Qrb3y7W .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-um5Qrb3y7W .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-um5Qrb3y7W .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-um5Qrb3y7W .item-title {
  width: 100%;
  color: #111111;
}
.cid-um5Qrb3y7W .mbr-text {
  color: #555555;
}
.cid-um5Qrb3y7W .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-um5Qrb3y7W .card-container {
  display: flex;
}
.cid-um5Qrb3y7W .card-container .card {
  border-radius: 0;
}
.cid-um5Qrb3y7W .card-container .card .item-img {
  height: 750px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-um5Qrb3y7W .card-container .card .item-img {
    height: 700px;
  }
}
.cid-um5Qrb3y7W .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 750px;
}
@media (max-width: 767px) {
  .cid-um5Qrb3y7W .card-container .card .item-img img {
    height: 700px;
  }
}
.cid-uhn9TX3shZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhn9TX3shZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhn9TX3shZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhn9TX3shZ .container {
    padding: 0 24px;
  }
}
.cid-uhn9TX3shZ .row {
  justify-content: center;
}
.cid-uhn9TX3shZ .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uhn9TX3shZ .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uhn9TX3shZ .content-wrapper {
    padding: 32px;
  }
}
.cid-uhn9TX3shZ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhn9TX3shZ .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uhn9TX3shZ .mbr-section-title {
  color: #000000;
}
.cid-uhn9TX3shZ .mbr-text {
  color: #000000;
}
.cid-uh57oyxLBc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uh57oyxLBc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh57oyxLBc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uh57oyxLBc .container {
    padding: 0 16px;
  }
}
.cid-uh57oyxLBc .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uh57oyxLBc .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uh57oyxLBc .content-wrapper {
  margin-bottom: 80px;
}
.cid-uh57oyxLBc .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uh57oyxLBc .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uh57oyxLBc .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uh57oyxLBc .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uh57oyxLBc .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-uh57oyxLBc .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uh57oyxLBc .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uh57oyxLBc .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uh57oyxLBc .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uh57oyxLBc .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-uh57oyxLBc .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uh57oyxLBc .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-uh57oyxLBc .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uh57oyxLBc .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-uh57oyxLBc .mbr-section-title {
  color: #000000;
}
.cid-uh57oyxLBc .mbr-text,
.cid-uh57oyxLBc .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-uh57oyxLBc .item-title {
  color: #000000;
}
.cid-uh57oyxLBc .item-text {
  color: #6f6f6f;
}
.cid-uh57oyxLBc .mbr-section-title,
.cid-uh57oyxLBc .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-upbGYuVK6f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upbGYuVK6f .mbr-overlay {
  z-index: 1;
}
.cid-upbGYuVK6f .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-upbGYuVK6f .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-upbGYuVK6f .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-upbGYuVK6f .item-title {
  width: 100%;
  color: #111111;
}
.cid-upbGYuVK6f .mbr-text {
  color: #555555;
}
.cid-upbGYuVK6f .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-upbGYuVK6f .card-container {
  display: flex;
}
.cid-upbGYuVK6f .card-container .card {
  border-radius: 0;
}
.cid-upbGYuVK6f .card-container .card .item-img {
  height: 650px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-upbGYuVK6f .card-container .card .item-img {
    height: 600px;
  }
}
.cid-upbGYuVK6f .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .cid-upbGYuVK6f .card-container .card .item-img img {
    height: 600px;
  }
}
.cid-upbyqJknY1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-upbyqJknY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upbyqJknY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-upbyqJknY1 .container {
    padding: 0 24px;
  }
}
.cid-upbyqJknY1 .row {
  justify-content: center;
}
.cid-upbyqJknY1 .content-wrapper {
  border-radius: 40px;
  background-color: #f2f2f2;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-upbyqJknY1 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-upbyqJknY1 .content-wrapper {
    padding: 32px;
  }
}
.cid-upbyqJknY1 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upbyqJknY1 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-upbyqJknY1 .mbr-section-title {
  color: #000000;
}
.cid-upbyqJknY1 .mbr-text {
  color: #000000;
}
.cid-upbyf9zFs0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-upbyf9zFs0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upbyf9zFs0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upbyf9zFs0 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #910909;
  margin-bottom: 2rem;
}
.cid-upbyf9zFs0 .item-wrapper {
  min-height: 100px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-urgsYf150Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-urgsYf150Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgsYf150Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgsYf150Z .item {
  padding-bottom: 2rem;
}
.cid-urgsYf150Z .item-wrapper {
  position: relative;
}
.cid-urgsYf150Z .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-urgsYf150Z .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urgsYf150Z .carousel-control,
.cid-urgsYf150Z .close {
  background: #1b1b1b;
}
.cid-urgsYf150Z .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urgsYf150Z .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urgsYf150Z .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urgsYf150Z .carousel-control-next span {
  margin-left: 5px;
}
.cid-urgsYf150Z .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-urgsYf150Z .close::before {
  content: '\e91a';
}
.cid-urgsYf150Z .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urgsYf150Z .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-urgsYf150Z .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urgsYf150Z .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urgsYf150Z .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urgsYf150Z .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urgsYf150Z .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-urgsYf150Z .carousel-indicators li.active,
.cid-urgsYf150Z .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urgsYf150Z .carousel-indicators li::after,
.cid-urgsYf150Z .carousel-indicators li::before {
  content: none;
}
.cid-urgsYf150Z .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urgsYf150Z .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urgsYf150Z .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urgsYf150Z .carousel-indicators {
    display: none;
  }
}
.cid-urgsYf150Z .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urgsYf150Z .carousel-inner > .active {
  display: block;
}
.cid-urgsYf150Z .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urgsYf150Z .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urgsYf150Z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urgsYf150Z .carousel-control,
  .cid-urgsYf150Z .carousel-indicators,
  .cid-urgsYf150Z .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urgsYf150Z .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urgsYf150Z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urgsYf150Z .carousel-indicators .active,
.cid-urgsYf150Z .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urgsYf150Z .carousel-indicators .active {
  background: #fff;
}
.cid-urgsYf150Z .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urgsYf150Z .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urgsYf150Z .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urgsYf150Z .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urgsYf150Z .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urgsYf150Z .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urgsYf150Z .carousel {
  width: 100%;
}
.cid-urgsYf150Z .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urgsYf150Z .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urgsYf150Z .modal.fade .modal-dialog,
.cid-urgsYf150Z .modal.in .modal-dialog {
  transform: none;
}
.cid-urgsYf150Z .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urgsYf150Z H6 {
  text-align: center;
}
.cid-upiMostAzY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upiMostAzY .mbr-overlay {
  z-index: 1;
}
.cid-upiMostAzY .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-upiMostAzY .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-upiMostAzY .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-upiMostAzY .item-title {
  width: 100%;
  color: #111111;
}
.cid-upiMostAzY .mbr-text {
  color: #555555;
}
.cid-upiMostAzY .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-upiMostAzY .card-container {
  display: flex;
}
.cid-upiMostAzY .card-container .card {
  border-radius: 0;
}
.cid-upiMostAzY .card-container .card .item-img {
  height: 750px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-upiMostAzY .card-container .card .item-img {
    height: 700px;
  }
}
.cid-upiMostAzY .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 750px;
}
@media (max-width: 767px) {
  .cid-upiMostAzY .card-container .card .item-img img {
    height: 700px;
  }
}
.cid-uh5eXfDxxa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uh5eXfDxxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh5eXfDxxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uh5eXfDxxa .container {
    padding: 0 16px;
  }
}
.cid-uh5eXfDxxa .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uh5eXfDxxa .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uh5eXfDxxa .content-wrapper {
  margin-bottom: 80px;
}
.cid-uh5eXfDxxa .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uh5eXfDxxa .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uh5eXfDxxa .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uh5eXfDxxa .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uh5eXfDxxa .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-uh5eXfDxxa .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uh5eXfDxxa .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uh5eXfDxxa .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uh5eXfDxxa .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uh5eXfDxxa .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-uh5eXfDxxa .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uh5eXfDxxa .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-uh5eXfDxxa .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uh5eXfDxxa .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-uh5eXfDxxa .mbr-section-title {
  color: #000000;
}
.cid-uh5eXfDxxa .mbr-text,
.cid-uh5eXfDxxa .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-uh5eXfDxxa .item-title {
  color: #000000;
}
.cid-uh5eXfDxxa .item-text {
  color: #6f6f6f;
}
.cid-uh5eXfDxxa .mbr-section-title,
.cid-uh5eXfDxxa .mbr-section-btn {
  text-align: center;
  color: #910909;
}
.cid-ugOyKRBLef {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugOyKRBLef .mbr-overlay {
  z-index: 1;
}
.cid-ugOyKRBLef .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ugOyKRBLef .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ugOyKRBLef .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-ugOyKRBLef .item-title {
  width: 100%;
  color: #111111;
}
.cid-ugOyKRBLef .mbr-text {
  color: #555555;
}
.cid-ugOyKRBLef .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-ugOyKRBLef .card-container {
  display: flex;
}
.cid-ugOyKRBLef .card-container .card {
  border-radius: 0;
}
.cid-ugOyKRBLef .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ugOyKRBLef .card-container .card .item-img {
    height: 400px;
  }
}
.cid-ugOyKRBLef .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-ugOyKRBLef .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ui1u9gHweX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui1u9gHweX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1u9gHweX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1u9gHweX .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ui1u9gHweX .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui1u9gHweX .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui1u9gHweX .card-wrapper {
    padding: 4rem;
  }
}
.cid-ui1u9gHweX .mbr-text,
.cid-ui1u9gHweX .mbr-section-btn {
  color: #ffffff;
}
.cid-ui1u9gHweX .card-title,
.cid-ui1u9gHweX .card-box {
  text-align: center;
}
.cid-uh5ogD2HmV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uh5ogD2HmV .mbr-overlay {
  z-index: 1;
}
.cid-uh5ogD2HmV .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uh5ogD2HmV .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uh5ogD2HmV .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-uh5ogD2HmV .item-title {
  width: 100%;
  color: #111111;
}
.cid-uh5ogD2HmV .mbr-text {
  color: #555555;
}
.cid-uh5ogD2HmV .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-uh5ogD2HmV .card-container {
  display: flex;
}
.cid-uh5ogD2HmV .card-container .card {
  border-radius: 0;
}
.cid-uh5ogD2HmV .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uh5ogD2HmV .card-container .card .item-img {
    height: 400px;
  }
}
.cid-uh5ogD2HmV .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-uh5ogD2HmV .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhnQthnNwO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uhnQthnNwO img,
.cid-uhnQthnNwO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uhnQthnNwO .item:focus,
.cid-uhnQthnNwO span:focus {
  outline: none;
}
.cid-uhnQthnNwO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uhnQthnNwO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhnQthnNwO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uhnQthnNwO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhnQthnNwO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uhnQthnNwO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uhnQthnNwO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhnQthnNwO .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uhnQthnNwO .mbr-text,
.cid-uhnQthnNwO .mbr-section-btn {
  text-align: left;
}
.cid-uhnQthnNwO .item-title {
  text-align: left;
}
.cid-uhnQthnNwO .item-subtitle {
  text-align: left;
}
.cid-uhn7VYKzHm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhn7VYKzHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhn7VYKzHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhn7VYKzHm .content-wrapper {
  background: #f2f2f2;
}
@media (max-width: 991px) {
  .cid-uhn7VYKzHm .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uhn7VYKzHm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhn7VYKzHm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uhn7VYKzHm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhn7VYKzHm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uhn7VYKzHm .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uhn7VYKzHm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uhzaPndrsR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhzaPndrsR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhzaPndrsR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhzaPndrsR .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhzaPndrsR .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhzaPndrsR .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhzaPndrsR .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhzaPndrsR .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhzaPndrsR .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhzaPndrsR .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhzaPndrsR .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhzaPndrsR .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhzaPndrsR .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhzaPndrsR .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhzaPndrsR .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhzaPndrsR .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhzaPndrsR .mbr-section-title {
  color: #ffffff;
}
.cid-uhzaPndrsR .mbr-text,
.cid-uhzaPndrsR .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhzaPndrsR .mbr-section-title,
.cid-uhzaPndrsR .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhzaPndrsR .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhrCZXPbmb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhrCZXPbmb .mbr-overlay {
  z-index: 1;
}
.cid-uhrCZXPbmb .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uhrCZXPbmb .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uhrCZXPbmb .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-uhrCZXPbmb .item-title {
  width: 100%;
  color: #111111;
}
.cid-uhrCZXPbmb .mbr-text {
  color: #555555;
}
.cid-uhrCZXPbmb .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-uhrCZXPbmb .card-container {
  display: flex;
}
.cid-uhrCZXPbmb .card-container .card {
  border-radius: 0;
}
.cid-uhrCZXPbmb .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhrCZXPbmb .card-container .card .item-img {
    height: 400px;
  }
}
.cid-uhrCZXPbmb .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-uhrCZXPbmb .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-uhrJgCP57b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhrJgCP57b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrJgCP57b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhrJgCP57b .container {
    padding: 0 24px;
  }
}
.cid-uhrJgCP57b .row {
  justify-content: center;
}
.cid-uhrJgCP57b .content-wrapper {
  border-radius: 40px;
  background-color: #ffffff;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uhrJgCP57b .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uhrJgCP57b .content-wrapper {
    padding: 32px;
  }
}
.cid-uhrJgCP57b .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhrJgCP57b .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uhrJgCP57b .mbr-section-title {
  color: #000000;
}
.cid-uhrJgCP57b .mbr-text {
  color: #000000;
}
.cid-uhrDfD7fHa {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uhrDfD7fHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDfD7fHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uhrDfD7fHa .container {
    padding: 0 16px;
  }
}
.cid-uhrDfD7fHa .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uhrDfD7fHa .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uhrDfD7fHa .content-wrapper {
  margin-bottom: 80px;
}
.cid-uhrDfD7fHa .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uhrDfD7fHa .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uhrDfD7fHa .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uhrDfD7fHa .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhrDfD7fHa .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-uhrDfD7fHa .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uhrDfD7fHa .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uhrDfD7fHa .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uhrDfD7fHa .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhrDfD7fHa .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-uhrDfD7fHa .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uhrDfD7fHa .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #910909;
}
.cid-uhrDfD7fHa .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uhrDfD7fHa .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-uhrDfD7fHa .mbr-section-title {
  color: #000000;
}
.cid-uhrDfD7fHa .mbr-text,
.cid-uhrDfD7fHa .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-uhrDfD7fHa .item-title {
  color: #000000;
}
.cid-uhrDfD7fHa .item-text {
  color: #6f6f6f;
}
.cid-uhrDfD7fHa .mbr-section-title,
.cid-uhrDfD7fHa .mbr-section-btn {
  text-align: center;
  color: #910909;
}
.cid-uhtHt3GdJV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhtHt3GdJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhtHt3GdJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhtHt3GdJV .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHt3GdJV .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhtHt3GdJV .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhtHt3GdJV .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhtHt3GdJV .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhtHt3GdJV .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhtHt3GdJV .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhtHt3GdJV .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhtHt3GdJV .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhtHt3GdJV .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhtHt3GdJV .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhtHt3GdJV .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhtHt3GdJV .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhtHt3GdJV .mbr-section-title {
  color: #ffffff;
}
.cid-uhtHt3GdJV .mbr-text,
.cid-uhtHt3GdJV .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhtHt3GdJV .mbr-section-title,
.cid-uhtHt3GdJV .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhtHt3GdJV .content-wrapper {
    min-height: 360px;
  }
}
.cid-uhrDu7eJjg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uhrDu7eJjg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDu7eJjg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDu7eJjg .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #910909;
  margin-left: 1rem;
}
.cid-uhrDu7eJjg .panel-group {
  border: none;
}
.cid-uhrDu7eJjg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhrDu7eJjg .panel-body,
.cid-uhrDu7eJjg .card-header {
  padding: 1rem 0;
}
.cid-uhrDu7eJjg .panel-title-edit {
  color: #000000;
}
.cid-uhrDu7eJjg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uhrDu7eJjg H3 {
  text-align: left;
}
.cid-uhWy8EIF9l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhWy8EIF9l .mbr-overlay {
  z-index: 1;
}
.cid-uhWy8EIF9l .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uhWy8EIF9l .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uhWy8EIF9l .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-uhWy8EIF9l .item-title {
  width: 100%;
  color: #111111;
}
.cid-uhWy8EIF9l .mbr-text {
  color: #555555;
}
.cid-uhWy8EIF9l .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-uhWy8EIF9l .card-container {
  display: flex;
}
.cid-uhWy8EIF9l .card-container .card {
  border-radius: 0;
}
.cid-uhWy8EIF9l .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhWy8EIF9l .card-container .card .item-img {
    height: 400px;
  }
}
.cid-uhWy8EIF9l .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-uhWy8EIF9l .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ui16KfBLZE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui16KfBLZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui16KfBLZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui16KfBLZE .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ui16KfBLZE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui16KfBLZE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui16KfBLZE .card-wrapper {
    padding: 4rem;
  }
}
.cid-ui16KfBLZE .mbr-text,
.cid-ui16KfBLZE .mbr-section-btn {
  color: #ffffff;
}
.cid-ui16KfBLZE .card-title,
.cid-ui16KfBLZE .card-box {
  text-align: center;
}
.cid-uhyPkpCx9D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uhyPkpCx9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhyPkpCx9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uhyPkpCx9D .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyPkpCx9D .container-fluid {
    padding: 0 20px;
  }
}
.cid-uhyPkpCx9D .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uhyPkpCx9D .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uhyPkpCx9D .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uhyPkpCx9D .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uhyPkpCx9D .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uhyPkpCx9D .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uhyPkpCx9D .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhyPkpCx9D .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhyPkpCx9D .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uhyPkpCx9D .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uhyPkpCx9D .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uhyPkpCx9D .mbr-section-title {
  color: #ffffff;
}
.cid-uhyPkpCx9D .mbr-text,
.cid-uhyPkpCx9D .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uhyPkpCx9D .mbr-section-title,
.cid-uhyPkpCx9D .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhyPkpCx9D .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhVbkHkKGO {
  overflow: hidden;
  background-image: url("../../../assets/images/2024-08-19-flyfsx-photosession-11-1-1920x1080.jpg");
}
.cid-uhVbkHkKGO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhVbkHkKGO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhVbkHkKGO .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uhVbkHkKGO .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhVbkHkKGO .container {
    padding: 0 24px;
  }
}
.cid-uhVbkHkKGO .card-wrapper .card-wrap {
  display: inline-flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 42px 48px 48px;
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-uhVbkHkKGO .card-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .cid-uhVbkHkKGO .card-wrapper .card-wrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uhVbkHkKGO .card-wrapper .card-wrap {
    padding: 20px;
    width: 100%;
  }
}
.cid-uhVbkHkKGO .card-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uhVbkHkKGO .card-wrapper .card-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uhVbkHkKGO .card-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uhVbkHkKGO .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uhVbkHkKGO .card-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-uhVbkHkKGO .mbr-desc {
  color: #202020;
}
.cid-uhVbkHkKGO .mbr-section-title {
  color: #202020;
}
.cid-uhVbkHkKGO .mbr-text {
  color: #202020;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWH5U76QE {
  overflow: hidden;
  background-image: url("../../../assets/images/airport-1-1920x1080.png");
}
.cid-uhWH5U76QE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhWH5U76QE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhWH5U76QE .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uhWH5U76QE .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhWH5U76QE .container {
    padding: 0 24px;
  }
}
.cid-uhWH5U76QE .card-wrapper .card-wrap {
  display: inline-flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 42px 48px 48px;
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-uhWH5U76QE .card-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .cid-uhWH5U76QE .card-wrapper .card-wrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uhWH5U76QE .card-wrapper .card-wrap {
    padding: 20px;
    width: 100%;
  }
}
.cid-uhWH5U76QE .card-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uhWH5U76QE .card-wrapper .card-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uhWH5U76QE .card-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uhWH5U76QE .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uhWH5U76QE .card-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-uhWH5U76QE .mbr-desc {
  color: #202020;
}
.cid-uhWH5U76QE .mbr-section-title {
  color: #202020;
}
.cid-uhWH5U76QE .mbr-text {
  color: #202020;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uofbDzNjFE {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uofbDzNjFE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uofbDzNjFE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uofbDzNjFE .item {
  padding-bottom: 2rem;
}
.cid-uofbDzNjFE .item-wrapper {
  position: relative;
}
.cid-uofbDzNjFE .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-uofbDzNjFE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uofbDzNjFE .carousel-control,
.cid-uofbDzNjFE .close {
  background: #1b1b1b;
}
.cid-uofbDzNjFE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uofbDzNjFE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uofbDzNjFE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uofbDzNjFE .carousel-control-next span {
  margin-left: 5px;
}
.cid-uofbDzNjFE .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-uofbDzNjFE .close::before {
  content: '\e91a';
}
.cid-uofbDzNjFE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uofbDzNjFE .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-uofbDzNjFE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uofbDzNjFE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uofbDzNjFE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uofbDzNjFE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uofbDzNjFE .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-uofbDzNjFE .carousel-indicators li.active,
.cid-uofbDzNjFE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uofbDzNjFE .carousel-indicators li::after,
.cid-uofbDzNjFE .carousel-indicators li::before {
  content: none;
}
.cid-uofbDzNjFE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uofbDzNjFE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uofbDzNjFE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uofbDzNjFE .carousel-indicators {
    display: none;
  }
}
.cid-uofbDzNjFE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uofbDzNjFE .carousel-inner > .active {
  display: block;
}
.cid-uofbDzNjFE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uofbDzNjFE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uofbDzNjFE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uofbDzNjFE .carousel-control,
  .cid-uofbDzNjFE .carousel-indicators,
  .cid-uofbDzNjFE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uofbDzNjFE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uofbDzNjFE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uofbDzNjFE .carousel-indicators .active,
.cid-uofbDzNjFE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uofbDzNjFE .carousel-indicators .active {
  background: #fff;
}
.cid-uofbDzNjFE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uofbDzNjFE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uofbDzNjFE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uofbDzNjFE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uofbDzNjFE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uofbDzNjFE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uofbDzNjFE .carousel {
  width: 100%;
}
.cid-uofbDzNjFE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uofbDzNjFE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uofbDzNjFE .modal.fade .modal-dialog,
.cid-uofbDzNjFE .modal.in .modal-dialog {
  transform: none;
}
.cid-uofbDzNjFE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uofbDzNjFE H6 {
  text-align: center;
}
.cid-uoagPQnVVU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoagPQnVVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoagPQnVVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoagPQnVVU .item {
  padding-bottom: 2rem;
}
.cid-uoagPQnVVU .item-wrapper {
  position: relative;
}
.cid-uoagPQnVVU .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-uoagPQnVVU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uoagPQnVVU .carousel-control,
.cid-uoagPQnVVU .close {
  background: #1b1b1b;
}
.cid-uoagPQnVVU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uoagPQnVVU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uoagPQnVVU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uoagPQnVVU .carousel-control-next span {
  margin-left: 5px;
}
.cid-uoagPQnVVU .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-uoagPQnVVU .close::before {
  content: '\e91a';
}
.cid-uoagPQnVVU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uoagPQnVVU .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-uoagPQnVVU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uoagPQnVVU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uoagPQnVVU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uoagPQnVVU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uoagPQnVVU .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-uoagPQnVVU .carousel-indicators li.active,
.cid-uoagPQnVVU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uoagPQnVVU .carousel-indicators li::after,
.cid-uoagPQnVVU .carousel-indicators li::before {
  content: none;
}
.cid-uoagPQnVVU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uoagPQnVVU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uoagPQnVVU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uoagPQnVVU .carousel-indicators {
    display: none;
  }
}
.cid-uoagPQnVVU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uoagPQnVVU .carousel-inner > .active {
  display: block;
}
.cid-uoagPQnVVU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uoagPQnVVU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uoagPQnVVU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uoagPQnVVU .carousel-control,
  .cid-uoagPQnVVU .carousel-indicators,
  .cid-uoagPQnVVU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uoagPQnVVU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uoagPQnVVU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uoagPQnVVU .carousel-indicators .active,
.cid-uoagPQnVVU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uoagPQnVVU .carousel-indicators .active {
  background: #fff;
}
.cid-uoagPQnVVU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uoagPQnVVU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uoagPQnVVU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uoagPQnVVU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uoagPQnVVU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uoagPQnVVU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uoagPQnVVU .carousel {
  width: 100%;
}
.cid-uoagPQnVVU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uoagPQnVVU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uoagPQnVVU .modal.fade .modal-dialog,
.cid-uoagPQnVVU .modal.in .modal-dialog {
  transform: none;
}
.cid-uoagPQnVVU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uoagPQnVVU H6 {
  text-align: center;
}
.cid-uofaCWghhr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uofaCWghhr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uofaCWghhr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uofaCWghhr .item {
  padding-bottom: 2rem;
}
.cid-uofaCWghhr .item-wrapper {
  position: relative;
}
.cid-uofaCWghhr .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-uofaCWghhr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uofaCWghhr .carousel-control,
.cid-uofaCWghhr .close {
  background: #1b1b1b;
}
.cid-uofaCWghhr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uofaCWghhr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uofaCWghhr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uofaCWghhr .carousel-control-next span {
  margin-left: 5px;
}
.cid-uofaCWghhr .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-uofaCWghhr .close::before {
  content: '\e91a';
}
.cid-uofaCWghhr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uofaCWghhr .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-uofaCWghhr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uofaCWghhr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uofaCWghhr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uofaCWghhr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uofaCWghhr .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-uofaCWghhr .carousel-indicators li.active,
.cid-uofaCWghhr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uofaCWghhr .carousel-indicators li::after,
.cid-uofaCWghhr .carousel-indicators li::before {
  content: none;
}
.cid-uofaCWghhr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uofaCWghhr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uofaCWghhr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uofaCWghhr .carousel-indicators {
    display: none;
  }
}
.cid-uofaCWghhr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uofaCWghhr .carousel-inner > .active {
  display: block;
}
.cid-uofaCWghhr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uofaCWghhr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uofaCWghhr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uofaCWghhr .carousel-control,
  .cid-uofaCWghhr .carousel-indicators,
  .cid-uofaCWghhr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uofaCWghhr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uofaCWghhr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uofaCWghhr .carousel-indicators .active,
.cid-uofaCWghhr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uofaCWghhr .carousel-indicators .active {
  background: #fff;
}
.cid-uofaCWghhr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uofaCWghhr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uofaCWghhr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uofaCWghhr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uofaCWghhr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uofaCWghhr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uofaCWghhr .carousel {
  width: 100%;
}
.cid-uofaCWghhr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uofaCWghhr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uofaCWghhr .modal.fade .modal-dialog,
.cid-uofaCWghhr .modal.in .modal-dialog {
  transform: none;
}
.cid-uofaCWghhr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uofaCWghhr H6 {
  text-align: center;
}
.cid-uof8BYninn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uof8BYninn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uof8BYninn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uof8BYninn .item {
  padding-bottom: 2rem;
}
.cid-uof8BYninn .item-wrapper {
  position: relative;
}
.cid-uof8BYninn .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-uof8BYninn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uof8BYninn .carousel-control,
.cid-uof8BYninn .close {
  background: #1b1b1b;
}
.cid-uof8BYninn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uof8BYninn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uof8BYninn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uof8BYninn .carousel-control-next span {
  margin-left: 5px;
}
.cid-uof8BYninn .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-uof8BYninn .close::before {
  content: '\e91a';
}
.cid-uof8BYninn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uof8BYninn .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-uof8BYninn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uof8BYninn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uof8BYninn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uof8BYninn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uof8BYninn .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-uof8BYninn .carousel-indicators li.active,
.cid-uof8BYninn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uof8BYninn .carousel-indicators li::after,
.cid-uof8BYninn .carousel-indicators li::before {
  content: none;
}
.cid-uof8BYninn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uof8BYninn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uof8BYninn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uof8BYninn .carousel-indicators {
    display: none;
  }
}
.cid-uof8BYninn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uof8BYninn .carousel-inner > .active {
  display: block;
}
.cid-uof8BYninn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uof8BYninn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uof8BYninn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uof8BYninn .carousel-control,
  .cid-uof8BYninn .carousel-indicators,
  .cid-uof8BYninn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uof8BYninn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uof8BYninn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uof8BYninn .carousel-indicators .active,
.cid-uof8BYninn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uof8BYninn .carousel-indicators .active {
  background: #fff;
}
.cid-uof8BYninn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uof8BYninn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uof8BYninn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uof8BYninn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uof8BYninn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uof8BYninn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uof8BYninn .carousel {
  width: 100%;
}
.cid-uof8BYninn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uof8BYninn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uof8BYninn .modal.fade .modal-dialog,
.cid-uof8BYninn .modal.in .modal-dialog {
  transform: none;
}
.cid-uof8BYninn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uof8BYninn H6 {
  text-align: center;
}
.cid-urgtsHNaAW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-urgtsHNaAW .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgtsHNaAW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgtsHNaAW .item {
  padding-bottom: 2rem;
}
.cid-urgtsHNaAW .item-wrapper {
  position: relative;
}
.cid-urgtsHNaAW .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-urgtsHNaAW .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urgtsHNaAW .carousel-control,
.cid-urgtsHNaAW .close {
  background: #1b1b1b;
}
.cid-urgtsHNaAW .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urgtsHNaAW .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urgtsHNaAW .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urgtsHNaAW .carousel-control-next span {
  margin-left: 5px;
}
.cid-urgtsHNaAW .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-urgtsHNaAW .close::before {
  content: '\e91a';
}
.cid-urgtsHNaAW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urgtsHNaAW .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-urgtsHNaAW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urgtsHNaAW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urgtsHNaAW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urgtsHNaAW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urgtsHNaAW .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-urgtsHNaAW .carousel-indicators li.active,
.cid-urgtsHNaAW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urgtsHNaAW .carousel-indicators li::after,
.cid-urgtsHNaAW .carousel-indicators li::before {
  content: none;
}
.cid-urgtsHNaAW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urgtsHNaAW .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urgtsHNaAW .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urgtsHNaAW .carousel-indicators {
    display: none;
  }
}
.cid-urgtsHNaAW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urgtsHNaAW .carousel-inner > .active {
  display: block;
}
.cid-urgtsHNaAW .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urgtsHNaAW .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urgtsHNaAW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urgtsHNaAW .carousel-control,
  .cid-urgtsHNaAW .carousel-indicators,
  .cid-urgtsHNaAW .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urgtsHNaAW .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urgtsHNaAW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urgtsHNaAW .carousel-indicators .active,
.cid-urgtsHNaAW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urgtsHNaAW .carousel-indicators .active {
  background: #fff;
}
.cid-urgtsHNaAW .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urgtsHNaAW .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urgtsHNaAW .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urgtsHNaAW .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urgtsHNaAW .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urgtsHNaAW .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urgtsHNaAW .carousel {
  width: 100%;
}
.cid-urgtsHNaAW .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urgtsHNaAW .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urgtsHNaAW .modal.fade .modal-dialog,
.cid-urgtsHNaAW .modal.in .modal-dialog {
  transform: none;
}
.cid-urgtsHNaAW .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urgtsHNaAW H6 {
  text-align: center;
}
.cid-uof8PBez4y {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uof8PBez4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uof8PBez4y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uof8PBez4y .item {
  padding-bottom: 2rem;
}
.cid-uof8PBez4y .item-wrapper {
  position: relative;
}
.cid-uof8PBez4y .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-uof8PBez4y .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uof8PBez4y .carousel-control,
.cid-uof8PBez4y .close {
  background: #1b1b1b;
}
.cid-uof8PBez4y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uof8PBez4y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uof8PBez4y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uof8PBez4y .carousel-control-next span {
  margin-left: 5px;
}
.cid-uof8PBez4y .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-uof8PBez4y .close::before {
  content: '\e91a';
}
.cid-uof8PBez4y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uof8PBez4y .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-uof8PBez4y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uof8PBez4y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uof8PBez4y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uof8PBez4y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uof8PBez4y .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-uof8PBez4y .carousel-indicators li.active,
.cid-uof8PBez4y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uof8PBez4y .carousel-indicators li::after,
.cid-uof8PBez4y .carousel-indicators li::before {
  content: none;
}
.cid-uof8PBez4y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uof8PBez4y .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uof8PBez4y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uof8PBez4y .carousel-indicators {
    display: none;
  }
}
.cid-uof8PBez4y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uof8PBez4y .carousel-inner > .active {
  display: block;
}
.cid-uof8PBez4y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uof8PBez4y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uof8PBez4y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uof8PBez4y .carousel-control,
  .cid-uof8PBez4y .carousel-indicators,
  .cid-uof8PBez4y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uof8PBez4y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uof8PBez4y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uof8PBez4y .carousel-indicators .active,
.cid-uof8PBez4y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uof8PBez4y .carousel-indicators .active {
  background: #fff;
}
.cid-uof8PBez4y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uof8PBez4y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uof8PBez4y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uof8PBez4y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uof8PBez4y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uof8PBez4y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uof8PBez4y .carousel {
  width: 100%;
}
.cid-uof8PBez4y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uof8PBez4y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uof8PBez4y .modal.fade .modal-dialog,
.cid-uof8PBez4y .modal.in .modal-dialog {
  transform: none;
}
.cid-uof8PBez4y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uof8PBez4y H6 {
  text-align: center;
}
.cid-uof9MfRCoL {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
.cid-uof9MfRCoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uof9MfRCoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uof9MfRCoL .item {
  padding-bottom: 2rem;
}
.cid-uof9MfRCoL .item-wrapper {
  position: relative;
}
.cid-uof9MfRCoL .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-uof9MfRCoL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uof9MfRCoL .carousel-control,
.cid-uof9MfRCoL .close {
  background: #1b1b1b;
}
.cid-uof9MfRCoL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uof9MfRCoL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uof9MfRCoL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uof9MfRCoL .carousel-control-next span {
  margin-left: 5px;
}
.cid-uof9MfRCoL .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-uof9MfRCoL .close::before {
  content: '\e91a';
}
.cid-uof9MfRCoL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uof9MfRCoL .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-uof9MfRCoL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uof9MfRCoL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uof9MfRCoL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uof9MfRCoL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uof9MfRCoL .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-uof9MfRCoL .carousel-indicators li.active,
.cid-uof9MfRCoL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uof9MfRCoL .carousel-indicators li::after,
.cid-uof9MfRCoL .carousel-indicators li::before {
  content: none;
}
.cid-uof9MfRCoL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uof9MfRCoL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uof9MfRCoL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uof9MfRCoL .carousel-indicators {
    display: none;
  }
}
.cid-uof9MfRCoL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uof9MfRCoL .carousel-inner > .active {
  display: block;
}
.cid-uof9MfRCoL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uof9MfRCoL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uof9MfRCoL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uof9MfRCoL .carousel-control,
  .cid-uof9MfRCoL .carousel-indicators,
  .cid-uof9MfRCoL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uof9MfRCoL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uof9MfRCoL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uof9MfRCoL .carousel-indicators .active,
.cid-uof9MfRCoL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uof9MfRCoL .carousel-indicators .active {
  background: #fff;
}
.cid-uof9MfRCoL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uof9MfRCoL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uof9MfRCoL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uof9MfRCoL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uof9MfRCoL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uof9MfRCoL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uof9MfRCoL .carousel {
  width: 100%;
}
.cid-uof9MfRCoL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uof9MfRCoL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uof9MfRCoL .modal.fade .modal-dialog,
.cid-uof9MfRCoL .modal.in .modal-dialog {
  transform: none;
}
.cid-uof9MfRCoL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uof9MfRCoL H6 {
  text-align: center;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usGtjskU8L {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-usGtjskU8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGtjskU8L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGtjskU8L .item {
  padding-bottom: 2rem;
}
.cid-usGtjskU8L .item-wrapper {
  position: relative;
}
.cid-usGtjskU8L .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-usGtjskU8L .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usGtjskU8L .carousel-control,
.cid-usGtjskU8L .close {
  background: #1b1b1b;
}
.cid-usGtjskU8L .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usGtjskU8L .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usGtjskU8L .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usGtjskU8L .carousel-control-next span {
  margin-left: 5px;
}
.cid-usGtjskU8L .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-usGtjskU8L .close::before {
  content: '\e91a';
}
.cid-usGtjskU8L .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usGtjskU8L .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-usGtjskU8L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usGtjskU8L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usGtjskU8L .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usGtjskU8L .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usGtjskU8L .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-usGtjskU8L .carousel-indicators li.active,
.cid-usGtjskU8L .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usGtjskU8L .carousel-indicators li::after,
.cid-usGtjskU8L .carousel-indicators li::before {
  content: none;
}
.cid-usGtjskU8L .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usGtjskU8L .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usGtjskU8L .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usGtjskU8L .carousel-indicators {
    display: none;
  }
}
.cid-usGtjskU8L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usGtjskU8L .carousel-inner > .active {
  display: block;
}
.cid-usGtjskU8L .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usGtjskU8L .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usGtjskU8L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usGtjskU8L .carousel-control,
  .cid-usGtjskU8L .carousel-indicators,
  .cid-usGtjskU8L .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usGtjskU8L .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usGtjskU8L .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usGtjskU8L .carousel-indicators .active,
.cid-usGtjskU8L .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usGtjskU8L .carousel-indicators .active {
  background: #fff;
}
.cid-usGtjskU8L .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usGtjskU8L .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usGtjskU8L .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usGtjskU8L .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usGtjskU8L .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usGtjskU8L .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usGtjskU8L .carousel {
  width: 100%;
}
.cid-usGtjskU8L .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usGtjskU8L .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usGtjskU8L .modal.fade .modal-dialog,
.cid-usGtjskU8L .modal.in .modal-dialog {
  transform: none;
}
.cid-usGtjskU8L .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usGtjskU8L H6 {
  text-align: center;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCNaniANpv {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCNaniANpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCNaniANpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCNaniANpv .item {
  padding-bottom: 2rem;
}
.cid-uCNaniANpv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCNaniANpv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCNaniANpv .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-uCNaniANpv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCNaniANpv .carousel-control,
.cid-uCNaniANpv .close {
  background: #1b1b1b;
}
.cid-uCNaniANpv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCNaniANpv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCNaniANpv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCNaniANpv .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCNaniANpv .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-uCNaniANpv .close::before {
  content: '\e91a';
}
.cid-uCNaniANpv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCNaniANpv .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-uCNaniANpv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCNaniANpv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCNaniANpv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCNaniANpv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCNaniANpv .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-uCNaniANpv .carousel-indicators li.active,
.cid-uCNaniANpv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCNaniANpv .carousel-indicators li::after,
.cid-uCNaniANpv .carousel-indicators li::before {
  content: none;
}
.cid-uCNaniANpv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCNaniANpv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCNaniANpv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCNaniANpv .carousel-indicators {
    display: none;
  }
}
.cid-uCNaniANpv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCNaniANpv .carousel-inner > .active {
  display: block;
}
.cid-uCNaniANpv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCNaniANpv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCNaniANpv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCNaniANpv .carousel-control,
  .cid-uCNaniANpv .carousel-indicators,
  .cid-uCNaniANpv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCNaniANpv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCNaniANpv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCNaniANpv .carousel-indicators .active,
.cid-uCNaniANpv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCNaniANpv .carousel-indicators .active {
  background: #fff;
}
.cid-uCNaniANpv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCNaniANpv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCNaniANpv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCNaniANpv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCNaniANpv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCNaniANpv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCNaniANpv .carousel {
  width: 100%;
}
.cid-uCNaniANpv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCNaniANpv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCNaniANpv .modal.fade .modal-dialog,
.cid-uCNaniANpv .modal.in .modal-dialog {
  transform: none;
}
.cid-uCNaniANpv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCNaniANpv H6 {
  text-align: center;
}
.cid-uCM8yrUanv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8yrUanv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8yrUanv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8yrUanv .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8yrUanv .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8yrUanv .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8yrUanv .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8yrUanv .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8yrUanv .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8yrUanv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8yrUanv .mbr-text,
.cid-uCM8yrUanv .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8yrUanv .mbr-section-title,
.cid-uCM8yrUanv .mbr-section-btn {
  text-align: center;
}
.cid-uCM8AtpOJk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM8AtpOJk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8AtpOJk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM8AtpOJk .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM8AtpOJk .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM8AtpOJk .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM8AtpOJk .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM8AtpOJk .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM8AtpOJk .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM8AtpOJk .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM8AtpOJk .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM8AtpOJk .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM8AtpOJk .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM8AtpOJk .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM8AtpOJk .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM8AtpOJk .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM8AtpOJk .mbr-section-title {
  color: #ffffff;
}
.cid-uCM8AtpOJk .mbr-text,
.cid-uCM8AtpOJk .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8AtpOJk .mbr-section-title,
.cid-uCM8AtpOJk .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM8AtpOJk .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDUpAiXeGh {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDUpAiXeGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDUpAiXeGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDUpAiXeGh .mbr-text,
.cid-uDUpAiXeGh .mbr-section-btn {
  color: #232323;
}
.cid-uDUpAiXeGh .card-title,
.cid-uDUpAiXeGh .card-box {
  color: #202020;
}
.cid-uDUpAiXeGh .mbr-text,
.cid-uDUpAiXeGh .link-wrap {
  color: #ffffff;
}
.cid-uDUoq7NTDa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uDUoq7NTDa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDUoq7NTDa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDUoq7NTDa .row {
  justify-content: center;
}
.cid-uDUoq7NTDa .video-block {
  margin-bottom: 20px;
}
.cid-uDUoq7NTDa .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-uDUoq7NTDa .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-uDUoq7NTDa .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-uDUoq7NTDa .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uDUoq7NTDa .mbr-section-title {
  color: #E0BDB6;
}
.cid-uDUoq7NTDa .mbr-date {
  color: #747474;
}
.cid-uDUoq7NTDa .mbr-text {
  color: #747474;
}
.cid-uCLETRIS1R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLETRIS1R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLETRIS1R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLETRIS1R .item {
  padding-bottom: 2rem;
}
.cid-uCLETRIS1R .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLETRIS1R .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLETRIS1R .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-uCLETRIS1R .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLETRIS1R .carousel-control,
.cid-uCLETRIS1R .close {
  background: #1b1b1b;
}
.cid-uCLETRIS1R .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLETRIS1R .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLETRIS1R .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLETRIS1R .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLETRIS1R .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-uCLETRIS1R .close::before {
  content: '\e91a';
}
.cid-uCLETRIS1R .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLETRIS1R .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-uCLETRIS1R .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLETRIS1R .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLETRIS1R .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLETRIS1R .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLETRIS1R .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-uCLETRIS1R .carousel-indicators li.active,
.cid-uCLETRIS1R .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLETRIS1R .carousel-indicators li::after,
.cid-uCLETRIS1R .carousel-indicators li::before {
  content: none;
}
.cid-uCLETRIS1R .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLETRIS1R .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLETRIS1R .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLETRIS1R .carousel-indicators {
    display: none;
  }
}
.cid-uCLETRIS1R .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLETRIS1R .carousel-inner > .active {
  display: block;
}
.cid-uCLETRIS1R .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLETRIS1R .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLETRIS1R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLETRIS1R .carousel-control,
  .cid-uCLETRIS1R .carousel-indicators,
  .cid-uCLETRIS1R .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLETRIS1R .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLETRIS1R .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLETRIS1R .carousel-indicators .active,
.cid-uCLETRIS1R .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLETRIS1R .carousel-indicators .active {
  background: #fff;
}
.cid-uCLETRIS1R .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLETRIS1R .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLETRIS1R .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLETRIS1R .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLETRIS1R .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLETRIS1R .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLETRIS1R .carousel {
  width: 100%;
}
.cid-uCLETRIS1R .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLETRIS1R .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLETRIS1R .modal.fade .modal-dialog,
.cid-uCLETRIS1R .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLETRIS1R .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLETRIS1R H6 {
  text-align: center;
}
.cid-uCM8suTcmB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8suTcmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8suTcmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8suTcmB .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8suTcmB .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8suTcmB .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8suTcmB .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8suTcmB .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8suTcmB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8suTcmB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8suTcmB .mbr-text,
.cid-uCM8suTcmB .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8suTcmB .mbr-section-title,
.cid-uCM8suTcmB .mbr-section-btn {
  text-align: center;
}
.cid-uCM5il6aVe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5il6aVe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5il6aVe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5il6aVe .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5il6aVe .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5il6aVe .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5il6aVe .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5il6aVe .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5il6aVe .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5il6aVe .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5il6aVe .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5il6aVe .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5il6aVe .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5il6aVe .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5il6aVe .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5il6aVe .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5il6aVe .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5il6aVe .mbr-text,
.cid-uCM5il6aVe .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5il6aVe .mbr-section-title,
.cid-uCM5il6aVe .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5il6aVe .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLGhr1QMY {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLGhr1QMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLGhr1QMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLGhr1QMY .item {
  padding-bottom: 2rem;
}
.cid-uCLGhr1QMY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLGhr1QMY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLGhr1QMY .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-uCLGhr1QMY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLGhr1QMY .carousel-control,
.cid-uCLGhr1QMY .close {
  background: #1b1b1b;
}
.cid-uCLGhr1QMY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLGhr1QMY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLGhr1QMY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLGhr1QMY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLGhr1QMY .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-uCLGhr1QMY .close::before {
  content: '\e91a';
}
.cid-uCLGhr1QMY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLGhr1QMY .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-uCLGhr1QMY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLGhr1QMY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLGhr1QMY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLGhr1QMY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLGhr1QMY .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-uCLGhr1QMY .carousel-indicators li.active,
.cid-uCLGhr1QMY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLGhr1QMY .carousel-indicators li::after,
.cid-uCLGhr1QMY .carousel-indicators li::before {
  content: none;
}
.cid-uCLGhr1QMY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLGhr1QMY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLGhr1QMY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLGhr1QMY .carousel-indicators {
    display: none;
  }
}
.cid-uCLGhr1QMY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLGhr1QMY .carousel-inner > .active {
  display: block;
}
.cid-uCLGhr1QMY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLGhr1QMY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLGhr1QMY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLGhr1QMY .carousel-control,
  .cid-uCLGhr1QMY .carousel-indicators,
  .cid-uCLGhr1QMY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLGhr1QMY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLGhr1QMY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLGhr1QMY .carousel-indicators .active,
.cid-uCLGhr1QMY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLGhr1QMY .carousel-indicators .active {
  background: #fff;
}
.cid-uCLGhr1QMY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLGhr1QMY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLGhr1QMY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLGhr1QMY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLGhr1QMY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLGhr1QMY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLGhr1QMY .carousel {
  width: 100%;
}
.cid-uCLGhr1QMY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLGhr1QMY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLGhr1QMY .modal.fade .modal-dialog,
.cid-uCLGhr1QMY .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLGhr1QMY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLGhr1QMY H6 {
  text-align: center;
}
.cid-uCM8pYw5zY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8pYw5zY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8pYw5zY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8pYw5zY .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8pYw5zY .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8pYw5zY .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8pYw5zY .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8pYw5zY .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8pYw5zY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8pYw5zY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8pYw5zY .mbr-text,
.cid-uCM8pYw5zY .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8pYw5zY .mbr-section-title,
.cid-uCM8pYw5zY .mbr-section-btn {
  text-align: center;
}
.cid-uCM5pH5TNU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5pH5TNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5pH5TNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5pH5TNU .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5pH5TNU .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5pH5TNU .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5pH5TNU .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5pH5TNU .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5pH5TNU .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5pH5TNU .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5pH5TNU .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5pH5TNU .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5pH5TNU .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5pH5TNU .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5pH5TNU .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5pH5TNU .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5pH5TNU .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5pH5TNU .mbr-text,
.cid-uCM5pH5TNU .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5pH5TNU .mbr-section-title,
.cid-uCM5pH5TNU .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5pH5TNU .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLIMj6JSz {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLIMj6JSz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLIMj6JSz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLIMj6JSz .item {
  padding-bottom: 2rem;
}
.cid-uCLIMj6JSz .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLIMj6JSz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLIMj6JSz .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-uCLIMj6JSz .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLIMj6JSz .carousel-control,
.cid-uCLIMj6JSz .close {
  background: #1b1b1b;
}
.cid-uCLIMj6JSz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLIMj6JSz .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLIMj6JSz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLIMj6JSz .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLIMj6JSz .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-uCLIMj6JSz .close::before {
  content: '\e91a';
}
.cid-uCLIMj6JSz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLIMj6JSz .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-uCLIMj6JSz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLIMj6JSz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLIMj6JSz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLIMj6JSz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLIMj6JSz .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-uCLIMj6JSz .carousel-indicators li.active,
.cid-uCLIMj6JSz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLIMj6JSz .carousel-indicators li::after,
.cid-uCLIMj6JSz .carousel-indicators li::before {
  content: none;
}
.cid-uCLIMj6JSz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLIMj6JSz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLIMj6JSz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLIMj6JSz .carousel-indicators {
    display: none;
  }
}
.cid-uCLIMj6JSz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLIMj6JSz .carousel-inner > .active {
  display: block;
}
.cid-uCLIMj6JSz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLIMj6JSz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLIMj6JSz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLIMj6JSz .carousel-control,
  .cid-uCLIMj6JSz .carousel-indicators,
  .cid-uCLIMj6JSz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLIMj6JSz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLIMj6JSz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLIMj6JSz .carousel-indicators .active,
.cid-uCLIMj6JSz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLIMj6JSz .carousel-indicators .active {
  background: #fff;
}
.cid-uCLIMj6JSz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLIMj6JSz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLIMj6JSz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLIMj6JSz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLIMj6JSz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLIMj6JSz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLIMj6JSz .carousel {
  width: 100%;
}
.cid-uCLIMj6JSz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLIMj6JSz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLIMj6JSz .modal.fade .modal-dialog,
.cid-uCLIMj6JSz .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLIMj6JSz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLIMj6JSz H6 {
  text-align: center;
}
.cid-uCM8nXxxYq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8nXxxYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8nXxxYq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8nXxxYq .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8nXxxYq .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8nXxxYq .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8nXxxYq .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8nXxxYq .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8nXxxYq .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8nXxxYq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8nXxxYq .mbr-text,
.cid-uCM8nXxxYq .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8nXxxYq .mbr-section-title,
.cid-uCM8nXxxYq .mbr-section-btn {
  text-align: center;
}
.cid-uCM5sjihwp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5sjihwp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5sjihwp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5sjihwp .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5sjihwp .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5sjihwp .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5sjihwp .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5sjihwp .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5sjihwp .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5sjihwp .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5sjihwp .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5sjihwp .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5sjihwp .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5sjihwp .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5sjihwp .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5sjihwp .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5sjihwp .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5sjihwp .mbr-text,
.cid-uCM5sjihwp .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5sjihwp .mbr-section-title,
.cid-uCM5sjihwp .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5sjihwp .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLKyun3MG {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLKyun3MG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLKyun3MG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLKyun3MG .item {
  padding-bottom: 2rem;
}
.cid-uCLKyun3MG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLKyun3MG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLKyun3MG .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-uCLKyun3MG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLKyun3MG .carousel-control,
.cid-uCLKyun3MG .close {
  background: #1b1b1b;
}
.cid-uCLKyun3MG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLKyun3MG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLKyun3MG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLKyun3MG .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLKyun3MG .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-uCLKyun3MG .close::before {
  content: '\e91a';
}
.cid-uCLKyun3MG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLKyun3MG .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-uCLKyun3MG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLKyun3MG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLKyun3MG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLKyun3MG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLKyun3MG .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-uCLKyun3MG .carousel-indicators li.active,
.cid-uCLKyun3MG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLKyun3MG .carousel-indicators li::after,
.cid-uCLKyun3MG .carousel-indicators li::before {
  content: none;
}
.cid-uCLKyun3MG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLKyun3MG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLKyun3MG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLKyun3MG .carousel-indicators {
    display: none;
  }
}
.cid-uCLKyun3MG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLKyun3MG .carousel-inner > .active {
  display: block;
}
.cid-uCLKyun3MG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLKyun3MG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLKyun3MG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLKyun3MG .carousel-control,
  .cid-uCLKyun3MG .carousel-indicators,
  .cid-uCLKyun3MG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLKyun3MG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLKyun3MG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLKyun3MG .carousel-indicators .active,
.cid-uCLKyun3MG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLKyun3MG .carousel-indicators .active {
  background: #fff;
}
.cid-uCLKyun3MG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLKyun3MG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLKyun3MG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLKyun3MG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLKyun3MG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLKyun3MG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLKyun3MG .carousel {
  width: 100%;
}
.cid-uCLKyun3MG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLKyun3MG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLKyun3MG .modal.fade .modal-dialog,
.cid-uCLKyun3MG .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLKyun3MG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLKyun3MG H6 {
  text-align: center;
}
.cid-uCM8lHvdfL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8lHvdfL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8lHvdfL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8lHvdfL .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8lHvdfL .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8lHvdfL .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8lHvdfL .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8lHvdfL .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8lHvdfL .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8lHvdfL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8lHvdfL .mbr-text,
.cid-uCM8lHvdfL .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8lHvdfL .mbr-section-title,
.cid-uCM8lHvdfL .mbr-section-btn {
  text-align: center;
}
.cid-uCM5votS5P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5votS5P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5votS5P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5votS5P .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5votS5P .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5votS5P .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5votS5P .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5votS5P .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5votS5P .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5votS5P .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5votS5P .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5votS5P .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5votS5P .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5votS5P .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5votS5P .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5votS5P .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5votS5P .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5votS5P .mbr-text,
.cid-uCM5votS5P .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5votS5P .mbr-section-title,
.cid-uCM5votS5P .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5votS5P .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-uCLRfsJfCu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLRfsJfCu nav.navbar {
  position: fixed;
}
.cid-uCLRfsJfCu .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-uCLRfsJfCu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLRfsJfCu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLRfsJfCu .dropdown-item:hover,
.cid-uCLRfsJfCu .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLRfsJfCu .dropdown-item:hover span {
  color: white;
}
.cid-uCLRfsJfCu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLRfsJfCu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLRfsJfCu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLRfsJfCu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLRfsJfCu .nav-link {
  position: relative;
}
.cid-uCLRfsJfCu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLRfsJfCu .container {
    flex-wrap: wrap;
  }
}
.cid-uCLRfsJfCu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLRfsJfCu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLRfsJfCu .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLRfsJfCu .dropdown-menu,
.cid-uCLRfsJfCu .navbar.opened {
  background: #000000 !important;
}
.cid-uCLRfsJfCu .nav-item:focus,
.cid-uCLRfsJfCu .nav-link:focus {
  outline: none;
}
.cid-uCLRfsJfCu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLRfsJfCu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLRfsJfCu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLRfsJfCu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLRfsJfCu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLRfsJfCu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLRfsJfCu .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: #000000;
}
.cid-uCLRfsJfCu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLRfsJfCu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLRfsJfCu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLRfsJfCu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLRfsJfCu .navbar.collapsed {
  justify-content: center;
}
.cid-uCLRfsJfCu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLRfsJfCu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLRfsJfCu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLRfsJfCu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLRfsJfCu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLRfsJfCu .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-uCLRfsJfCu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLRfsJfCu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLRfsJfCu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLRfsJfCu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLRfsJfCu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLRfsJfCu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLRfsJfCu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLRfsJfCu .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-uCLRfsJfCu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLRfsJfCu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLRfsJfCu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLRfsJfCu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLRfsJfCu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLRfsJfCu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLRfsJfCu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLRfsJfCu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLRfsJfCu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLRfsJfCu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLRfsJfCu .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-uCLRfsJfCu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLRfsJfCu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLRfsJfCu .dropdown-item.active,
.cid-uCLRfsJfCu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLRfsJfCu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLRfsJfCu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLRfsJfCu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLRfsJfCu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLRfsJfCu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLRfsJfCu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLRfsJfCu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLRfsJfCu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLRfsJfCu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLRfsJfCu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLRfsJfCu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLRfsJfCu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLRfsJfCu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLRfsJfCu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLRfsJfCu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLRfsJfCu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLRfsJfCu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLRfsJfCu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLRfsJfCu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLRfsJfCu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLRfsJfCu .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-uCLRfsJfCu .navbar {
    height: 70px;
  }
  .cid-uCLRfsJfCu .navbar.opened {
    height: auto;
  }
  .cid-uCLRfsJfCu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLRuBg4tk {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLRuBg4tk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLRuBg4tk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLRuBg4tk .item {
  padding-bottom: 2rem;
}
.cid-uCLRuBg4tk .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLRuBg4tk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLRuBg4tk .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-uCLRuBg4tk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLRuBg4tk .carousel-control,
.cid-uCLRuBg4tk .close {
  background: #1b1b1b;
}
.cid-uCLRuBg4tk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLRuBg4tk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLRuBg4tk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLRuBg4tk .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLRuBg4tk .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-uCLRuBg4tk .close::before {
  content: '\e91a';
}
.cid-uCLRuBg4tk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLRuBg4tk .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-uCLRuBg4tk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLRuBg4tk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLRuBg4tk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLRuBg4tk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLRuBg4tk .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-uCLRuBg4tk .carousel-indicators li.active,
.cid-uCLRuBg4tk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLRuBg4tk .carousel-indicators li::after,
.cid-uCLRuBg4tk .carousel-indicators li::before {
  content: none;
}
.cid-uCLRuBg4tk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLRuBg4tk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLRuBg4tk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLRuBg4tk .carousel-indicators {
    display: none;
  }
}
.cid-uCLRuBg4tk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLRuBg4tk .carousel-inner > .active {
  display: block;
}
.cid-uCLRuBg4tk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLRuBg4tk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLRuBg4tk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLRuBg4tk .carousel-control,
  .cid-uCLRuBg4tk .carousel-indicators,
  .cid-uCLRuBg4tk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLRuBg4tk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLRuBg4tk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLRuBg4tk .carousel-indicators .active,
.cid-uCLRuBg4tk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLRuBg4tk .carousel-indicators .active {
  background: #fff;
}
.cid-uCLRuBg4tk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLRuBg4tk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLRuBg4tk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLRuBg4tk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLRuBg4tk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLRuBg4tk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLRuBg4tk .carousel {
  width: 100%;
}
.cid-uCLRuBg4tk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLRuBg4tk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLRuBg4tk .modal.fade .modal-dialog,
.cid-uCLRuBg4tk .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLRuBg4tk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLRuBg4tk H6 {
  text-align: center;
}
.cid-uCM8jqMy8h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8jqMy8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8jqMy8h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8jqMy8h .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8jqMy8h .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8jqMy8h .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8jqMy8h .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8jqMy8h .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8jqMy8h .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8jqMy8h .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8jqMy8h .mbr-text,
.cid-uCM8jqMy8h .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8jqMy8h .mbr-section-title,
.cid-uCM8jqMy8h .mbr-section-btn {
  text-align: center;
}
.cid-uCM5AgVRXd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5AgVRXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5AgVRXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5AgVRXd .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5AgVRXd .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5AgVRXd .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5AgVRXd .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5AgVRXd .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5AgVRXd .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5AgVRXd .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5AgVRXd .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5AgVRXd .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5AgVRXd .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5AgVRXd .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5AgVRXd .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5AgVRXd .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5AgVRXd .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5AgVRXd .mbr-text,
.cid-uCM5AgVRXd .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5AgVRXd .mbr-section-title,
.cid-uCM5AgVRXd .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5AgVRXd .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLRftVaC8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLRftVaC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLRftVaC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLRftVaC8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLRftVaC8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLRftVaC8 .row {
    text-align: center;
  }
  .cid-uCLRftVaC8 .social-row {
    justify-content: center;
  }
}
.cid-uCLRftVaC8 .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLRftVaC8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLRftVaC8 .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLRftVaC8 .mbr-text {
  color: #ffffff;
}
.cid-uCLRftVaC8 .mbr-iconfont {
  color: black;
}
.cid-uCLTuzkiI8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLTuzkiI8 nav.navbar {
  position: fixed;
}
.cid-uCLTuzkiI8 .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-uCLTuzkiI8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLTuzkiI8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLTuzkiI8 .dropdown-item:hover,
.cid-uCLTuzkiI8 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLTuzkiI8 .dropdown-item:hover span {
  color: white;
}
.cid-uCLTuzkiI8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLTuzkiI8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLTuzkiI8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLTuzkiI8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLTuzkiI8 .nav-link {
  position: relative;
}
.cid-uCLTuzkiI8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLTuzkiI8 .container {
    flex-wrap: wrap;
  }
}
.cid-uCLTuzkiI8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLTuzkiI8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLTuzkiI8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLTuzkiI8 .dropdown-menu,
.cid-uCLTuzkiI8 .navbar.opened {
  background: #000000 !important;
}
.cid-uCLTuzkiI8 .nav-item:focus,
.cid-uCLTuzkiI8 .nav-link:focus {
  outline: none;
}
.cid-uCLTuzkiI8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLTuzkiI8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLTuzkiI8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLTuzkiI8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLTuzkiI8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLTuzkiI8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLTuzkiI8 .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: #000000;
}
.cid-uCLTuzkiI8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLTuzkiI8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLTuzkiI8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLTuzkiI8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLTuzkiI8 .navbar.collapsed {
  justify-content: center;
}
.cid-uCLTuzkiI8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLTuzkiI8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLTuzkiI8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLTuzkiI8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLTuzkiI8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLTuzkiI8 .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-uCLTuzkiI8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLTuzkiI8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLTuzkiI8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLTuzkiI8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLTuzkiI8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLTuzkiI8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLTuzkiI8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLTuzkiI8 .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-uCLTuzkiI8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLTuzkiI8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLTuzkiI8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLTuzkiI8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLTuzkiI8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLTuzkiI8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLTuzkiI8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLTuzkiI8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLTuzkiI8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLTuzkiI8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLTuzkiI8 .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-uCLTuzkiI8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLTuzkiI8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLTuzkiI8 .dropdown-item.active,
.cid-uCLTuzkiI8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLTuzkiI8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLTuzkiI8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLTuzkiI8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLTuzkiI8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLTuzkiI8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLTuzkiI8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLTuzkiI8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLTuzkiI8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLTuzkiI8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLTuzkiI8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLTuzkiI8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLTuzkiI8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLTuzkiI8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLTuzkiI8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLTuzkiI8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLTuzkiI8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLTuzkiI8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLTuzkiI8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLTuzkiI8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLTuzkiI8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLTuzkiI8 .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-uCLTuzkiI8 .navbar {
    height: 70px;
  }
  .cid-uCLTuzkiI8 .navbar.opened {
    height: auto;
  }
  .cid-uCLTuzkiI8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLTJEfedG {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLTJEfedG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLTJEfedG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLTJEfedG .item {
  padding-bottom: 2rem;
}
.cid-uCLTJEfedG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLTJEfedG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLTJEfedG .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-uCLTJEfedG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLTJEfedG .carousel-control,
.cid-uCLTJEfedG .close {
  background: #1b1b1b;
}
.cid-uCLTJEfedG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLTJEfedG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLTJEfedG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLTJEfedG .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLTJEfedG .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-uCLTJEfedG .close::before {
  content: '\e91a';
}
.cid-uCLTJEfedG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLTJEfedG .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-uCLTJEfedG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLTJEfedG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLTJEfedG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLTJEfedG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLTJEfedG .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-uCLTJEfedG .carousel-indicators li.active,
.cid-uCLTJEfedG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLTJEfedG .carousel-indicators li::after,
.cid-uCLTJEfedG .carousel-indicators li::before {
  content: none;
}
.cid-uCLTJEfedG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLTJEfedG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLTJEfedG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLTJEfedG .carousel-indicators {
    display: none;
  }
}
.cid-uCLTJEfedG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLTJEfedG .carousel-inner > .active {
  display: block;
}
.cid-uCLTJEfedG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLTJEfedG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLTJEfedG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLTJEfedG .carousel-control,
  .cid-uCLTJEfedG .carousel-indicators,
  .cid-uCLTJEfedG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLTJEfedG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLTJEfedG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLTJEfedG .carousel-indicators .active,
.cid-uCLTJEfedG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLTJEfedG .carousel-indicators .active {
  background: #fff;
}
.cid-uCLTJEfedG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLTJEfedG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLTJEfedG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLTJEfedG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLTJEfedG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLTJEfedG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLTJEfedG .carousel {
  width: 100%;
}
.cid-uCLTJEfedG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLTJEfedG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLTJEfedG .modal.fade .modal-dialog,
.cid-uCLTJEfedG .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLTJEfedG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLTJEfedG H6 {
  text-align: center;
}
.cid-uCM8hpFlV3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8hpFlV3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8hpFlV3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8hpFlV3 .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8hpFlV3 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8hpFlV3 .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8hpFlV3 .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8hpFlV3 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8hpFlV3 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8hpFlV3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8hpFlV3 .mbr-text,
.cid-uCM8hpFlV3 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8hpFlV3 .mbr-section-title,
.cid-uCM8hpFlV3 .mbr-section-btn {
  text-align: center;
}
.cid-uCM5GelvTW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5GelvTW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5GelvTW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5GelvTW .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5GelvTW .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5GelvTW .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5GelvTW .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5GelvTW .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5GelvTW .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5GelvTW .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5GelvTW .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5GelvTW .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5GelvTW .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5GelvTW .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5GelvTW .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5GelvTW .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5GelvTW .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5GelvTW .mbr-text,
.cid-uCM5GelvTW .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5GelvTW .mbr-section-title,
.cid-uCM5GelvTW .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5GelvTW .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLTuAC4wd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLTuAC4wd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLTuAC4wd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLTuAC4wd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLTuAC4wd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLTuAC4wd .row {
    text-align: center;
  }
  .cid-uCLTuAC4wd .social-row {
    justify-content: center;
  }
}
.cid-uCLTuAC4wd .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLTuAC4wd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLTuAC4wd .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLTuAC4wd .mbr-text {
  color: #ffffff;
}
.cid-uCLTuAC4wd .mbr-iconfont {
  color: black;
}
.cid-uCLTK6LAad {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLTK6LAad .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLTK6LAad .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLTK6LAad .item {
  padding-bottom: 2rem;
}
.cid-uCLTK6LAad .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLTK6LAad .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLTK6LAad .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-uCLTK6LAad .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLTK6LAad .carousel-control,
.cid-uCLTK6LAad .close {
  background: #1b1b1b;
}
.cid-uCLTK6LAad .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLTK6LAad .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLTK6LAad .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLTK6LAad .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLTK6LAad .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-uCLTK6LAad .close::before {
  content: '\e91a';
}
.cid-uCLTK6LAad .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLTK6LAad .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-uCLTK6LAad .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLTK6LAad .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLTK6LAad .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLTK6LAad .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLTK6LAad .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-uCLTK6LAad .carousel-indicators li.active,
.cid-uCLTK6LAad .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLTK6LAad .carousel-indicators li::after,
.cid-uCLTK6LAad .carousel-indicators li::before {
  content: none;
}
.cid-uCLTK6LAad .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLTK6LAad .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLTK6LAad .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLTK6LAad .carousel-indicators {
    display: none;
  }
}
.cid-uCLTK6LAad .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLTK6LAad .carousel-inner > .active {
  display: block;
}
.cid-uCLTK6LAad .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLTK6LAad .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLTK6LAad .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLTK6LAad .carousel-control,
  .cid-uCLTK6LAad .carousel-indicators,
  .cid-uCLTK6LAad .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLTK6LAad .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLTK6LAad .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLTK6LAad .carousel-indicators .active,
.cid-uCLTK6LAad .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLTK6LAad .carousel-indicators .active {
  background: #fff;
}
.cid-uCLTK6LAad .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLTK6LAad .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLTK6LAad .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLTK6LAad .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLTK6LAad .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLTK6LAad .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLTK6LAad .carousel {
  width: 100%;
}
.cid-uCLTK6LAad .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLTK6LAad .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLTK6LAad .modal.fade .modal-dialog,
.cid-uCLTK6LAad .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLTK6LAad .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLTK6LAad H6 {
  text-align: center;
}
.cid-uCLTKxvMjG {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLTKxvMjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLTKxvMjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLTKxvMjG .item {
  padding-bottom: 2rem;
}
.cid-uCLTKxvMjG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLTKxvMjG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLTKxvMjG .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-uCLTKxvMjG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLTKxvMjG .carousel-control,
.cid-uCLTKxvMjG .close {
  background: #1b1b1b;
}
.cid-uCLTKxvMjG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLTKxvMjG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLTKxvMjG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLTKxvMjG .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLTKxvMjG .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-uCLTKxvMjG .close::before {
  content: '\e91a';
}
.cid-uCLTKxvMjG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLTKxvMjG .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-uCLTKxvMjG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLTKxvMjG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLTKxvMjG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLTKxvMjG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLTKxvMjG .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-uCLTKxvMjG .carousel-indicators li.active,
.cid-uCLTKxvMjG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLTKxvMjG .carousel-indicators li::after,
.cid-uCLTKxvMjG .carousel-indicators li::before {
  content: none;
}
.cid-uCLTKxvMjG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLTKxvMjG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLTKxvMjG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLTKxvMjG .carousel-indicators {
    display: none;
  }
}
.cid-uCLTKxvMjG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLTKxvMjG .carousel-inner > .active {
  display: block;
}
.cid-uCLTKxvMjG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLTKxvMjG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLTKxvMjG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLTKxvMjG .carousel-control,
  .cid-uCLTKxvMjG .carousel-indicators,
  .cid-uCLTKxvMjG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLTKxvMjG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLTKxvMjG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLTKxvMjG .carousel-indicators .active,
.cid-uCLTKxvMjG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLTKxvMjG .carousel-indicators .active {
  background: #fff;
}
.cid-uCLTKxvMjG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLTKxvMjG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLTKxvMjG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLTKxvMjG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLTKxvMjG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLTKxvMjG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLTKxvMjG .carousel {
  width: 100%;
}
.cid-uCLTKxvMjG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLTKxvMjG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLTKxvMjG .modal.fade .modal-dialog,
.cid-uCLTKxvMjG .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLTKxvMjG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLTKxvMjG H6 {
  text-align: center;
}
.cid-uCLEx6Dyiq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLEx6Dyiq nav.navbar {
  position: fixed;
}
.cid-uCLEx6Dyiq .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-uCLEx6Dyiq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLEx6Dyiq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLEx6Dyiq .dropdown-item:hover,
.cid-uCLEx6Dyiq .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLEx6Dyiq .dropdown-item:hover span {
  color: white;
}
.cid-uCLEx6Dyiq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLEx6Dyiq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLEx6Dyiq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLEx6Dyiq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLEx6Dyiq .nav-link {
  position: relative;
}
.cid-uCLEx6Dyiq .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLEx6Dyiq .container {
    flex-wrap: wrap;
  }
}
.cid-uCLEx6Dyiq .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLEx6Dyiq .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLEx6Dyiq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLEx6Dyiq .dropdown-menu,
.cid-uCLEx6Dyiq .navbar.opened {
  background: #000000 !important;
}
.cid-uCLEx6Dyiq .nav-item:focus,
.cid-uCLEx6Dyiq .nav-link:focus {
  outline: none;
}
.cid-uCLEx6Dyiq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLEx6Dyiq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLEx6Dyiq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLEx6Dyiq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLEx6Dyiq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLEx6Dyiq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLEx6Dyiq .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: #000000;
}
.cid-uCLEx6Dyiq .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLEx6Dyiq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLEx6Dyiq .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLEx6Dyiq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLEx6Dyiq .navbar.collapsed {
  justify-content: center;
}
.cid-uCLEx6Dyiq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLEx6Dyiq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLEx6Dyiq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLEx6Dyiq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLEx6Dyiq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLEx6Dyiq .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-uCLEx6Dyiq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLEx6Dyiq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLEx6Dyiq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLEx6Dyiq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLEx6Dyiq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLEx6Dyiq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLEx6Dyiq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLEx6Dyiq .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-uCLEx6Dyiq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLEx6Dyiq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLEx6Dyiq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLEx6Dyiq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLEx6Dyiq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLEx6Dyiq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLEx6Dyiq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLEx6Dyiq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLEx6Dyiq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLEx6Dyiq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLEx6Dyiq .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-uCLEx6Dyiq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLEx6Dyiq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLEx6Dyiq .dropdown-item.active,
.cid-uCLEx6Dyiq .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLEx6Dyiq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLEx6Dyiq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLEx6Dyiq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLEx6Dyiq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLEx6Dyiq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLEx6Dyiq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLEx6Dyiq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLEx6Dyiq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLEx6Dyiq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLEx6Dyiq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLEx6Dyiq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLEx6Dyiq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLEx6Dyiq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLEx6Dyiq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLEx6Dyiq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLEx6Dyiq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLEx6Dyiq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLEx6Dyiq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLEx6Dyiq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLEx6Dyiq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLEx6Dyiq .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-uCLEx6Dyiq .navbar {
    height: 70px;
  }
  .cid-uCLEx6Dyiq .navbar.opened {
    height: auto;
  }
  .cid-uCLEx6Dyiq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLMfLZ9YN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLMfLZ9YN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLMfLZ9YN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLMfLZ9YN .item {
  padding-bottom: 2rem;
}
.cid-uCLMfLZ9YN .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLMfLZ9YN .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLMfLZ9YN .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-uCLMfLZ9YN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLMfLZ9YN .carousel-control,
.cid-uCLMfLZ9YN .close {
  background: #1b1b1b;
}
.cid-uCLMfLZ9YN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLMfLZ9YN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLMfLZ9YN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLMfLZ9YN .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLMfLZ9YN .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-uCLMfLZ9YN .close::before {
  content: '\e91a';
}
.cid-uCLMfLZ9YN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLMfLZ9YN .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-uCLMfLZ9YN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLMfLZ9YN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLMfLZ9YN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLMfLZ9YN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLMfLZ9YN .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-uCLMfLZ9YN .carousel-indicators li.active,
.cid-uCLMfLZ9YN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLMfLZ9YN .carousel-indicators li::after,
.cid-uCLMfLZ9YN .carousel-indicators li::before {
  content: none;
}
.cid-uCLMfLZ9YN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLMfLZ9YN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLMfLZ9YN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLMfLZ9YN .carousel-indicators {
    display: none;
  }
}
.cid-uCLMfLZ9YN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLMfLZ9YN .carousel-inner > .active {
  display: block;
}
.cid-uCLMfLZ9YN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLMfLZ9YN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLMfLZ9YN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLMfLZ9YN .carousel-control,
  .cid-uCLMfLZ9YN .carousel-indicators,
  .cid-uCLMfLZ9YN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLMfLZ9YN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLMfLZ9YN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLMfLZ9YN .carousel-indicators .active,
.cid-uCLMfLZ9YN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLMfLZ9YN .carousel-indicators .active {
  background: #fff;
}
.cid-uCLMfLZ9YN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLMfLZ9YN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLMfLZ9YN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLMfLZ9YN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLMfLZ9YN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLMfLZ9YN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLMfLZ9YN .carousel {
  width: 100%;
}
.cid-uCLMfLZ9YN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLMfLZ9YN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLMfLZ9YN .modal.fade .modal-dialog,
.cid-uCLMfLZ9YN .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLMfLZ9YN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLMfLZ9YN H6 {
  text-align: center;
}
.cid-uCM8f6cZWX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8f6cZWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8f6cZWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8f6cZWX .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8f6cZWX .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8f6cZWX .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8f6cZWX .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8f6cZWX .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8f6cZWX .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8f6cZWX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8f6cZWX .mbr-text,
.cid-uCM8f6cZWX .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8f6cZWX .mbr-section-title,
.cid-uCM8f6cZWX .mbr-section-btn {
  text-align: center;
}
.cid-uCM5I5jf2J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5I5jf2J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5I5jf2J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5I5jf2J .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5I5jf2J .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5I5jf2J .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5I5jf2J .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5I5jf2J .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5I5jf2J .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5I5jf2J .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5I5jf2J .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5I5jf2J .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5I5jf2J .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5I5jf2J .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5I5jf2J .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5I5jf2J .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5I5jf2J .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5I5jf2J .mbr-text,
.cid-uCM5I5jf2J .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5I5jf2J .mbr-section-title,
.cid-uCM5I5jf2J .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5I5jf2J .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLEx78gCi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLEx78gCi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLEx78gCi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLEx78gCi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLEx78gCi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLEx78gCi .row {
    text-align: center;
  }
  .cid-uCLEx78gCi .social-row {
    justify-content: center;
  }
}
.cid-uCLEx78gCi .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLEx78gCi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLEx78gCi .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLEx78gCi .mbr-text {
  color: #ffffff;
}
.cid-uCLEx78gCi .mbr-iconfont {
  color: black;
}
.cid-uCLUpdPKrB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLUpdPKrB nav.navbar {
  position: fixed;
}
.cid-uCLUpdPKrB .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-uCLUpdPKrB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLUpdPKrB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLUpdPKrB .dropdown-item:hover,
.cid-uCLUpdPKrB .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLUpdPKrB .dropdown-item:hover span {
  color: white;
}
.cid-uCLUpdPKrB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLUpdPKrB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLUpdPKrB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLUpdPKrB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLUpdPKrB .nav-link {
  position: relative;
}
.cid-uCLUpdPKrB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLUpdPKrB .container {
    flex-wrap: wrap;
  }
}
.cid-uCLUpdPKrB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLUpdPKrB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLUpdPKrB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLUpdPKrB .dropdown-menu,
.cid-uCLUpdPKrB .navbar.opened {
  background: #000000 !important;
}
.cid-uCLUpdPKrB .nav-item:focus,
.cid-uCLUpdPKrB .nav-link:focus {
  outline: none;
}
.cid-uCLUpdPKrB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLUpdPKrB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLUpdPKrB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLUpdPKrB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLUpdPKrB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLUpdPKrB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLUpdPKrB .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: #000000;
}
.cid-uCLUpdPKrB .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLUpdPKrB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLUpdPKrB .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLUpdPKrB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLUpdPKrB .navbar.collapsed {
  justify-content: center;
}
.cid-uCLUpdPKrB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLUpdPKrB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLUpdPKrB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLUpdPKrB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLUpdPKrB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLUpdPKrB .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-uCLUpdPKrB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLUpdPKrB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLUpdPKrB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLUpdPKrB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLUpdPKrB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLUpdPKrB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLUpdPKrB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLUpdPKrB .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-uCLUpdPKrB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLUpdPKrB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLUpdPKrB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLUpdPKrB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLUpdPKrB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLUpdPKrB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLUpdPKrB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLUpdPKrB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLUpdPKrB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLUpdPKrB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLUpdPKrB .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-uCLUpdPKrB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLUpdPKrB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLUpdPKrB .dropdown-item.active,
.cid-uCLUpdPKrB .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLUpdPKrB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLUpdPKrB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLUpdPKrB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLUpdPKrB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLUpdPKrB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLUpdPKrB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLUpdPKrB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLUpdPKrB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLUpdPKrB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLUpdPKrB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLUpdPKrB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLUpdPKrB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLUpdPKrB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLUpdPKrB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLUpdPKrB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLUpdPKrB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLUpdPKrB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLUpdPKrB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLUpdPKrB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLUpdPKrB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLUpdPKrB .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-uCLUpdPKrB .navbar {
    height: 70px;
  }
  .cid-uCLUpdPKrB .navbar.opened {
    height: auto;
  }
  .cid-uCLUpdPKrB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLVzCKcAI {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLVzCKcAI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLVzCKcAI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLVzCKcAI .item {
  padding-bottom: 2rem;
}
.cid-uCLVzCKcAI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLVzCKcAI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLVzCKcAI .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-uCLVzCKcAI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLVzCKcAI .carousel-control,
.cid-uCLVzCKcAI .close {
  background: #1b1b1b;
}
.cid-uCLVzCKcAI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLVzCKcAI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLVzCKcAI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLVzCKcAI .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLVzCKcAI .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-uCLVzCKcAI .close::before {
  content: '\e91a';
}
.cid-uCLVzCKcAI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLVzCKcAI .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-uCLVzCKcAI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLVzCKcAI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLVzCKcAI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLVzCKcAI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLVzCKcAI .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-uCLVzCKcAI .carousel-indicators li.active,
.cid-uCLVzCKcAI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLVzCKcAI .carousel-indicators li::after,
.cid-uCLVzCKcAI .carousel-indicators li::before {
  content: none;
}
.cid-uCLVzCKcAI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLVzCKcAI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLVzCKcAI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLVzCKcAI .carousel-indicators {
    display: none;
  }
}
.cid-uCLVzCKcAI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLVzCKcAI .carousel-inner > .active {
  display: block;
}
.cid-uCLVzCKcAI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLVzCKcAI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLVzCKcAI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLVzCKcAI .carousel-control,
  .cid-uCLVzCKcAI .carousel-indicators,
  .cid-uCLVzCKcAI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLVzCKcAI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLVzCKcAI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLVzCKcAI .carousel-indicators .active,
.cid-uCLVzCKcAI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLVzCKcAI .carousel-indicators .active {
  background: #fff;
}
.cid-uCLVzCKcAI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLVzCKcAI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLVzCKcAI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLVzCKcAI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLVzCKcAI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLVzCKcAI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLVzCKcAI .carousel {
  width: 100%;
}
.cid-uCLVzCKcAI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLVzCKcAI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLVzCKcAI .modal.fade .modal-dialog,
.cid-uCLVzCKcAI .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLVzCKcAI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLVzCKcAI H6 {
  text-align: center;
}
.cid-uCM8cjqdqB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8cjqdqB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8cjqdqB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8cjqdqB .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8cjqdqB .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8cjqdqB .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8cjqdqB .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8cjqdqB .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8cjqdqB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8cjqdqB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8cjqdqB .mbr-text,
.cid-uCM8cjqdqB .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8cjqdqB .mbr-section-title,
.cid-uCM8cjqdqB .mbr-section-btn {
  text-align: center;
}
.cid-uCM5KbhavK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5KbhavK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5KbhavK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5KbhavK .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5KbhavK .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5KbhavK .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5KbhavK .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5KbhavK .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5KbhavK .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5KbhavK .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5KbhavK .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5KbhavK .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5KbhavK .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5KbhavK .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5KbhavK .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5KbhavK .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5KbhavK .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5KbhavK .mbr-text,
.cid-uCM5KbhavK .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5KbhavK .mbr-section-title,
.cid-uCM5KbhavK .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5KbhavK .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLUpeU2EM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLUpeU2EM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLUpeU2EM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLUpeU2EM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLUpeU2EM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLUpeU2EM .row {
    text-align: center;
  }
  .cid-uCLUpeU2EM .social-row {
    justify-content: center;
  }
}
.cid-uCLUpeU2EM .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLUpeU2EM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLUpeU2EM .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLUpeU2EM .mbr-text {
  color: #ffffff;
}
.cid-uCLUpeU2EM .mbr-iconfont {
  color: black;
}
.cid-uCLYlokm4h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLYlokm4h nav.navbar {
  position: fixed;
}
.cid-uCLYlokm4h .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-uCLYlokm4h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLYlokm4h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLYlokm4h .dropdown-item:hover,
.cid-uCLYlokm4h .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLYlokm4h .dropdown-item:hover span {
  color: white;
}
.cid-uCLYlokm4h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLYlokm4h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLYlokm4h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLYlokm4h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLYlokm4h .nav-link {
  position: relative;
}
.cid-uCLYlokm4h .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLYlokm4h .container {
    flex-wrap: wrap;
  }
}
.cid-uCLYlokm4h .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLYlokm4h .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLYlokm4h .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLYlokm4h .dropdown-menu,
.cid-uCLYlokm4h .navbar.opened {
  background: #000000 !important;
}
.cid-uCLYlokm4h .nav-item:focus,
.cid-uCLYlokm4h .nav-link:focus {
  outline: none;
}
.cid-uCLYlokm4h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLYlokm4h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLYlokm4h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLYlokm4h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLYlokm4h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLYlokm4h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLYlokm4h .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: #000000;
}
.cid-uCLYlokm4h .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLYlokm4h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLYlokm4h .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLYlokm4h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLYlokm4h .navbar.collapsed {
  justify-content: center;
}
.cid-uCLYlokm4h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLYlokm4h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLYlokm4h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLYlokm4h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLYlokm4h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLYlokm4h .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-uCLYlokm4h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLYlokm4h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLYlokm4h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLYlokm4h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLYlokm4h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLYlokm4h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLYlokm4h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLYlokm4h .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-uCLYlokm4h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLYlokm4h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLYlokm4h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLYlokm4h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLYlokm4h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLYlokm4h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLYlokm4h .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLYlokm4h .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLYlokm4h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLYlokm4h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLYlokm4h .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-uCLYlokm4h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLYlokm4h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLYlokm4h .dropdown-item.active,
.cid-uCLYlokm4h .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLYlokm4h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLYlokm4h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLYlokm4h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLYlokm4h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLYlokm4h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLYlokm4h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLYlokm4h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLYlokm4h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLYlokm4h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLYlokm4h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLYlokm4h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLYlokm4h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLYlokm4h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLYlokm4h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLYlokm4h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLYlokm4h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLYlokm4h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLYlokm4h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLYlokm4h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLYlokm4h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLYlokm4h .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-uCLYlokm4h .navbar {
    height: 70px;
  }
  .cid-uCLYlokm4h .navbar.opened {
    height: auto;
  }
  .cid-uCLYlokm4h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLYxcEdv8 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLYxcEdv8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLYxcEdv8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLYxcEdv8 .item {
  padding-bottom: 2rem;
}
.cid-uCLYxcEdv8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLYxcEdv8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLYxcEdv8 .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-uCLYxcEdv8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLYxcEdv8 .carousel-control,
.cid-uCLYxcEdv8 .close {
  background: #1b1b1b;
}
.cid-uCLYxcEdv8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLYxcEdv8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLYxcEdv8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLYxcEdv8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLYxcEdv8 .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-uCLYxcEdv8 .close::before {
  content: '\e91a';
}
.cid-uCLYxcEdv8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLYxcEdv8 .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-uCLYxcEdv8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLYxcEdv8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLYxcEdv8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLYxcEdv8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLYxcEdv8 .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-uCLYxcEdv8 .carousel-indicators li.active,
.cid-uCLYxcEdv8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLYxcEdv8 .carousel-indicators li::after,
.cid-uCLYxcEdv8 .carousel-indicators li::before {
  content: none;
}
.cid-uCLYxcEdv8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLYxcEdv8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLYxcEdv8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLYxcEdv8 .carousel-indicators {
    display: none;
  }
}
.cid-uCLYxcEdv8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLYxcEdv8 .carousel-inner > .active {
  display: block;
}
.cid-uCLYxcEdv8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLYxcEdv8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLYxcEdv8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLYxcEdv8 .carousel-control,
  .cid-uCLYxcEdv8 .carousel-indicators,
  .cid-uCLYxcEdv8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLYxcEdv8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLYxcEdv8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLYxcEdv8 .carousel-indicators .active,
.cid-uCLYxcEdv8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLYxcEdv8 .carousel-indicators .active {
  background: #fff;
}
.cid-uCLYxcEdv8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLYxcEdv8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLYxcEdv8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLYxcEdv8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLYxcEdv8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLYxcEdv8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLYxcEdv8 .carousel {
  width: 100%;
}
.cid-uCLYxcEdv8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLYxcEdv8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLYxcEdv8 .modal.fade .modal-dialog,
.cid-uCLYxcEdv8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLYxcEdv8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLYxcEdv8 H6 {
  text-align: center;
}
.cid-uCM89UCo3F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM89UCo3F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM89UCo3F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM89UCo3F .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM89UCo3F .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM89UCo3F .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM89UCo3F .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM89UCo3F .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM89UCo3F .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM89UCo3F .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM89UCo3F .mbr-text,
.cid-uCM89UCo3F .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM89UCo3F .mbr-section-title,
.cid-uCM89UCo3F .mbr-section-btn {
  text-align: center;
}
.cid-uCM5MtIiEw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5MtIiEw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5MtIiEw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5MtIiEw .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5MtIiEw .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5MtIiEw .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5MtIiEw .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5MtIiEw .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5MtIiEw .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5MtIiEw .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5MtIiEw .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5MtIiEw .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5MtIiEw .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5MtIiEw .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5MtIiEw .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5MtIiEw .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5MtIiEw .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5MtIiEw .mbr-text,
.cid-uCM5MtIiEw .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5MtIiEw .mbr-section-title,
.cid-uCM5MtIiEw .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5MtIiEw .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLYlpmiQI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLYlpmiQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLYlpmiQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLYlpmiQI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLYlpmiQI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLYlpmiQI .row {
    text-align: center;
  }
  .cid-uCLYlpmiQI .social-row {
    justify-content: center;
  }
}
.cid-uCLYlpmiQI .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLYlpmiQI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLYlpmiQI .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLYlpmiQI .mbr-text {
  color: #ffffff;
}
.cid-uCLYlpmiQI .mbr-iconfont {
  color: black;
}
.cid-uCLZUmqck1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLZUmqck1 nav.navbar {
  position: fixed;
}
.cid-uCLZUmqck1 .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-uCLZUmqck1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLZUmqck1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLZUmqck1 .dropdown-item:hover,
.cid-uCLZUmqck1 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLZUmqck1 .dropdown-item:hover span {
  color: white;
}
.cid-uCLZUmqck1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLZUmqck1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLZUmqck1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLZUmqck1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLZUmqck1 .nav-link {
  position: relative;
}
.cid-uCLZUmqck1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLZUmqck1 .container {
    flex-wrap: wrap;
  }
}
.cid-uCLZUmqck1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLZUmqck1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLZUmqck1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLZUmqck1 .dropdown-menu,
.cid-uCLZUmqck1 .navbar.opened {
  background: #000000 !important;
}
.cid-uCLZUmqck1 .nav-item:focus,
.cid-uCLZUmqck1 .nav-link:focus {
  outline: none;
}
.cid-uCLZUmqck1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLZUmqck1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLZUmqck1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLZUmqck1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLZUmqck1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLZUmqck1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLZUmqck1 .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: #000000;
}
.cid-uCLZUmqck1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLZUmqck1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLZUmqck1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLZUmqck1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLZUmqck1 .navbar.collapsed {
  justify-content: center;
}
.cid-uCLZUmqck1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLZUmqck1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLZUmqck1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLZUmqck1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLZUmqck1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLZUmqck1 .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-uCLZUmqck1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLZUmqck1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLZUmqck1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLZUmqck1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLZUmqck1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLZUmqck1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLZUmqck1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLZUmqck1 .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-uCLZUmqck1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLZUmqck1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLZUmqck1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLZUmqck1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLZUmqck1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLZUmqck1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLZUmqck1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLZUmqck1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLZUmqck1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLZUmqck1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLZUmqck1 .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-uCLZUmqck1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLZUmqck1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLZUmqck1 .dropdown-item.active,
.cid-uCLZUmqck1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLZUmqck1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLZUmqck1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLZUmqck1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLZUmqck1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLZUmqck1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLZUmqck1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLZUmqck1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLZUmqck1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLZUmqck1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLZUmqck1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLZUmqck1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLZUmqck1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLZUmqck1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLZUmqck1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLZUmqck1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLZUmqck1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLZUmqck1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLZUmqck1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLZUmqck1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLZUmqck1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLZUmqck1 .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-uCLZUmqck1 .navbar {
    height: 70px;
  }
  .cid-uCLZUmqck1 .navbar.opened {
    height: auto;
  }
  .cid-uCLZUmqck1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCM00UZSC8 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCM00UZSC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM00UZSC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM00UZSC8 .item {
  padding-bottom: 2rem;
}
.cid-uCM00UZSC8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCM00UZSC8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCM00UZSC8 .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-uCM00UZSC8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCM00UZSC8 .carousel-control,
.cid-uCM00UZSC8 .close {
  background: #1b1b1b;
}
.cid-uCM00UZSC8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCM00UZSC8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCM00UZSC8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCM00UZSC8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCM00UZSC8 .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-uCM00UZSC8 .close::before {
  content: '\e91a';
}
.cid-uCM00UZSC8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCM00UZSC8 .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-uCM00UZSC8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCM00UZSC8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCM00UZSC8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCM00UZSC8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCM00UZSC8 .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-uCM00UZSC8 .carousel-indicators li.active,
.cid-uCM00UZSC8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCM00UZSC8 .carousel-indicators li::after,
.cid-uCM00UZSC8 .carousel-indicators li::before {
  content: none;
}
.cid-uCM00UZSC8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM00UZSC8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCM00UZSC8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCM00UZSC8 .carousel-indicators {
    display: none;
  }
}
.cid-uCM00UZSC8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCM00UZSC8 .carousel-inner > .active {
  display: block;
}
.cid-uCM00UZSC8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCM00UZSC8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCM00UZSC8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCM00UZSC8 .carousel-control,
  .cid-uCM00UZSC8 .carousel-indicators,
  .cid-uCM00UZSC8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCM00UZSC8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCM00UZSC8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCM00UZSC8 .carousel-indicators .active,
.cid-uCM00UZSC8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCM00UZSC8 .carousel-indicators .active {
  background: #fff;
}
.cid-uCM00UZSC8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCM00UZSC8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCM00UZSC8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCM00UZSC8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCM00UZSC8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCM00UZSC8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCM00UZSC8 .carousel {
  width: 100%;
}
.cid-uCM00UZSC8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCM00UZSC8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCM00UZSC8 .modal.fade .modal-dialog,
.cid-uCM00UZSC8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uCM00UZSC8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCM00UZSC8 H6 {
  text-align: center;
}
.cid-uCM87LmMPo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM87LmMPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM87LmMPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM87LmMPo .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM87LmMPo .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM87LmMPo .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM87LmMPo .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM87LmMPo .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM87LmMPo .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM87LmMPo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM87LmMPo .mbr-text,
.cid-uCM87LmMPo .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM87LmMPo .mbr-section-title,
.cid-uCM87LmMPo .mbr-section-btn {
  text-align: center;
}
.cid-uCM5OwMcUv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5OwMcUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5OwMcUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5OwMcUv .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5OwMcUv .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5OwMcUv .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5OwMcUv .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5OwMcUv .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5OwMcUv .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5OwMcUv .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5OwMcUv .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5OwMcUv .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5OwMcUv .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5OwMcUv .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5OwMcUv .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5OwMcUv .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5OwMcUv .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5OwMcUv .mbr-text,
.cid-uCM5OwMcUv .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5OwMcUv .mbr-section-title,
.cid-uCM5OwMcUv .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5OwMcUv .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLZUnv2hp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLZUnv2hp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLZUnv2hp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLZUnv2hp .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLZUnv2hp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLZUnv2hp .row {
    text-align: center;
  }
  .cid-uCLZUnv2hp .social-row {
    justify-content: center;
  }
}
.cid-uCLZUnv2hp .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLZUnv2hp .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLZUnv2hp .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLZUnv2hp .mbr-text {
  color: #ffffff;
}
.cid-uCLZUnv2hp .mbr-iconfont {
  color: black;
}
.cid-uCLI12TNvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLI12TNvy nav.navbar {
  position: fixed;
}
.cid-uCLI12TNvy .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-uCLI12TNvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLI12TNvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLI12TNvy .dropdown-item:hover,
.cid-uCLI12TNvy .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLI12TNvy .dropdown-item:hover span {
  color: white;
}
.cid-uCLI12TNvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLI12TNvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLI12TNvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLI12TNvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLI12TNvy .nav-link {
  position: relative;
}
.cid-uCLI12TNvy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLI12TNvy .container {
    flex-wrap: wrap;
  }
}
.cid-uCLI12TNvy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLI12TNvy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLI12TNvy .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLI12TNvy .dropdown-menu,
.cid-uCLI12TNvy .navbar.opened {
  background: #000000 !important;
}
.cid-uCLI12TNvy .nav-item:focus,
.cid-uCLI12TNvy .nav-link:focus {
  outline: none;
}
.cid-uCLI12TNvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLI12TNvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLI12TNvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLI12TNvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLI12TNvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLI12TNvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLI12TNvy .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: #000000;
}
.cid-uCLI12TNvy .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLI12TNvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLI12TNvy .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLI12TNvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLI12TNvy .navbar.collapsed {
  justify-content: center;
}
.cid-uCLI12TNvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLI12TNvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLI12TNvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLI12TNvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLI12TNvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLI12TNvy .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-uCLI12TNvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLI12TNvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLI12TNvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLI12TNvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLI12TNvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLI12TNvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLI12TNvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLI12TNvy .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-uCLI12TNvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLI12TNvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLI12TNvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLI12TNvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLI12TNvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLI12TNvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLI12TNvy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLI12TNvy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLI12TNvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLI12TNvy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLI12TNvy .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-uCLI12TNvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLI12TNvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLI12TNvy .dropdown-item.active,
.cid-uCLI12TNvy .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLI12TNvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLI12TNvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLI12TNvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLI12TNvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLI12TNvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLI12TNvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLI12TNvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLI12TNvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLI12TNvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLI12TNvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLI12TNvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLI12TNvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLI12TNvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLI12TNvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLI12TNvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLI12TNvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLI12TNvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLI12TNvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLI12TNvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLI12TNvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLI12TNvy .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-uCLI12TNvy .navbar {
    height: 70px;
  }
  .cid-uCLI12TNvy .navbar.opened {
    height: auto;
  }
  .cid-uCLI12TNvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLMRXBzgr {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLMRXBzgr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLMRXBzgr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLMRXBzgr .item {
  padding-bottom: 2rem;
}
.cid-uCLMRXBzgr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLMRXBzgr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLMRXBzgr .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-uCLMRXBzgr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLMRXBzgr .carousel-control,
.cid-uCLMRXBzgr .close {
  background: #1b1b1b;
}
.cid-uCLMRXBzgr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLMRXBzgr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLMRXBzgr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLMRXBzgr .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLMRXBzgr .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-uCLMRXBzgr .close::before {
  content: '\e91a';
}
.cid-uCLMRXBzgr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLMRXBzgr .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-uCLMRXBzgr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLMRXBzgr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLMRXBzgr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLMRXBzgr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLMRXBzgr .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-uCLMRXBzgr .carousel-indicators li.active,
.cid-uCLMRXBzgr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLMRXBzgr .carousel-indicators li::after,
.cid-uCLMRXBzgr .carousel-indicators li::before {
  content: none;
}
.cid-uCLMRXBzgr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLMRXBzgr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLMRXBzgr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLMRXBzgr .carousel-indicators {
    display: none;
  }
}
.cid-uCLMRXBzgr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLMRXBzgr .carousel-inner > .active {
  display: block;
}
.cid-uCLMRXBzgr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLMRXBzgr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLMRXBzgr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLMRXBzgr .carousel-control,
  .cid-uCLMRXBzgr .carousel-indicators,
  .cid-uCLMRXBzgr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLMRXBzgr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLMRXBzgr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLMRXBzgr .carousel-indicators .active,
.cid-uCLMRXBzgr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLMRXBzgr .carousel-indicators .active {
  background: #fff;
}
.cid-uCLMRXBzgr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLMRXBzgr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLMRXBzgr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLMRXBzgr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLMRXBzgr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLMRXBzgr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLMRXBzgr .carousel {
  width: 100%;
}
.cid-uCLMRXBzgr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLMRXBzgr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLMRXBzgr .modal.fade .modal-dialog,
.cid-uCLMRXBzgr .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLMRXBzgr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLMRXBzgr H6 {
  text-align: center;
}
.cid-uCM85u7jcH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM85u7jcH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM85u7jcH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM85u7jcH .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM85u7jcH .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM85u7jcH .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM85u7jcH .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM85u7jcH .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM85u7jcH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM85u7jcH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM85u7jcH .mbr-text,
.cid-uCM85u7jcH .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM85u7jcH .mbr-section-title,
.cid-uCM85u7jcH .mbr-section-btn {
  text-align: center;
}
.cid-uCM5QHftjq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5QHftjq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5QHftjq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5QHftjq .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5QHftjq .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5QHftjq .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5QHftjq .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5QHftjq .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5QHftjq .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5QHftjq .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5QHftjq .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5QHftjq .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5QHftjq .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5QHftjq .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5QHftjq .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5QHftjq .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5QHftjq .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5QHftjq .mbr-text,
.cid-uCM5QHftjq .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5QHftjq .mbr-section-title,
.cid-uCM5QHftjq .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5QHftjq .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLI13gqrW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLI13gqrW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLI13gqrW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLI13gqrW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLI13gqrW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLI13gqrW .row {
    text-align: center;
  }
  .cid-uCLI13gqrW .social-row {
    justify-content: center;
  }
}
.cid-uCLI13gqrW .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLI13gqrW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLI13gqrW .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLI13gqrW .mbr-text {
  color: #ffffff;
}
.cid-uCLI13gqrW .mbr-iconfont {
  color: black;
}
.cid-uCLI6ClPNv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLI6ClPNv nav.navbar {
  position: fixed;
}
.cid-uCLI6ClPNv .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-uCLI6ClPNv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLI6ClPNv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLI6ClPNv .dropdown-item:hover,
.cid-uCLI6ClPNv .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLI6ClPNv .dropdown-item:hover span {
  color: white;
}
.cid-uCLI6ClPNv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLI6ClPNv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLI6ClPNv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLI6ClPNv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLI6ClPNv .nav-link {
  position: relative;
}
.cid-uCLI6ClPNv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLI6ClPNv .container {
    flex-wrap: wrap;
  }
}
.cid-uCLI6ClPNv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLI6ClPNv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLI6ClPNv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLI6ClPNv .dropdown-menu,
.cid-uCLI6ClPNv .navbar.opened {
  background: #000000 !important;
}
.cid-uCLI6ClPNv .nav-item:focus,
.cid-uCLI6ClPNv .nav-link:focus {
  outline: none;
}
.cid-uCLI6ClPNv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLI6ClPNv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLI6ClPNv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLI6ClPNv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLI6ClPNv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLI6ClPNv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLI6ClPNv .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: #000000;
}
.cid-uCLI6ClPNv .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLI6ClPNv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLI6ClPNv .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLI6ClPNv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLI6ClPNv .navbar.collapsed {
  justify-content: center;
}
.cid-uCLI6ClPNv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLI6ClPNv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLI6ClPNv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLI6ClPNv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLI6ClPNv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLI6ClPNv .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-uCLI6ClPNv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLI6ClPNv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLI6ClPNv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLI6ClPNv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLI6ClPNv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLI6ClPNv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLI6ClPNv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLI6ClPNv .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-uCLI6ClPNv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLI6ClPNv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLI6ClPNv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLI6ClPNv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLI6ClPNv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLI6ClPNv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLI6ClPNv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLI6ClPNv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLI6ClPNv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLI6ClPNv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLI6ClPNv .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-uCLI6ClPNv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLI6ClPNv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLI6ClPNv .dropdown-item.active,
.cid-uCLI6ClPNv .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLI6ClPNv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLI6ClPNv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLI6ClPNv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLI6ClPNv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLI6ClPNv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLI6ClPNv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLI6ClPNv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLI6ClPNv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLI6ClPNv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLI6ClPNv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLI6ClPNv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLI6ClPNv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLI6ClPNv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLI6ClPNv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLI6ClPNv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLI6ClPNv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLI6ClPNv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLI6ClPNv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLI6ClPNv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLI6ClPNv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLI6ClPNv .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-uCLI6ClPNv .navbar {
    height: 70px;
  }
  .cid-uCLI6ClPNv .navbar.opened {
    height: auto;
  }
  .cid-uCLI6ClPNv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLO3mKtuK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLO3mKtuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLO3mKtuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLO3mKtuK .item {
  padding-bottom: 2rem;
}
.cid-uCLO3mKtuK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLO3mKtuK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLO3mKtuK .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-uCLO3mKtuK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLO3mKtuK .carousel-control,
.cid-uCLO3mKtuK .close {
  background: #1b1b1b;
}
.cid-uCLO3mKtuK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLO3mKtuK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLO3mKtuK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLO3mKtuK .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLO3mKtuK .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-uCLO3mKtuK .close::before {
  content: '\e91a';
}
.cid-uCLO3mKtuK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLO3mKtuK .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-uCLO3mKtuK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLO3mKtuK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLO3mKtuK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLO3mKtuK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLO3mKtuK .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-uCLO3mKtuK .carousel-indicators li.active,
.cid-uCLO3mKtuK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLO3mKtuK .carousel-indicators li::after,
.cid-uCLO3mKtuK .carousel-indicators li::before {
  content: none;
}
.cid-uCLO3mKtuK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLO3mKtuK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLO3mKtuK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLO3mKtuK .carousel-indicators {
    display: none;
  }
}
.cid-uCLO3mKtuK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLO3mKtuK .carousel-inner > .active {
  display: block;
}
.cid-uCLO3mKtuK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLO3mKtuK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLO3mKtuK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLO3mKtuK .carousel-control,
  .cid-uCLO3mKtuK .carousel-indicators,
  .cid-uCLO3mKtuK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLO3mKtuK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLO3mKtuK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLO3mKtuK .carousel-indicators .active,
.cid-uCLO3mKtuK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLO3mKtuK .carousel-indicators .active {
  background: #fff;
}
.cid-uCLO3mKtuK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLO3mKtuK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLO3mKtuK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLO3mKtuK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLO3mKtuK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLO3mKtuK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLO3mKtuK .carousel {
  width: 100%;
}
.cid-uCLO3mKtuK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLO3mKtuK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLO3mKtuK .modal.fade .modal-dialog,
.cid-uCLO3mKtuK .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLO3mKtuK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLO3mKtuK H6 {
  text-align: center;
}
.cid-uCM7YTwiCn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM7YTwiCn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM7YTwiCn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM7YTwiCn .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM7YTwiCn .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM7YTwiCn .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM7YTwiCn .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM7YTwiCn .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM7YTwiCn .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM7YTwiCn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM7YTwiCn .mbr-text,
.cid-uCM7YTwiCn .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM7YTwiCn .mbr-section-title,
.cid-uCM7YTwiCn .mbr-section-btn {
  text-align: center;
}
.cid-uCM5T8KS4p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5T8KS4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5T8KS4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5T8KS4p .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5T8KS4p .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5T8KS4p .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5T8KS4p .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5T8KS4p .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5T8KS4p .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5T8KS4p .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5T8KS4p .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5T8KS4p .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5T8KS4p .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5T8KS4p .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5T8KS4p .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5T8KS4p .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5T8KS4p .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5T8KS4p .mbr-text,
.cid-uCM5T8KS4p .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5T8KS4p .mbr-section-title,
.cid-uCM5T8KS4p .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5T8KS4p .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLI6CHLH6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLI6CHLH6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLI6CHLH6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLI6CHLH6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLI6CHLH6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLI6CHLH6 .row {
    text-align: center;
  }
  .cid-uCLI6CHLH6 .social-row {
    justify-content: center;
  }
}
.cid-uCLI6CHLH6 .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLI6CHLH6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLI6CHLH6 .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLI6CHLH6 .mbr-text {
  color: #ffffff;
}
.cid-uCLI6CHLH6 .mbr-iconfont {
  color: black;
}
.cid-uCLIbIFKzC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCLIbIFKzC nav.navbar {
  position: fixed;
}
.cid-uCLIbIFKzC .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-uCLIbIFKzC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCLIbIFKzC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCLIbIFKzC .dropdown-item:hover,
.cid-uCLIbIFKzC .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCLIbIFKzC .dropdown-item:hover span {
  color: white;
}
.cid-uCLIbIFKzC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCLIbIFKzC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCLIbIFKzC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCLIbIFKzC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCLIbIFKzC .nav-link {
  position: relative;
}
.cid-uCLIbIFKzC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLIbIFKzC .container {
    flex-wrap: wrap;
  }
}
.cid-uCLIbIFKzC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCLIbIFKzC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCLIbIFKzC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCLIbIFKzC .dropdown-menu,
.cid-uCLIbIFKzC .navbar.opened {
  background: #000000 !important;
}
.cid-uCLIbIFKzC .nav-item:focus,
.cid-uCLIbIFKzC .nav-link:focus {
  outline: none;
}
.cid-uCLIbIFKzC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCLIbIFKzC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCLIbIFKzC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCLIbIFKzC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCLIbIFKzC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCLIbIFKzC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCLIbIFKzC .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: #000000;
}
.cid-uCLIbIFKzC .navbar.opened {
  transition: all 0.3s;
}
.cid-uCLIbIFKzC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCLIbIFKzC .navbar .navbar-logo img {
  width: auto;
}
.cid-uCLIbIFKzC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCLIbIFKzC .navbar.collapsed {
  justify-content: center;
}
.cid-uCLIbIFKzC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCLIbIFKzC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCLIbIFKzC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCLIbIFKzC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCLIbIFKzC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCLIbIFKzC .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-uCLIbIFKzC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCLIbIFKzC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCLIbIFKzC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCLIbIFKzC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCLIbIFKzC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCLIbIFKzC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCLIbIFKzC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCLIbIFKzC .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-uCLIbIFKzC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCLIbIFKzC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCLIbIFKzC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCLIbIFKzC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCLIbIFKzC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCLIbIFKzC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCLIbIFKzC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCLIbIFKzC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCLIbIFKzC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCLIbIFKzC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCLIbIFKzC .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-uCLIbIFKzC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCLIbIFKzC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCLIbIFKzC .dropdown-item.active,
.cid-uCLIbIFKzC .dropdown-item:active {
  background-color: transparent;
}
.cid-uCLIbIFKzC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCLIbIFKzC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCLIbIFKzC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCLIbIFKzC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCLIbIFKzC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCLIbIFKzC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCLIbIFKzC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCLIbIFKzC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCLIbIFKzC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCLIbIFKzC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCLIbIFKzC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCLIbIFKzC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLIbIFKzC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCLIbIFKzC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCLIbIFKzC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLIbIFKzC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCLIbIFKzC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCLIbIFKzC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCLIbIFKzC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCLIbIFKzC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCLIbIFKzC .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-uCLIbIFKzC .navbar {
    height: 70px;
  }
  .cid-uCLIbIFKzC .navbar.opened {
    height: auto;
  }
  .cid-uCLIbIFKzC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLOQQGtH6 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCLOQQGtH6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLOQQGtH6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLOQQGtH6 .item {
  padding-bottom: 2rem;
}
.cid-uCLOQQGtH6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCLOQQGtH6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCLOQQGtH6 .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-uCLOQQGtH6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCLOQQGtH6 .carousel-control,
.cid-uCLOQQGtH6 .close {
  background: #1b1b1b;
}
.cid-uCLOQQGtH6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCLOQQGtH6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCLOQQGtH6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCLOQQGtH6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCLOQQGtH6 .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-uCLOQQGtH6 .close::before {
  content: '\e91a';
}
.cid-uCLOQQGtH6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCLOQQGtH6 .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-uCLOQQGtH6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLOQQGtH6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLOQQGtH6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCLOQQGtH6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCLOQQGtH6 .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-uCLOQQGtH6 .carousel-indicators li.active,
.cid-uCLOQQGtH6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCLOQQGtH6 .carousel-indicators li::after,
.cid-uCLOQQGtH6 .carousel-indicators li::before {
  content: none;
}
.cid-uCLOQQGtH6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCLOQQGtH6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCLOQQGtH6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCLOQQGtH6 .carousel-indicators {
    display: none;
  }
}
.cid-uCLOQQGtH6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCLOQQGtH6 .carousel-inner > .active {
  display: block;
}
.cid-uCLOQQGtH6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCLOQQGtH6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCLOQQGtH6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCLOQQGtH6 .carousel-control,
  .cid-uCLOQQGtH6 .carousel-indicators,
  .cid-uCLOQQGtH6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCLOQQGtH6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCLOQQGtH6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCLOQQGtH6 .carousel-indicators .active,
.cid-uCLOQQGtH6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCLOQQGtH6 .carousel-indicators .active {
  background: #fff;
}
.cid-uCLOQQGtH6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCLOQQGtH6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCLOQQGtH6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCLOQQGtH6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCLOQQGtH6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCLOQQGtH6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCLOQQGtH6 .carousel {
  width: 100%;
}
.cid-uCLOQQGtH6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCLOQQGtH6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCLOQQGtH6 .modal.fade .modal-dialog,
.cid-uCLOQQGtH6 .modal.in .modal-dialog {
  transform: none;
}
.cid-uCLOQQGtH6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCLOQQGtH6 H6 {
  text-align: center;
}
.cid-uCM6sSTM9P {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM6sSTM9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM6sSTM9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM6sSTM9P .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM6sSTM9P .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM6sSTM9P .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM6sSTM9P .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM6sSTM9P .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM6sSTM9P .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM6sSTM9P .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM6sSTM9P .mbr-text,
.cid-uCM6sSTM9P .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM6sSTM9P .mbr-section-title,
.cid-uCM6sSTM9P .mbr-section-btn {
  text-align: center;
}
.cid-uCM5VBKxeg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM5VBKxeg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM5VBKxeg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM5VBKxeg .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5VBKxeg .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM5VBKxeg .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM5VBKxeg .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM5VBKxeg .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM5VBKxeg .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM5VBKxeg .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM5VBKxeg .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM5VBKxeg .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM5VBKxeg .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM5VBKxeg .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM5VBKxeg .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM5VBKxeg .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM5VBKxeg .mbr-section-title {
  color: #ffffff;
}
.cid-uCM5VBKxeg .mbr-text,
.cid-uCM5VBKxeg .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM5VBKxeg .mbr-section-title,
.cid-uCM5VBKxeg .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM5VBKxeg .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCLIbJ5mfX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLIbJ5mfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLIbJ5mfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLIbJ5mfX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCLIbJ5mfX .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCLIbJ5mfX .row {
    text-align: center;
  }
  .cid-uCLIbJ5mfX .social-row {
    justify-content: center;
  }
}
.cid-uCLIbJ5mfX .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCLIbJ5mfX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCLIbJ5mfX .list {
    margin-bottom: 0rem;
  }
}
.cid-uCLIbJ5mfX .mbr-text {
  color: #ffffff;
}
.cid-uCLIbJ5mfX .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCLArOdrPu {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uCLArOdrPu img,
.cid-uCLArOdrPu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uCLArOdrPu .item:focus,
.cid-uCLArOdrPu span:focus {
  outline: none;
}
.cid-uCLArOdrPu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uCLArOdrPu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uCLArOdrPu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uCLArOdrPu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCLArOdrPu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uCLArOdrPu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uCLArOdrPu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uCLArOdrPu .mbr-section-title {
  color: #910909;
  text-align: center;
}
.cid-uCLArOdrPu .mbr-text,
.cid-uCLArOdrPu .mbr-section-btn {
  text-align: left;
}
.cid-uCLArOdrPu .item-title {
  text-align: left;
}
.cid-uCLArOdrPu .item-subtitle {
  text-align: left;
}
.cid-uCM8F7pnEn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCM8F7pnEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8F7pnEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM8F7pnEn .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8F7pnEn .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCM8F7pnEn .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCM8F7pnEn .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCM8F7pnEn .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCM8F7pnEn .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCM8F7pnEn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8F7pnEn .mbr-text,
.cid-uCM8F7pnEn .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8F7pnEn .mbr-section-title,
.cid-uCM8F7pnEn .mbr-section-btn {
  text-align: center;
}
.cid-uCM8G2hoNQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCM8G2hoNQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM8G2hoNQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCM8G2hoNQ .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM8G2hoNQ .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCM8G2hoNQ .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCM8G2hoNQ .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCM8G2hoNQ .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCM8G2hoNQ .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCM8G2hoNQ .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCM8G2hoNQ .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCM8G2hoNQ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCM8G2hoNQ .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCM8G2hoNQ .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCM8G2hoNQ .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCM8G2hoNQ .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCM8G2hoNQ .mbr-section-title {
  color: #ffffff;
}
.cid-uCM8G2hoNQ .mbr-text,
.cid-uCM8G2hoNQ .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCM8G2hoNQ .mbr-section-title,
.cid-uCM8G2hoNQ .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCM8G2hoNQ .content-wrapper {
    min-height: 360px;
  }
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-uCMafudwR8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCMafudwR8 nav.navbar {
  position: fixed;
}
.cid-uCMafudwR8 .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-uCMafudwR8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMafudwR8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMafudwR8 .dropdown-item:hover,
.cid-uCMafudwR8 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCMafudwR8 .dropdown-item:hover span {
  color: white;
}
.cid-uCMafudwR8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMafudwR8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMafudwR8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMafudwR8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMafudwR8 .nav-link {
  position: relative;
}
.cid-uCMafudwR8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCMafudwR8 .container {
    flex-wrap: wrap;
  }
}
.cid-uCMafudwR8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCMafudwR8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCMafudwR8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCMafudwR8 .dropdown-menu,
.cid-uCMafudwR8 .navbar.opened {
  background: #000000 !important;
}
.cid-uCMafudwR8 .nav-item:focus,
.cid-uCMafudwR8 .nav-link:focus {
  outline: none;
}
.cid-uCMafudwR8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMafudwR8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMafudwR8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMafudwR8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMafudwR8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMafudwR8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMafudwR8 .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: #000000;
}
.cid-uCMafudwR8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMafudwR8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMafudwR8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMafudwR8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMafudwR8 .navbar.collapsed {
  justify-content: center;
}
.cid-uCMafudwR8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMafudwR8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMafudwR8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCMafudwR8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMafudwR8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMafudwR8 .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-uCMafudwR8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMafudwR8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMafudwR8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMafudwR8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMafudwR8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMafudwR8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMafudwR8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMafudwR8 .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-uCMafudwR8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMafudwR8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMafudwR8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMafudwR8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMafudwR8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMafudwR8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMafudwR8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMafudwR8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCMafudwR8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMafudwR8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCMafudwR8 .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-uCMafudwR8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMafudwR8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMafudwR8 .dropdown-item.active,
.cid-uCMafudwR8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMafudwR8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMafudwR8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMafudwR8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMafudwR8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCMafudwR8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMafudwR8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMafudwR8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMafudwR8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCMafudwR8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCMafudwR8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCMafudwR8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCMafudwR8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCMafudwR8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCMafudwR8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCMafudwR8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCMafudwR8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMafudwR8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMafudwR8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCMafudwR8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMafudwR8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMafudwR8 .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-uCMafudwR8 .navbar {
    height: 70px;
  }
  .cid-uCMafudwR8 .navbar.opened {
    height: auto;
  }
  .cid-uCMafudwR8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMavrXjSp {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCMavrXjSp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMavrXjSp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMavrXjSp .item {
  padding-bottom: 2rem;
}
.cid-uCMavrXjSp .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCMavrXjSp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCMavrXjSp .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-uCMavrXjSp .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCMavrXjSp .carousel-control,
.cid-uCMavrXjSp .close {
  background: #1b1b1b;
}
.cid-uCMavrXjSp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCMavrXjSp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCMavrXjSp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCMavrXjSp .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCMavrXjSp .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-uCMavrXjSp .close::before {
  content: '\e91a';
}
.cid-uCMavrXjSp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCMavrXjSp .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-uCMavrXjSp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCMavrXjSp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCMavrXjSp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCMavrXjSp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCMavrXjSp .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-uCMavrXjSp .carousel-indicators li.active,
.cid-uCMavrXjSp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCMavrXjSp .carousel-indicators li::after,
.cid-uCMavrXjSp .carousel-indicators li::before {
  content: none;
}
.cid-uCMavrXjSp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCMavrXjSp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCMavrXjSp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCMavrXjSp .carousel-indicators {
    display: none;
  }
}
.cid-uCMavrXjSp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCMavrXjSp .carousel-inner > .active {
  display: block;
}
.cid-uCMavrXjSp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCMavrXjSp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCMavrXjSp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCMavrXjSp .carousel-control,
  .cid-uCMavrXjSp .carousel-indicators,
  .cid-uCMavrXjSp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCMavrXjSp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCMavrXjSp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCMavrXjSp .carousel-indicators .active,
.cid-uCMavrXjSp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCMavrXjSp .carousel-indicators .active {
  background: #fff;
}
.cid-uCMavrXjSp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCMavrXjSp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCMavrXjSp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCMavrXjSp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCMavrXjSp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCMavrXjSp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCMavrXjSp .carousel {
  width: 100%;
}
.cid-uCMavrXjSp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCMavrXjSp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCMavrXjSp .modal.fade .modal-dialog,
.cid-uCMavrXjSp .modal.in .modal-dialog {
  transform: none;
}
.cid-uCMavrXjSp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCMavrXjSp H6 {
  text-align: center;
}
.cid-uCMafvKkSm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCMafvKkSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMafvKkSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMafvKkSm .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCMafvKkSm .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCMafvKkSm .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCMafvKkSm .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCMafvKkSm .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCMafvKkSm .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCMafvKkSm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCMafvKkSm .mbr-text,
.cid-uCMafvKkSm .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCMafvKkSm .mbr-section-title,
.cid-uCMafvKkSm .mbr-section-btn {
  text-align: center;
}
.cid-uCMafw8R9k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCMafw8R9k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMafw8R9k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCMafw8R9k .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCMafw8R9k .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCMafw8R9k .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCMafw8R9k .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCMafw8R9k .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCMafw8R9k .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCMafw8R9k .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCMafw8R9k .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCMafw8R9k .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCMafw8R9k .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCMafw8R9k .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCMafw8R9k .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCMafw8R9k .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCMafw8R9k .mbr-section-title {
  color: #ffffff;
}
.cid-uCMafw8R9k .mbr-text,
.cid-uCMafw8R9k .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCMafw8R9k .mbr-section-title,
.cid-uCMafw8R9k .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCMafw8R9k .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCMafwvcOs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCMafwvcOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMafwvcOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMafwvcOs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCMafwvcOs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCMafwvcOs .row {
    text-align: center;
  }
  .cid-uCMafwvcOs .social-row {
    justify-content: center;
  }
}
.cid-uCMafwvcOs .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCMafwvcOs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCMafwvcOs .list {
    margin-bottom: 0rem;
  }
}
.cid-uCMafwvcOs .mbr-text {
  color: #ffffff;
}
.cid-uCMafwvcOs .mbr-iconfont {
  color: black;
}
.cid-uCMcR3u9LW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCMcR3u9LW nav.navbar {
  position: fixed;
}
.cid-uCMcR3u9LW .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-uCMcR3u9LW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMcR3u9LW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMcR3u9LW .dropdown-item:hover,
.cid-uCMcR3u9LW .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCMcR3u9LW .dropdown-item:hover span {
  color: white;
}
.cid-uCMcR3u9LW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMcR3u9LW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMcR3u9LW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMcR3u9LW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMcR3u9LW .nav-link {
  position: relative;
}
.cid-uCMcR3u9LW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCMcR3u9LW .container {
    flex-wrap: wrap;
  }
}
.cid-uCMcR3u9LW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCMcR3u9LW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCMcR3u9LW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCMcR3u9LW .dropdown-menu,
.cid-uCMcR3u9LW .navbar.opened {
  background: #000000 !important;
}
.cid-uCMcR3u9LW .nav-item:focus,
.cid-uCMcR3u9LW .nav-link:focus {
  outline: none;
}
.cid-uCMcR3u9LW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMcR3u9LW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMcR3u9LW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMcR3u9LW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMcR3u9LW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMcR3u9LW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMcR3u9LW .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: #000000;
}
.cid-uCMcR3u9LW .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMcR3u9LW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMcR3u9LW .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMcR3u9LW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMcR3u9LW .navbar.collapsed {
  justify-content: center;
}
.cid-uCMcR3u9LW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMcR3u9LW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMcR3u9LW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCMcR3u9LW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMcR3u9LW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMcR3u9LW .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-uCMcR3u9LW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMcR3u9LW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMcR3u9LW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMcR3u9LW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMcR3u9LW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMcR3u9LW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMcR3u9LW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMcR3u9LW .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-uCMcR3u9LW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMcR3u9LW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMcR3u9LW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMcR3u9LW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMcR3u9LW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMcR3u9LW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMcR3u9LW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMcR3u9LW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCMcR3u9LW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMcR3u9LW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCMcR3u9LW .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-uCMcR3u9LW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMcR3u9LW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMcR3u9LW .dropdown-item.active,
.cid-uCMcR3u9LW .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMcR3u9LW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMcR3u9LW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMcR3u9LW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMcR3u9LW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCMcR3u9LW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMcR3u9LW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMcR3u9LW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMcR3u9LW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCMcR3u9LW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCMcR3u9LW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCMcR3u9LW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCMcR3u9LW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCMcR3u9LW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCMcR3u9LW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCMcR3u9LW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCMcR3u9LW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMcR3u9LW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMcR3u9LW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCMcR3u9LW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMcR3u9LW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMcR3u9LW .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-uCMcR3u9LW .navbar {
    height: 70px;
  }
  .cid-uCMcR3u9LW .navbar.opened {
    height: auto;
  }
  .cid-uCMcR3u9LW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMd2EufPQ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCMd2EufPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMd2EufPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMd2EufPQ .item {
  padding-bottom: 2rem;
}
.cid-uCMd2EufPQ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCMd2EufPQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCMd2EufPQ .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-uCMd2EufPQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCMd2EufPQ .carousel-control,
.cid-uCMd2EufPQ .close {
  background: #1b1b1b;
}
.cid-uCMd2EufPQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCMd2EufPQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCMd2EufPQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCMd2EufPQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCMd2EufPQ .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-uCMd2EufPQ .close::before {
  content: '\e91a';
}
.cid-uCMd2EufPQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCMd2EufPQ .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-uCMd2EufPQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCMd2EufPQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCMd2EufPQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCMd2EufPQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCMd2EufPQ .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-uCMd2EufPQ .carousel-indicators li.active,
.cid-uCMd2EufPQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCMd2EufPQ .carousel-indicators li::after,
.cid-uCMd2EufPQ .carousel-indicators li::before {
  content: none;
}
.cid-uCMd2EufPQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCMd2EufPQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCMd2EufPQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCMd2EufPQ .carousel-indicators {
    display: none;
  }
}
.cid-uCMd2EufPQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCMd2EufPQ .carousel-inner > .active {
  display: block;
}
.cid-uCMd2EufPQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCMd2EufPQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCMd2EufPQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCMd2EufPQ .carousel-control,
  .cid-uCMd2EufPQ .carousel-indicators,
  .cid-uCMd2EufPQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCMd2EufPQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCMd2EufPQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCMd2EufPQ .carousel-indicators .active,
.cid-uCMd2EufPQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCMd2EufPQ .carousel-indicators .active {
  background: #fff;
}
.cid-uCMd2EufPQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCMd2EufPQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCMd2EufPQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCMd2EufPQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCMd2EufPQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCMd2EufPQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCMd2EufPQ .carousel {
  width: 100%;
}
.cid-uCMd2EufPQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCMd2EufPQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCMd2EufPQ .modal.fade .modal-dialog,
.cid-uCMd2EufPQ .modal.in .modal-dialog {
  transform: none;
}
.cid-uCMd2EufPQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCMd2EufPQ H6 {
  text-align: center;
}
.cid-uCMcR4JTSf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCMcR4JTSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMcR4JTSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMcR4JTSf .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCMcR4JTSf .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCMcR4JTSf .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCMcR4JTSf .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCMcR4JTSf .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCMcR4JTSf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCMcR4JTSf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCMcR4JTSf .mbr-text,
.cid-uCMcR4JTSf .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCMcR4JTSf .mbr-section-title,
.cid-uCMcR4JTSf .mbr-section-btn {
  text-align: center;
}
.cid-uCMcR564Bp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCMcR564Bp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMcR564Bp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCMcR564Bp .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCMcR564Bp .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCMcR564Bp .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCMcR564Bp .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCMcR564Bp .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCMcR564Bp .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCMcR564Bp .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCMcR564Bp .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCMcR564Bp .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCMcR564Bp .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCMcR564Bp .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCMcR564Bp .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCMcR564Bp .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCMcR564Bp .mbr-section-title {
  color: #ffffff;
}
.cid-uCMcR564Bp .mbr-text,
.cid-uCMcR564Bp .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCMcR564Bp .mbr-section-title,
.cid-uCMcR564Bp .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCMcR564Bp .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCMcR5sQFw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCMcR5sQFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMcR5sQFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMcR5sQFw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCMcR5sQFw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCMcR5sQFw .row {
    text-align: center;
  }
  .cid-uCMcR5sQFw .social-row {
    justify-content: center;
  }
}
.cid-uCMcR5sQFw .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCMcR5sQFw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCMcR5sQFw .list {
    margin-bottom: 0rem;
  }
}
.cid-uCMcR5sQFw .mbr-text {
  color: #ffffff;
}
.cid-uCMcR5sQFw .mbr-iconfont {
  color: black;
}
.cid-uCMevYTMqK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCMevYTMqK nav.navbar {
  position: fixed;
}
.cid-uCMevYTMqK .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-uCMevYTMqK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMevYTMqK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMevYTMqK .dropdown-item:hover,
.cid-uCMevYTMqK .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uCMevYTMqK .dropdown-item:hover span {
  color: white;
}
.cid-uCMevYTMqK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMevYTMqK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMevYTMqK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMevYTMqK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMevYTMqK .nav-link {
  position: relative;
}
.cid-uCMevYTMqK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCMevYTMqK .container {
    flex-wrap: wrap;
  }
}
.cid-uCMevYTMqK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uCMevYTMqK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uCMevYTMqK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCMevYTMqK .dropdown-menu,
.cid-uCMevYTMqK .navbar.opened {
  background: #000000 !important;
}
.cid-uCMevYTMqK .nav-item:focus,
.cid-uCMevYTMqK .nav-link:focus {
  outline: none;
}
.cid-uCMevYTMqK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMevYTMqK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMevYTMqK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMevYTMqK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMevYTMqK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMevYTMqK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMevYTMqK .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: #000000;
}
.cid-uCMevYTMqK .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMevYTMqK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMevYTMqK .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMevYTMqK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMevYTMqK .navbar.collapsed {
  justify-content: center;
}
.cid-uCMevYTMqK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMevYTMqK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMevYTMqK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uCMevYTMqK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMevYTMqK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMevYTMqK .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-uCMevYTMqK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMevYTMqK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMevYTMqK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMevYTMqK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMevYTMqK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMevYTMqK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMevYTMqK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMevYTMqK .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-uCMevYTMqK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMevYTMqK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMevYTMqK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMevYTMqK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMevYTMqK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMevYTMqK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMevYTMqK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMevYTMqK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCMevYTMqK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMevYTMqK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCMevYTMqK .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-uCMevYTMqK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMevYTMqK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMevYTMqK .dropdown-item.active,
.cid-uCMevYTMqK .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMevYTMqK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMevYTMqK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMevYTMqK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMevYTMqK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uCMevYTMqK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMevYTMqK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMevYTMqK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMevYTMqK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCMevYTMqK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCMevYTMqK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCMevYTMqK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCMevYTMqK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCMevYTMqK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCMevYTMqK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCMevYTMqK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCMevYTMqK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMevYTMqK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMevYTMqK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCMevYTMqK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMevYTMqK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMevYTMqK .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-uCMevYTMqK .navbar {
    height: 70px;
  }
  .cid-uCMevYTMqK .navbar.opened {
    height: auto;
  }
  .cid-uCMevYTMqK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMeHhfsvb {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCMeHhfsvb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMeHhfsvb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMeHhfsvb .item {
  padding-bottom: 2rem;
}
.cid-uCMeHhfsvb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uCMeHhfsvb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uCMeHhfsvb .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-uCMeHhfsvb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uCMeHhfsvb .carousel-control,
.cid-uCMeHhfsvb .close {
  background: #1b1b1b;
}
.cid-uCMeHhfsvb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uCMeHhfsvb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uCMeHhfsvb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uCMeHhfsvb .carousel-control-next span {
  margin-left: 5px;
}
.cid-uCMeHhfsvb .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-uCMeHhfsvb .close::before {
  content: '\e91a';
}
.cid-uCMeHhfsvb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uCMeHhfsvb .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-uCMeHhfsvb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCMeHhfsvb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCMeHhfsvb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCMeHhfsvb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uCMeHhfsvb .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-uCMeHhfsvb .carousel-indicators li.active,
.cid-uCMeHhfsvb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCMeHhfsvb .carousel-indicators li::after,
.cid-uCMeHhfsvb .carousel-indicators li::before {
  content: none;
}
.cid-uCMeHhfsvb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCMeHhfsvb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uCMeHhfsvb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uCMeHhfsvb .carousel-indicators {
    display: none;
  }
}
.cid-uCMeHhfsvb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uCMeHhfsvb .carousel-inner > .active {
  display: block;
}
.cid-uCMeHhfsvb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCMeHhfsvb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCMeHhfsvb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uCMeHhfsvb .carousel-control,
  .cid-uCMeHhfsvb .carousel-indicators,
  .cid-uCMeHhfsvb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uCMeHhfsvb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uCMeHhfsvb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uCMeHhfsvb .carousel-indicators .active,
.cid-uCMeHhfsvb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uCMeHhfsvb .carousel-indicators .active {
  background: #fff;
}
.cid-uCMeHhfsvb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uCMeHhfsvb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uCMeHhfsvb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCMeHhfsvb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uCMeHhfsvb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uCMeHhfsvb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uCMeHhfsvb .carousel {
  width: 100%;
}
.cid-uCMeHhfsvb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uCMeHhfsvb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uCMeHhfsvb .modal.fade .modal-dialog,
.cid-uCMeHhfsvb .modal.in .modal-dialog {
  transform: none;
}
.cid-uCMeHhfsvb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uCMeHhfsvb H6 {
  text-align: center;
}
.cid-uCMew096gB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uCMew096gB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMew096gB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMew096gB .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCMew096gB .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCMew096gB .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCMew096gB .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCMew096gB .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uCMew096gB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCMew096gB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCMew096gB .mbr-text,
.cid-uCMew096gB .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uCMew096gB .mbr-section-title,
.cid-uCMew096gB .mbr-section-btn {
  text-align: center;
}
.cid-uCMew0upKn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uCMew0upKn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMew0upKn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uCMew0upKn .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCMew0upKn .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCMew0upKn .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uCMew0upKn .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uCMew0upKn .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uCMew0upKn .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uCMew0upKn .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uCMew0upKn .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uCMew0upKn .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCMew0upKn .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCMew0upKn .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uCMew0upKn .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uCMew0upKn .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uCMew0upKn .mbr-section-title {
  color: #ffffff;
}
.cid-uCMew0upKn .mbr-text,
.cid-uCMew0upKn .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uCMew0upKn .mbr-section-title,
.cid-uCMew0upKn .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCMew0upKn .content-wrapper {
    min-height: 360px;
  }
}
.cid-uCMew0QlQf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCMew0QlQf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMew0QlQf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMew0QlQf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uCMew0QlQf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uCMew0QlQf .row {
    text-align: center;
  }
  .cid-uCMew0QlQf .social-row {
    justify-content: center;
  }
}
.cid-uCMew0QlQf .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uCMew0QlQf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCMew0QlQf .list {
    margin-bottom: 0rem;
  }
}
.cid-uCMew0QlQf .mbr-text {
  color: #ffffff;
}
.cid-uCMew0QlQf .mbr-iconfont {
  color: black;
}
.cid-uDqXVCQGal {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDqXVCQGal nav.navbar {
  position: fixed;
}
.cid-uDqXVCQGal .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-uDqXVCQGal .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDqXVCQGal .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDqXVCQGal .dropdown-item:hover,
.cid-uDqXVCQGal .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uDqXVCQGal .dropdown-item:hover span {
  color: white;
}
.cid-uDqXVCQGal .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDqXVCQGal .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDqXVCQGal .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uDqXVCQGal .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDqXVCQGal .nav-link {
  position: relative;
}
.cid-uDqXVCQGal .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uDqXVCQGal .container {
    flex-wrap: wrap;
  }
}
.cid-uDqXVCQGal .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uDqXVCQGal .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uDqXVCQGal .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDqXVCQGal .dropdown-menu,
.cid-uDqXVCQGal .navbar.opened {
  background: #000000 !important;
}
.cid-uDqXVCQGal .nav-item:focus,
.cid-uDqXVCQGal .nav-link:focus {
  outline: none;
}
.cid-uDqXVCQGal .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDqXVCQGal .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDqXVCQGal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDqXVCQGal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDqXVCQGal .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDqXVCQGal .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDqXVCQGal .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: #000000;
}
.cid-uDqXVCQGal .navbar.opened {
  transition: all 0.3s;
}
.cid-uDqXVCQGal .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDqXVCQGal .navbar .navbar-logo img {
  width: auto;
}
.cid-uDqXVCQGal .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDqXVCQGal .navbar.collapsed {
  justify-content: center;
}
.cid-uDqXVCQGal .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDqXVCQGal .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDqXVCQGal .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uDqXVCQGal .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDqXVCQGal .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDqXVCQGal .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-uDqXVCQGal .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDqXVCQGal .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDqXVCQGal .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDqXVCQGal .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDqXVCQGal .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDqXVCQGal .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDqXVCQGal .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDqXVCQGal .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-uDqXVCQGal .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDqXVCQGal .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDqXVCQGal .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDqXVCQGal .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDqXVCQGal .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDqXVCQGal .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uDqXVCQGal .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uDqXVCQGal .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDqXVCQGal .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDqXVCQGal .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDqXVCQGal .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-uDqXVCQGal .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDqXVCQGal .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDqXVCQGal .dropdown-item.active,
.cid-uDqXVCQGal .dropdown-item:active {
  background-color: transparent;
}
.cid-uDqXVCQGal .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDqXVCQGal .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDqXVCQGal .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDqXVCQGal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uDqXVCQGal .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDqXVCQGal .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDqXVCQGal ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDqXVCQGal .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDqXVCQGal button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDqXVCQGal button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uDqXVCQGal button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDqXVCQGal button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDqXVCQGal button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDqXVCQGal button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDqXVCQGal nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDqXVCQGal nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDqXVCQGal nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDqXVCQGal nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDqXVCQGal .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDqXVCQGal a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDqXVCQGal .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-uDqXVCQGal .navbar {
    height: 70px;
  }
  .cid-uDqXVCQGal .navbar.opened {
    height: auto;
  }
  .cid-uDqXVCQGal .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDqXVDcQoB {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDqXVDcQoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDqXVDcQoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDqXVDcQoB .item {
  padding-bottom: 2rem;
}
.cid-uDqXVDcQoB .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uDqXVDcQoB .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uDqXVDcQoB .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-uDqXVDcQoB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uDqXVDcQoB .carousel-control,
.cid-uDqXVDcQoB .close {
  background: #1b1b1b;
}
.cid-uDqXVDcQoB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uDqXVDcQoB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uDqXVDcQoB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uDqXVDcQoB .carousel-control-next span {
  margin-left: 5px;
}
.cid-uDqXVDcQoB .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-uDqXVDcQoB .close::before {
  content: '\e91a';
}
.cid-uDqXVDcQoB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uDqXVDcQoB .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-uDqXVDcQoB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uDqXVDcQoB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uDqXVDcQoB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uDqXVDcQoB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uDqXVDcQoB .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-uDqXVDcQoB .carousel-indicators li.active,
.cid-uDqXVDcQoB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uDqXVDcQoB .carousel-indicators li::after,
.cid-uDqXVDcQoB .carousel-indicators li::before {
  content: none;
}
.cid-uDqXVDcQoB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uDqXVDcQoB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uDqXVDcQoB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDqXVDcQoB .carousel-indicators {
    display: none;
  }
}
.cid-uDqXVDcQoB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uDqXVDcQoB .carousel-inner > .active {
  display: block;
}
.cid-uDqXVDcQoB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uDqXVDcQoB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uDqXVDcQoB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uDqXVDcQoB .carousel-control,
  .cid-uDqXVDcQoB .carousel-indicators,
  .cid-uDqXVDcQoB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uDqXVDcQoB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uDqXVDcQoB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uDqXVDcQoB .carousel-indicators .active,
.cid-uDqXVDcQoB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uDqXVDcQoB .carousel-indicators .active {
  background: #fff;
}
.cid-uDqXVDcQoB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uDqXVDcQoB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uDqXVDcQoB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uDqXVDcQoB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uDqXVDcQoB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uDqXVDcQoB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uDqXVDcQoB .carousel {
  width: 100%;
}
.cid-uDqXVDcQoB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uDqXVDcQoB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uDqXVDcQoB .modal.fade .modal-dialog,
.cid-uDqXVDcQoB .modal.in .modal-dialog {
  transform: none;
}
.cid-uDqXVDcQoB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uDqXVDcQoB H6 {
  text-align: center;
}
.cid-uDqXVE6Lf0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uDqXVE6Lf0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDqXVE6Lf0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDqXVE6Lf0 .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uDqXVE6Lf0 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uDqXVE6Lf0 .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uDqXVE6Lf0 .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uDqXVE6Lf0 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uDqXVE6Lf0 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uDqXVE6Lf0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uDqXVE6Lf0 .mbr-text,
.cid-uDqXVE6Lf0 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uDqXVE6Lf0 .mbr-section-title,
.cid-uDqXVE6Lf0 .mbr-section-btn {
  text-align: center;
}
.cid-uDqXVElVWh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.cid-uDqXVElVWh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDqXVElVWh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpeg");
}
.cid-uDqXVElVWh .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uDqXVElVWh .container-fluid {
    padding: 0 20px;
  }
}
.cid-uDqXVElVWh .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uDqXVElVWh .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uDqXVElVWh .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uDqXVElVWh .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uDqXVElVWh .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uDqXVElVWh .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uDqXVElVWh .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uDqXVElVWh .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uDqXVElVWh .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uDqXVElVWh .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uDqXVElVWh .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uDqXVElVWh .mbr-section-title {
  color: #ffffff;
}
.cid-uDqXVElVWh .mbr-text,
.cid-uDqXVElVWh .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uDqXVElVWh .mbr-section-title,
.cid-uDqXVElVWh .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uDqXVElVWh .content-wrapper {
    min-height: 360px;
  }
}
.cid-uDqXVECkBF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uDqXVECkBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDqXVECkBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDqXVECkBF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uDqXVECkBF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uDqXVECkBF .row {
    text-align: center;
  }
  .cid-uDqXVECkBF .social-row {
    justify-content: center;
  }
}
.cid-uDqXVECkBF .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uDqXVECkBF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDqXVECkBF .list {
    margin-bottom: 0rem;
  }
}
.cid-uDqXVECkBF .mbr-text {
  color: #ffffff;
}
.cid-uDqXVECkBF .mbr-iconfont {
  color: black;
}
.cid-ugO1T59HH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugO1T59HH7 nav.navbar {
  position: fixed;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugO1T59HH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugO1T59HH7 .dropdown-item:hover,
.cid-ugO1T59HH7 .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-ugO1T59HH7 .dropdown-item:hover span {
  color: white;
}
.cid-ugO1T59HH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugO1T59HH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugO1T59HH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugO1T59HH7 .nav-link {
  position: relative;
}
.cid-ugO1T59HH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugO1T59HH7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown-menu,
.cid-ugO1T59HH7 .navbar.opened {
  background: #000000 !important;
}
.cid-ugO1T59HH7 .nav-item:focus,
.cid-ugO1T59HH7 .nav-link:focus {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugO1T59HH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugO1T59HH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugO1T59HH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugO1T59HH7 .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: #000000;
}
.cid-ugO1T59HH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugO1T59HH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugO1T59HH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugO1T59HH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugO1T59HH7 .navbar.collapsed {
  justify-content: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugO1T59HH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugO1T59HH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugO1T59HH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugO1T59HH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugO1T59HH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugO1T59HH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugO1T59HH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugO1T59HH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugO1T59HH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugO1T59HH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugO1T59HH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugO1T59HH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugO1T59HH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugO1T59HH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugO1T59HH7 .dropdown-item.active,
.cid-ugO1T59HH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugO1T59HH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugO1T59HH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ugO1T59HH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugO1T59HH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugO1T59HH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugO1T59HH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugO1T59HH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugO1T59HH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugO1T59HH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugO1T59HH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugO1T59HH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugO1T59HH7 .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-ugO1T59HH7 .navbar {
    height: 70px;
  }
  .cid-ugO1T59HH7 .navbar.opened {
    height: auto;
  }
  .cid-ugO1T59HH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH259hhpKQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-uH259hhpKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH259hhpKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH259hhpKQ .row {
  justify-content: center;
}
.cid-uH259hhpKQ .video-block {
  margin-bottom: 20px;
}
.cid-uH259hhpKQ .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-uH259hhpKQ .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-uH259hhpKQ .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-uH259hhpKQ .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uH259hhpKQ .mbr-section-title {
  color: #E0BDB6;
}
.cid-uH259hhpKQ .mbr-date {
  color: #747474;
}
.cid-uH259hhpKQ .mbr-text {
  color: #747474;
}
.cid-uH259hhpKQ .mbr-section-title,
.cid-uH259hhpKQ .mbr-section-btn {
  color: #000000;
}
.cid-ugkILk4fBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugkILk4fBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkILk4fBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkILk4fBl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ugkILk4fBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugkILk4fBl .row {
    text-align: center;
  }
  .cid-ugkILk4fBl .social-row {
    justify-content: center;
  }
}
.cid-ugkILk4fBl .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ugkILk4fBl .list {
    margin-bottom: 0rem;
  }
}
.cid-ugkILk4fBl .mbr-text {
  color: #ffffff;
}
.cid-ugkILk4fBl .mbr-iconfont {
  color: black;
}
.cid-uH24wTkgzS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uH24wTkgzS nav.navbar {
  position: fixed;
}
.cid-uH24wTkgzS .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-uH24wTkgzS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uH24wTkgzS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uH24wTkgzS .dropdown-item:hover,
.cid-uH24wTkgzS .dropdown-item:focus {
  background: #910909 !important;
  color: white !important;
}
.cid-uH24wTkgzS .dropdown-item:hover span {
  color: white;
}
.cid-uH24wTkgzS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uH24wTkgzS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uH24wTkgzS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uH24wTkgzS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH24wTkgzS .nav-link {
  position: relative;
}
.cid-uH24wTkgzS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uH24wTkgzS .container {
    flex-wrap: wrap;
  }
}
.cid-uH24wTkgzS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uH24wTkgzS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uH24wTkgzS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH24wTkgzS .dropdown-menu,
.cid-uH24wTkgzS .navbar.opened {
  background: #000000 !important;
}
.cid-uH24wTkgzS .nav-item:focus,
.cid-uH24wTkgzS .nav-link:focus {
  outline: none;
}
.cid-uH24wTkgzS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uH24wTkgzS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH24wTkgzS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH24wTkgzS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH24wTkgzS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH24wTkgzS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH24wTkgzS .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: #000000;
}
.cid-uH24wTkgzS .navbar.opened {
  transition: all 0.3s;
}
.cid-uH24wTkgzS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH24wTkgzS .navbar .navbar-logo img {
  width: auto;
}
.cid-uH24wTkgzS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH24wTkgzS .navbar.collapsed {
  justify-content: center;
}
.cid-uH24wTkgzS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH24wTkgzS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH24wTkgzS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uH24wTkgzS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH24wTkgzS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH24wTkgzS .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-uH24wTkgzS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH24wTkgzS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH24wTkgzS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH24wTkgzS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH24wTkgzS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH24wTkgzS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH24wTkgzS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH24wTkgzS .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-uH24wTkgzS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH24wTkgzS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH24wTkgzS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH24wTkgzS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH24wTkgzS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH24wTkgzS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uH24wTkgzS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uH24wTkgzS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uH24wTkgzS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH24wTkgzS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH24wTkgzS .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-uH24wTkgzS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH24wTkgzS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH24wTkgzS .dropdown-item.active,
.cid-uH24wTkgzS .dropdown-item:active {
  background-color: transparent;
}
.cid-uH24wTkgzS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH24wTkgzS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH24wTkgzS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH24wTkgzS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uH24wTkgzS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH24wTkgzS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH24wTkgzS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH24wTkgzS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH24wTkgzS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH24wTkgzS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uH24wTkgzS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH24wTkgzS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH24wTkgzS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH24wTkgzS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH24wTkgzS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH24wTkgzS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH24wTkgzS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH24wTkgzS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH24wTkgzS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH24wTkgzS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH24wTkgzS .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-uH24wTkgzS .navbar {
    height: 70px;
  }
  .cid-uH24wTkgzS .navbar.opened {
    height: auto;
  }
  .cid-uH24wTkgzS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH25cqZ2By {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-uH25cqZ2By .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH25cqZ2By .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH25cqZ2By .row {
  justify-content: center;
}
.cid-uH25cqZ2By .video-block {
  margin-bottom: 20px;
}
.cid-uH25cqZ2By .video-block .video-wrapper .app-video-wrapper:before {
  font-size: 50px;
  color: #47b5ed;
  background-color: #910909;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}
.cid-uH25cqZ2By .title-wrapper .mbr-date {
  margin-bottom: 16px;
}
.cid-uH25cqZ2By .title-wrapper .mbr-section-title {
  margin-bottom: 26px;
}
.cid-uH25cqZ2By .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uH25cqZ2By .mbr-section-title {
  color: #E0BDB6;
}
.cid-uH25cqZ2By .mbr-date {
  color: #747474;
}
.cid-uH25cqZ2By .mbr-text {
  color: #747474;
}
.cid-uH25cqZ2By .mbr-section-title,
.cid-uH25cqZ2By .mbr-section-btn {
  color: #000000;
}
.cid-uH24wTCgAx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uH24wTCgAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH24wTCgAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH24wTCgAx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH24wTCgAx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uH24wTCgAx .row {
    text-align: center;
  }
  .cid-uH24wTCgAx .social-row {
    justify-content: center;
  }
}
.cid-uH24wTCgAx .list {
  list-style: none;
  padding-left: 0;
  color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uH24wTCgAx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH24wTCgAx .list {
    margin-bottom: 0rem;
  }
}
.cid-uH24wTCgAx .mbr-text {
  color: #ffffff;
}
.cid-uH24wTCgAx .mbr-iconfont {
  color: black;
}
