.btn {
  border-width: 2px;
}
body {
  font-family: Schibsted Grotesk;
}
.display-1 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.0625rem;
}
.display-5 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Schibsted Grotesk', 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: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #5eabdf !important;
}
.bg-success {
  background-color: #75d4f0 !important;
}
.bg-info {
  background-color: #86ecfa !important;
}
.bg-warning {
  background-color: #6f50b2 !important;
}
.bg-danger {
  background-color: #f79f00 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5eabdf !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2682c0 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2682c0 !important;
  border-color: #2682c0 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #7d8588 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #53595b !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #53595b !important;
  border-color: #53595b !important;
}
.btn-info,
.btn-info:active {
  background-color: #86ecfa !important;
  border: none  !important;
  color: #056e7c !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #022429 !important;
  background-color: #33dff7 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #056e7c !important;
  background-color: #33dff7 !important;
  border-color: #33dff7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #75d4f0 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #27bce7 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #27bce7 !important;
  border-color: #27bce7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #6f50b2 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #493477 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #493477 !important;
  border-color: #493477 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f79f00 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a06700 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a06700 !important;
  border-color: #a06700 !important;
}
.btn-white,
.btn-white:active {
  background-color: #efefef !important;
  border: none  !important;
  color: #707070 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: #c4c4c4 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #707070 !important;
  background-color: #c4c4c4 !important;
  border-color: #c4c4c4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #010101 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #5eabdf;
  color: #5eabdf;
  border-radius: 0 !important;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2682c0 !important;
  background-color: transparent!important;
  border-color: #2682c0 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5eabdf !important;
  border-color: #5eabdf !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #7d8588;
  color: #7d8588;
  border-radius: 0 !important;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #53595b !important;
  background-color: transparent!important;
  border-color: #53595b !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7d8588 !important;
  border-color: #7d8588 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #86ecfa;
  color: #86ecfa;
  border-radius: 0 !important;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #33dff7 !important;
  background-color: transparent!important;
  border-color: #33dff7 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #056e7c !important;
  background-color: #86ecfa !important;
  border-color: #86ecfa !important;
}
.btn-success-outline,
.btn-success-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #75d4f0;
  color: #75d4f0;
  border-radius: 0 !important;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #27bce7 !important;
  background-color: transparent!important;
  border-color: #27bce7 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #75d4f0 !important;
  border-color: #75d4f0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #6f50b2;
  color: #6f50b2;
  border-radius: 0 !important;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #493477 !important;
  background-color: transparent!important;
  border-color: #493477 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #6f50b2 !important;
  border-color: #6f50b2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #f79f00;
  color: #f79f00;
  border-radius: 0 !important;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a06700 !important;
  background-color: transparent!important;
  border-color: #a06700 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f79f00 !important;
  border-color: #f79f00 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #010101;
  color: #010101;
  border-radius: 0 !important;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.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: #010101 !important;
  border-color: #010101 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #efefef;
  color: #efefef;
  border-radius: 0 !important;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #c4c4c4 !important;
  background-color: transparent!important;
  border-color: #c4c4c4 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.text-primary {
  color: #5eabdf !important;
}
.text-secondary {
  color: #7d8588 !important;
}
.text-success {
  color: #75d4f0 !important;
}
.text-info {
  color: #86ecfa !important;
}
.text-warning {
  color: #6f50b2 !important;
}
.text-danger {
  color: #f79f00 !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-black {
  color: #24262b !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2479b3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4c5153 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #19b7e6 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #24ddf6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #43306c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #915d00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #bcbcbc !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: #5eabdf;
}
.nav-tabs .nav-link:not(.active) {
  color: #24262b;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #86ecfa;
}
.alert-warning {
  background-color: #6f50b2;
}
.alert-danger {
  background-color: #f79f00;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5eabdf;
  border-color: #5eabdf;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5eabdf;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #b8a9d9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffeac4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.0625rem;
}
.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: #5eabdf !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.0625rem;
}
blockquote {
  border-color: #5eabdf;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5eabdf;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5eabdf;
}
.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: #5eabdf;
  border-bottom-color: #5eabdf;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #5eabdf !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: #7d8588 !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='%235eabdf' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  position: relative;
  max-width: 1380px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 1399px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.row {
  margin-left: -16px;
  margin-right: -16px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 16px;
  padding-right: 16px;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 52px;
  padding: 10px 30px;
  border-radius: 3px;
  transition: all .3s;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: transform .3s;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(0.5rem);
}
.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black {
  color: #FFFFFF;
}
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover {
  color: #FFFFFF;
  background-color: #5eabdf !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover {
  color: #5eabdf !important;
  border-color: #5eabdf !important;
}
.cid-tDSvZhpJjC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tDSvZhpJjC nav.navbar {
  position: fixed;
}
.cid-tDSvZhpJjC .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-tDSvZhpJjC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDSvZhpJjC .dropdown-item:hover,
.cid-tDSvZhpJjC .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-tDSvZhpJjC .dropdown-item:hover span {
  color: white;
}
.cid-tDSvZhpJjC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDSvZhpJjC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDSvZhpJjC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDSvZhpJjC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDSvZhpJjC .nav-link {
  position: relative;
}
.cid-tDSvZhpJjC .container {
  display: flex;
  margin: auto;
}
.cid-tDSvZhpJjC .navbar-caption:hover,
.cid-tDSvZhpJjC .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-tDSvZhpJjC .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tDSvZhpJjC .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tDSvZhpJjC .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-tDSvZhpJjC .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tDSvZhpJjC .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-tDSvZhpJjC .dropdown-menu,
.cid-tDSvZhpJjC .navbar.opened {
  background: #efefef !important;
}
.cid-tDSvZhpJjC .nav-item:focus,
.cid-tDSvZhpJjC .nav-link:focus {
  outline: none;
}
.cid-tDSvZhpJjC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDSvZhpJjC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDSvZhpJjC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDSvZhpJjC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSvZhpJjC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDSvZhpJjC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDSvZhpJjC .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: #efefef;
  padding: 0 !important;
}
.cid-tDSvZhpJjC .navbar.opened {
  transition: all 0.3s;
}
.cid-tDSvZhpJjC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDSvZhpJjC .navbar .navbar-logo img {
  width: auto;
}
.cid-tDSvZhpJjC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDSvZhpJjC .navbar.collapsed {
  justify-content: center;
}
.cid-tDSvZhpJjC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDSvZhpJjC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDSvZhpJjC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-tDSvZhpJjC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDSvZhpJjC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDSvZhpJjC .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-tDSvZhpJjC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDSvZhpJjC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDSvZhpJjC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDSvZhpJjC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDSvZhpJjC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDSvZhpJjC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDSvZhpJjC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDSvZhpJjC .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-tDSvZhpJjC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDSvZhpJjC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDSvZhpJjC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDSvZhpJjC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDSvZhpJjC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDSvZhpJjC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDSvZhpJjC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDSvZhpJjC .navbar.navbar-short {
  min-height: 70px;
}
.cid-tDSvZhpJjC .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;
  width: 25%;
}
.cid-tDSvZhpJjC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDSvZhpJjC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDSvZhpJjC .dropdown-item.active,
.cid-tDSvZhpJjC .dropdown-item:active {
  background-color: transparent;
}
.cid-tDSvZhpJjC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDSvZhpJjC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDSvZhpJjC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDSvZhpJjC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-tDSvZhpJjC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDSvZhpJjC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDSvZhpJjC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDSvZhpJjC .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tDSvZhpJjC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDSvZhpJjC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-tDSvZhpJjC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDSvZhpJjC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSvZhpJjC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSvZhpJjC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDSvZhpJjC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSvZhpJjC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDSvZhpJjC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDSvZhpJjC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSvZhpJjC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDSvZhpJjC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDSvZhpJjC .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-tDSvZhpJjC .navbar {
    height: 70px;
  }
  .cid-tDSvZhpJjC .navbar.opened {
    height: auto;
  }
  .cid-tDSvZhpJjC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDSvZhpJjC .container-fluid {
  padding: 0 1rem !important;
}
.cid-tDSvZhpJjC .navbar-collapse {
  width: 75%;
}
.cid-tDSvZhpJjC .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-tDSvZhpJjC .navbar-collapse {
  width: 100%;
}
.cid-tDSvZhpJjC .navbar-nav {
  width: 100%;
}
.cid-tDSvZhpJjC .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tDSvZhpJjC .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tDSvZhpJjC .navbar-collapse {
    width: 100%;
  }
  .cid-tDSvZhpJjC .navbar-nav {
    width: 100%;
  }
  .cid-tDSvZhpJjC .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tDSvZEeXE2 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-tDSvZEeXE2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSvZEeXE2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDSvZEeXE2 .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDSvZEeXE2 .col-text {
    max-width: 624px;
  }
}
.cid-tDSvZEeXE2 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-tDSvZEeXE2 .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-tDSvZEeXE2 .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-tDSvZEeXE2 .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-tDSvZEeXE2 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tDSvZEeXE2 .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-tDSvZEeXE2 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tDSvZEeXE2 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-tDSvZEeXE2 .card-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-uBngSuWAun {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-uBngSuWAun .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBngSuWAun .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uBngSuWAun .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uBngSuWAun .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBngSuWAun .embla__slide .slide-content {
  width: 100%;
}
.cid-uBngSuWAun .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-uBngSuWAun .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uBngSuWAun .embla__button--next,
.cid-uBngSuWAun .embla__button--prev {
  display: flex;
}
.cid-uBngSuWAun .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uBngSuWAun .embla__button:hover {
  opacity: .5 !important;
}
.cid-uBngSuWAun .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uBngSuWAun .embla__button.embla__button--next {
  right: 0;
}
.cid-uBngSuWAun .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uBngSuWAun .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uBngSuWAun .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBngSuWAun .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBngSuWAun .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKsz9xI3K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKsz9xI3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKsz9xI3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKsz9xI3K .col-title {
  margin-bottom: 32px;
}
.cid-vkKsz9xI3K .mbr-section-title {
  color: #24262b;
}
.cid-vkKsz9xI3K .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKsz9xI3K .cards-row {
  row-gap: 32px;
}
.cid-vkKsz9xI3K .card {
  border-radius: 0;
}
.cid-vkKsz9xI3K .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKsz9xI3K .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKsz9xI3K .text-wrap {
  flex-grow: 1;
}
.cid-vkKsz9xI3K .card-title {
  color: #24262b;
}
.cid-vkKsz9xI3K .card-text {
  color: #767676;
}
.cid-tDSwre1eD3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDSwre1eD3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tDSwre1eD3 .mbr-section-title {
  color: #5eabdf;
}
.cid-tDSwre1eD3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tDSwre1eD3 .items-row {
  row-gap: 48px;
}
.cid-tDSwre1eD3 .item {
  cursor: pointer;
}
.cid-tDSwre1eD3 .item:focus,
.cid-tDSwre1eD3 span:focus {
  outline: none;
}
.cid-tDSwre1eD3 .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
@media (min-width: 768px) {
  .cid-tDSwre1eD3 .item-wrapper:hover .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-tDSwre1eD3 .item-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}
.cid-tDSwre1eD3 img {
  width: 100%;
  aspect-ratio: calc(341 / (64 * 4));
  object-fit: cover;
}
.cid-tDSwre1eD3 .mbr-section-btn {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  width: calc(100% - 32px);
  margin: 0 !important;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
@media (max-width: 767px) {
  .cid-tDSwre1eD3 .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-tDSwre1eD3 .mbr-section-btn .btn {
  margin: 0 !important;
}
.cid-tDSwre1eD3 .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem 0 0;
}
.cid-tDSwre1eD3 .item-title {
  color: #ffffff;
}
.cid-tDSwre1eD3 .item-subtitle {
  color: #ffffff;
  margin-top: 2px;
}
.cid-tDSwre1eD3 .mbr-text {
  color: #ffffff;
}
.cid-u8Z7yGAzvs {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8Z7yGAzvs .col-title {
    margin-bottom: 20px;
  }
}
.cid-u8Z7yGAzvs .mbr-section-title {
  color: #5eabdf;
}
.cid-u8Z7yGAzvs .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u8Z7yGAzvs .mbr-text {
  color: #7d8588;
}
.cid-vkKtzl8j09 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKtzl8j09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKtzl8j09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKtzl8j09 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKtzl8j09 .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKtzl8j09 .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKtzl8j09 .items-row {
  row-gap: 32px;
}
.cid-vkKtzl8j09 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKtzl8j09 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKtzl8j09 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKtzl8j09 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKtzl8j09 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKtzl8j09 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKtzl8j09 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKtzl8j09 .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKtzl8j09 .carousel-control,
.cid-vkKtzl8j09 .close {
  background: #1b1b1b;
}
.cid-vkKtzl8j09 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKtzl8j09 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKtzl8j09 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKtzl8j09 .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKtzl8j09 .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-vkKtzl8j09 .close::before {
  content: '\e91a';
}
.cid-vkKtzl8j09 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKtzl8j09 .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-vkKtzl8j09 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKtzl8j09 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKtzl8j09 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKtzl8j09 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKtzl8j09 .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-vkKtzl8j09 .carousel-indicators li.active,
.cid-vkKtzl8j09 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKtzl8j09 .carousel-indicators li::after,
.cid-vkKtzl8j09 .carousel-indicators li::before {
  content: none;
}
.cid-vkKtzl8j09 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKtzl8j09 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKtzl8j09 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKtzl8j09 .carousel-indicators {
    display: none;
  }
}
.cid-vkKtzl8j09 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKtzl8j09 .carousel-inner > .active {
  display: block;
}
.cid-vkKtzl8j09 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKtzl8j09 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKtzl8j09 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKtzl8j09 .carousel-control,
  .cid-vkKtzl8j09 .carousel-indicators,
  .cid-vkKtzl8j09 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKtzl8j09 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKtzl8j09 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKtzl8j09 .carousel-indicators .active,
.cid-vkKtzl8j09 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKtzl8j09 .carousel-indicators .active {
  background: #fff;
}
.cid-vkKtzl8j09 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKtzl8j09 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKtzl8j09 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKtzl8j09 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKtzl8j09 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKtzl8j09 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKtzl8j09 .carousel {
  width: 100%;
}
.cid-vkKtzl8j09 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKtzl8j09 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKtzl8j09 .modal.fade .modal-dialog,
.cid-vkKtzl8j09 .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKtzl8j09 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKtzl8j09 H6 {
  text-align: center;
}
.cid-u8Za3NBxT0 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-u8Za3NBxT0 .jc-sb {
  justify-content: space-between;
}
.cid-u8Za3NBxT0 .mbr-text {
  line-height: 1.6;
  color: #5eabdf;
}
@media (max-width: 767px) {
  .cid-u8Za3NBxT0 .row {
    text-align: center;
  }
}
.cid-u8Za3NBxT0 .mbr-section-subtitle {
  color: #7d8588;
}
.cid-u8Za3NBxT0 .mbr-section-title {
  color: #5eabdf;
}
.cid-u8ZfWET2ip {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8ZfWET2ip .col-title {
    margin-bottom: 20px;
  }
}
.cid-u8ZfWET2ip .mbr-section-title {
  color: #5eabdf;
}
.cid-u8ZfWET2ip .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u8ZfWET2ip .mbr-text {
  color: #7d8588;
}
.cid-u8ZhmShJxO {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-u8ZhmShJxO .col-title {
    margin-bottom: 20px;
  }
}
.cid-u8ZhmShJxO .mbr-section-title {
  color: #5eabdf;
}
.cid-u8ZhmShJxO .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u8ZhmShJxO .mbr-text {
  color: #7d8588;
}
.cid-u8ZohWCoy7 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8ZohWCoy7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8ZohWCoy7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8ZohWCoy7 .mbr-section-title {
  color: #7d8588;
}
.cid-u8ZohWCoy7 .mbr-section-subtitle {
  color: #5eabdf;
}
.cid-u8ZohWCoy7 .mbr-section-btn {
  margin-top: 16px;
}
.cid-u8Zo6fOMFG {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8Zo6fOMFG .col-title {
    margin-bottom: 20px;
  }
}
.cid-u8Zo6fOMFG .mbr-section-title {
  color: #5eabdf;
}
.cid-u8Zo6fOMFG .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u8Zo6fOMFG .mbr-text {
  color: #000000;
}
.cid-u8Zo6fOMFG .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u8Zo6fOMFG p {
  line-height: 1.2;
}
.cid-u8Zo6fOMFG .mbr-text1 {
  color: #7d8588;
}
.cid-u8Zo6fOMFG .mbr-text2 {
  color: #7d8588;
}
.cid-u8Zo6fOMFG .mbr-text3 {
  color: #7d8588;
}
.cid-u8ZqsyG4Au {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u8ZqsyG4Au .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8ZqsyG4Au .mbr-section-title {
  color: #c1c1c1;
}
.cid-u8ZqsyG4Au .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u8ZqsyG4Au .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-u8ZqsyG4Au .card {
    padding: 1rem !important;
  }
}
.cid-u8ZqsyG4Au .card:hover {
  transform: translateY(-1rem);
}
.cid-u8ZqsyG4Au .card img {
  max-width: 120px;
  height: auto;
}
.cid-tDSysYd1ia {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tDSysYd1ia .col-main {
    flex-direction: column;
  }
}
.cid-tDSysYd1ia .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tDSysYd1ia .border-item {
    order: 1;
  }
}
.cid-tDSysYd1ia .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-tDSysYd1ia .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-tDSysYd1ia .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-tDSysYd1ia .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-tDSysYd1ia .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-tDSysYd1ia .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-tDSysYd1ia .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-tDSysYd1ia .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-vkKszakNyE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKszakNyE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKszakNyE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKszakNyE .col-title {
  margin-bottom: 32px;
}
.cid-vkKszakNyE .mbr-section-title {
  color: #24262b;
}
.cid-vkKszakNyE .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKszakNyE .cards-row {
  row-gap: 32px;
}
.cid-vkKszakNyE .card {
  border-radius: 0;
}
.cid-vkKszakNyE .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKszakNyE .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKszakNyE .text-wrap {
  flex-grow: 1;
}
.cid-vkKszakNyE .card-title {
  color: #24262b;
}
.cid-vkKszakNyE .card-text {
  color: #767676;
}
.cid-u8ZxDSFrNz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u8ZxDSFrNz nav.navbar {
  position: fixed;
}
.cid-u8ZxDSFrNz .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-u8ZxDSFrNz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8ZxDSFrNz .dropdown-item:hover,
.cid-u8ZxDSFrNz .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8ZxDSFrNz .dropdown-item:hover span {
  color: white;
}
.cid-u8ZxDSFrNz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8ZxDSFrNz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8ZxDSFrNz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8ZxDSFrNz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8ZxDSFrNz .nav-link {
  position: relative;
}
.cid-u8ZxDSFrNz .container {
  display: flex;
  margin: auto;
}
.cid-u8ZxDSFrNz .navbar-caption:hover,
.cid-u8ZxDSFrNz .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u8ZxDSFrNz .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u8ZxDSFrNz .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u8ZxDSFrNz .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8ZxDSFrNz .dropdown-menu,
.cid-u8ZxDSFrNz .navbar.opened {
  background: #efefef !important;
}
.cid-u8ZxDSFrNz .nav-item:focus,
.cid-u8ZxDSFrNz .nav-link:focus {
  outline: none;
}
.cid-u8ZxDSFrNz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8ZxDSFrNz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8ZxDSFrNz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8ZxDSFrNz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8ZxDSFrNz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8ZxDSFrNz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8ZxDSFrNz .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: #efefef;
  padding: 0 !important;
}
.cid-u8ZxDSFrNz .navbar.opened {
  transition: all 0.3s;
}
.cid-u8ZxDSFrNz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8ZxDSFrNz .navbar .navbar-logo img {
  width: auto;
}
.cid-u8ZxDSFrNz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8ZxDSFrNz .navbar.collapsed {
  justify-content: center;
}
.cid-u8ZxDSFrNz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8ZxDSFrNz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8ZxDSFrNz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u8ZxDSFrNz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8ZxDSFrNz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8ZxDSFrNz .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-u8ZxDSFrNz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8ZxDSFrNz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8ZxDSFrNz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8ZxDSFrNz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8ZxDSFrNz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8ZxDSFrNz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8ZxDSFrNz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8ZxDSFrNz .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-u8ZxDSFrNz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8ZxDSFrNz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8ZxDSFrNz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8ZxDSFrNz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8ZxDSFrNz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8ZxDSFrNz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8ZxDSFrNz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8ZxDSFrNz .navbar.navbar-short {
  min-height: 70px;
}
.cid-u8ZxDSFrNz .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;
  width: 25%;
}
.cid-u8ZxDSFrNz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8ZxDSFrNz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8ZxDSFrNz .dropdown-item.active,
.cid-u8ZxDSFrNz .dropdown-item:active {
  background-color: transparent;
}
.cid-u8ZxDSFrNz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8ZxDSFrNz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8ZxDSFrNz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8ZxDSFrNz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u8ZxDSFrNz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8ZxDSFrNz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8ZxDSFrNz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8ZxDSFrNz .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u8ZxDSFrNz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8ZxDSFrNz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u8ZxDSFrNz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8ZxDSFrNz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8ZxDSFrNz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8ZxDSFrNz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8ZxDSFrNz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8ZxDSFrNz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8ZxDSFrNz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8ZxDSFrNz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8ZxDSFrNz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8ZxDSFrNz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8ZxDSFrNz .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-u8ZxDSFrNz .navbar {
    height: 70px;
  }
  .cid-u8ZxDSFrNz .navbar.opened {
    height: auto;
  }
  .cid-u8ZxDSFrNz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8ZxDSFrNz .container-fluid {
  padding: 0 1rem !important;
}
.cid-u8ZxDSFrNz .navbar-collapse {
  width: 75%;
}
.cid-u8ZxDSFrNz .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u8ZxDSFrNz .navbar-collapse {
  width: 100%;
}
.cid-u8ZxDSFrNz .navbar-nav {
  width: 100%;
}
.cid-u8ZxDSFrNz .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8ZxDSFrNz .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u8ZxDSFrNz .navbar-collapse {
    width: 100%;
  }
  .cid-u8ZxDSFrNz .navbar-nav {
    width: 100%;
  }
  .cid-u8ZxDSFrNz .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u8ZxDT2CKZ {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-u8ZxDT2CKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8ZxDT2CKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8ZxDT2CKZ .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8ZxDT2CKZ .col-text {
    max-width: 624px;
  }
}
.cid-u8ZxDT2CKZ .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-u8ZxDT2CKZ .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-u8ZxDT2CKZ .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-u8ZxDT2CKZ .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-u8ZxDT2CKZ .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-u8ZxDT2CKZ .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-u8ZxDT2CKZ .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u8ZxDT2CKZ .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-u8ZxDT2CKZ .card-title {
  color: #FFFFFF;
}
.cid-uJXk9n8NzH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-uJXk9n8NzH .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJXk9n8NzH .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uJXk9n8NzH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uJXk9n8NzH .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uJXk9n8NzH .embla__slide .slide-content {
  width: 100%;
}
.cid-uJXk9n8NzH .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-uJXk9n8NzH .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uJXk9n8NzH .embla__button--next,
.cid-uJXk9n8NzH .embla__button--prev {
  display: flex;
}
.cid-uJXk9n8NzH .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uJXk9n8NzH .embla__button:hover {
  opacity: .5 !important;
}
.cid-uJXk9n8NzH .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uJXk9n8NzH .embla__button.embla__button--next {
  right: 0;
}
.cid-uJXk9n8NzH .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uJXk9n8NzH .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uJXk9n8NzH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJXk9n8NzH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJXk9n8NzH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKq79309J {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKq79309J .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKq79309J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKq79309J .col-title {
  margin-bottom: 32px;
}
.cid-vkKq79309J .mbr-section-title {
  color: #24262b;
}
.cid-vkKq79309J .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKq79309J .cards-row {
  row-gap: 32px;
}
.cid-vkKq79309J .card {
  border-radius: 0;
}
.cid-vkKq79309J .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKq79309J .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKq79309J .text-wrap {
  flex-grow: 1;
}
.cid-vkKq79309J .card-title {
  color: #24262b;
}
.cid-vkKq79309J .card-text {
  color: #767676;
}
.cid-u94cgyHXzl {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u94cgyHXzl .col-title {
    margin-bottom: 20px;
  }
}
.cid-u94cgyHXzl .mbr-section-title {
  color: #5eabdf;
}
.cid-u94cgyHXzl .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u94cgyHXzl .mbr-text {
  color: #7d8588;
}
.cid-u945NPoSMk {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-u945NPoSMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u945NPoSMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u945NPoSMk .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u945NPoSMk .mbr-section-title {
  color: #5eabdf;
}
.cid-u945NPoSMk .mbr-section-subtitle {
  color: #7d8588;
}
.cid-u945NPoSMk .items-row {
  row-gap: 32px;
}
.cid-u945NPoSMk .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-u945NPoSMk .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #d6e3e7;
  transition: .3s all;
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .cid-u945NPoSMk .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-u945NPoSMk .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-u945NPoSMk .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-u945NPoSMk .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-u945NPoSMk .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-u945NPoSMk .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-u945NPoSMk .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u945NPoSMk .item-content {
    text-align: center;
  }
}
.cid-u945NPoSMk .card-title {
  margin-bottom: 16px;
  color: #767676;
}
.cid-u945NPoSMk .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-u945NPoSMk .card-text:hover {
  color: #5eabdf !important;
  border-bottom: 2px solid #5eabdf;
}
.cid-u945NPoSMk .mbr-section-btn {
  margin-top: 20px;
}
.cid-u945NPoSMk .card-text,
.cid-u945NPoSMk .mbr-section-btn {
  color: #000000;
}
.cid-u94eYCkk5z {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #33363b;
}
.cid-u94eYCkk5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u94eYCkk5z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u94eYCkk5z .cards-row {
  row-gap: 32px;
}
.cid-u94eYCkk5z .card {
  border-radius: 0;
}
.cid-u94eYCkk5z .card-wrapper {
  width: 100%;
}
.cid-u94eYCkk5z .card-title {
  margin-bottom: 8px;
  color: #5eabdf;
}
.cid-u94eYCkk5z .card-subtitle {
  max-width: 550px;
  color: #FFFFFF;
}
.cid-u94eYCkk5z .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u94eYCkk5z .card-name {
  color: #FFFFFF;
}
.cid-u94eYCkk5z .card-text {
  color: #c1c1c1;
}
.cid-u8ZxDToLwz {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8ZxDToLwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8ZxDToLwz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8ZxDToLwz .mbr-section-title {
  color: #7d8588;
}
.cid-u8ZxDToLwz .mbr-section-subtitle {
  color: #5eabdf;
}
.cid-u8ZxDToLwz .mbr-section-btn {
  margin-top: 16px;
}
.cid-u8ZxDTTamF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8ZxDTTamF .col-title {
    margin-bottom: 20px;
  }
}
.cid-u8ZxDTTamF .mbr-section-title {
  color: #5eabdf;
}
.cid-u8ZxDTTamF .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u8ZxDTTamF .mbr-text {
  color: #000000;
}
.cid-u8ZxDTTamF .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u8ZxDTTamF p {
  line-height: 1.2;
}
.cid-u8ZxDTTamF .mbr-text1 {
  color: #7d8588;
}
.cid-u8ZxDTTamF .mbr-text2 {
  color: #7d8588;
}
.cid-u8ZxDTTamF .mbr-text3 {
  color: #7d8588;
}
.cid-vkKxCvzwpL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKxCvzwpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKxCvzwpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKxCvzwpL .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKxCvzwpL .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKxCvzwpL .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKxCvzwpL .items-row {
  row-gap: 32px;
}
.cid-vkKxCvzwpL .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKxCvzwpL .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKxCvzwpL .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKxCvzwpL .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKxCvzwpL .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKxCvzwpL .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKxCvzwpL .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKxCvzwpL .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKxCvzwpL .carousel-control,
.cid-vkKxCvzwpL .close {
  background: #1b1b1b;
}
.cid-vkKxCvzwpL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKxCvzwpL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKxCvzwpL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKxCvzwpL .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKxCvzwpL .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-vkKxCvzwpL .close::before {
  content: '\e91a';
}
.cid-vkKxCvzwpL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKxCvzwpL .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-vkKxCvzwpL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxCvzwpL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKxCvzwpL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKxCvzwpL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKxCvzwpL .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-vkKxCvzwpL .carousel-indicators li.active,
.cid-vkKxCvzwpL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKxCvzwpL .carousel-indicators li::after,
.cid-vkKxCvzwpL .carousel-indicators li::before {
  content: none;
}
.cid-vkKxCvzwpL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKxCvzwpL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKxCvzwpL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKxCvzwpL .carousel-indicators {
    display: none;
  }
}
.cid-vkKxCvzwpL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKxCvzwpL .carousel-inner > .active {
  display: block;
}
.cid-vkKxCvzwpL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxCvzwpL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKxCvzwpL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKxCvzwpL .carousel-control,
  .cid-vkKxCvzwpL .carousel-indicators,
  .cid-vkKxCvzwpL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKxCvzwpL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKxCvzwpL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKxCvzwpL .carousel-indicators .active,
.cid-vkKxCvzwpL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKxCvzwpL .carousel-indicators .active {
  background: #fff;
}
.cid-vkKxCvzwpL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKxCvzwpL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKxCvzwpL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKxCvzwpL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKxCvzwpL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKxCvzwpL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKxCvzwpL .carousel {
  width: 100%;
}
.cid-vkKxCvzwpL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKxCvzwpL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKxCvzwpL .modal.fade .modal-dialog,
.cid-vkKxCvzwpL .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKxCvzwpL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKxCvzwpL H6 {
  text-align: center;
}
.cid-u8ZxDVbs1P {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u8ZxDVbs1P .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8ZxDVbs1P .mbr-section-title {
  color: #c1c1c1;
}
.cid-u8ZxDVbs1P .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u8ZxDVbs1P .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-u8ZxDVbs1P .card {
    padding: 1rem !important;
  }
}
.cid-u8ZxDVbs1P .card:hover {
  transform: translateY(-1rem);
}
.cid-u8ZxDVbs1P .card img {
  max-width: 120px;
  height: auto;
}
.cid-u8ZxDVA2Iz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u8ZxDVA2Iz .col-main {
    flex-direction: column;
  }
}
.cid-u8ZxDVA2Iz .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u8ZxDVA2Iz .border-item {
    order: 1;
  }
}
.cid-u8ZxDVA2Iz .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u8ZxDVA2Iz .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u8ZxDVA2Iz .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u8ZxDVA2Iz .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u8ZxDVA2Iz .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u8ZxDVA2Iz .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u8ZxDVA2Iz .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u8ZxDVA2Iz .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-u8ZxMahuQS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u8ZxMahuQS nav.navbar {
  position: fixed;
}
.cid-u8ZxMahuQS .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-u8ZxMahuQS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8ZxMahuQS .dropdown-item:hover,
.cid-u8ZxMahuQS .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8ZxMahuQS .dropdown-item:hover span {
  color: white;
}
.cid-u8ZxMahuQS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8ZxMahuQS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8ZxMahuQS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8ZxMahuQS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8ZxMahuQS .nav-link {
  position: relative;
}
.cid-u8ZxMahuQS .container {
  display: flex;
  margin: auto;
}
.cid-u8ZxMahuQS .navbar-caption:hover,
.cid-u8ZxMahuQS .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u8ZxMahuQS .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u8ZxMahuQS .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u8ZxMahuQS .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u8ZxMahuQS .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u8ZxMahuQS .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u8ZxMahuQS .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u8ZxMahuQS .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u8ZxMahuQS .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u8ZxMahuQS .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8ZxMahuQS .dropdown-menu,
.cid-u8ZxMahuQS .navbar.opened {
  background: #efefef !important;
}
.cid-u8ZxMahuQS .nav-item:focus,
.cid-u8ZxMahuQS .nav-link:focus {
  outline: none;
}
.cid-u8ZxMahuQS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8ZxMahuQS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8ZxMahuQS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8ZxMahuQS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8ZxMahuQS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8ZxMahuQS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8ZxMahuQS .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: #efefef;
  padding: 0 !important;
}
.cid-u8ZxMahuQS .navbar.opened {
  transition: all 0.3s;
}
.cid-u8ZxMahuQS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8ZxMahuQS .navbar .navbar-logo img {
  width: auto;
}
.cid-u8ZxMahuQS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8ZxMahuQS .navbar.collapsed {
  justify-content: center;
}
.cid-u8ZxMahuQS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8ZxMahuQS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8ZxMahuQS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u8ZxMahuQS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8ZxMahuQS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8ZxMahuQS .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-u8ZxMahuQS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8ZxMahuQS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8ZxMahuQS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8ZxMahuQS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8ZxMahuQS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8ZxMahuQS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8ZxMahuQS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8ZxMahuQS .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-u8ZxMahuQS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8ZxMahuQS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8ZxMahuQS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8ZxMahuQS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8ZxMahuQS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8ZxMahuQS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8ZxMahuQS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8ZxMahuQS .navbar.navbar-short {
  min-height: 70px;
}
.cid-u8ZxMahuQS .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;
  width: 25%;
}
.cid-u8ZxMahuQS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8ZxMahuQS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8ZxMahuQS .dropdown-item.active,
.cid-u8ZxMahuQS .dropdown-item:active {
  background-color: transparent;
}
.cid-u8ZxMahuQS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8ZxMahuQS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8ZxMahuQS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8ZxMahuQS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u8ZxMahuQS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8ZxMahuQS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8ZxMahuQS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8ZxMahuQS .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u8ZxMahuQS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8ZxMahuQS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u8ZxMahuQS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8ZxMahuQS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8ZxMahuQS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8ZxMahuQS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8ZxMahuQS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8ZxMahuQS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8ZxMahuQS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8ZxMahuQS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8ZxMahuQS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8ZxMahuQS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8ZxMahuQS .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-u8ZxMahuQS .navbar {
    height: 70px;
  }
  .cid-u8ZxMahuQS .navbar.opened {
    height: auto;
  }
  .cid-u8ZxMahuQS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8ZxMahuQS .container-fluid {
  padding: 0 1rem !important;
}
.cid-u8ZxMahuQS .navbar-collapse {
  width: 75%;
}
.cid-u8ZxMahuQS .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u8ZxMahuQS .navbar-collapse {
  width: 100%;
}
.cid-u8ZxMahuQS .navbar-nav {
  width: 100%;
}
.cid-u8ZxMahuQS .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8ZxMahuQS .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u8ZxMahuQS .navbar-collapse {
    width: 100%;
  }
  .cid-u8ZxMahuQS .navbar-nav {
    width: 100%;
  }
  .cid-u8ZxMahuQS .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u8ZxMaypqO {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-u8ZxMaypqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8ZxMaypqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8ZxMaypqO .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8ZxMaypqO .col-text {
    max-width: 624px;
  }
}
.cid-u8ZxMaypqO .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-u8ZxMaypqO .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-u8ZxMaypqO .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-u8ZxMaypqO .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-u8ZxMaypqO .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-u8ZxMaypqO .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-u8ZxMaypqO .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u8ZxMaypqO .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-u8ZxMaypqO .card-title {
  color: #FFFFFF;
}
.cid-uJXlzooI8V {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-uJXlzooI8V .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJXlzooI8V .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uJXlzooI8V .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uJXlzooI8V .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uJXlzooI8V .embla__slide .slide-content {
  width: 100%;
}
.cid-uJXlzooI8V .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-uJXlzooI8V .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uJXlzooI8V .embla__button--next,
.cid-uJXlzooI8V .embla__button--prev {
  display: flex;
}
.cid-uJXlzooI8V .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uJXlzooI8V .embla__button:hover {
  opacity: .5 !important;
}
.cid-uJXlzooI8V .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uJXlzooI8V .embla__button.embla__button--next {
  right: 0;
}
.cid-uJXlzooI8V .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uJXlzooI8V .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uJXlzooI8V .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJXlzooI8V .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJXlzooI8V .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKqmGg4CH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKqmGg4CH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKqmGg4CH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKqmGg4CH .col-title {
  margin-bottom: 32px;
}
.cid-vkKqmGg4CH .mbr-section-title {
  color: #24262b;
}
.cid-vkKqmGg4CH .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKqmGg4CH .cards-row {
  row-gap: 32px;
}
.cid-vkKqmGg4CH .card {
  border-radius: 0;
}
.cid-vkKqmGg4CH .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKqmGg4CH .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKqmGg4CH .text-wrap {
  flex-grow: 1;
}
.cid-vkKqmGg4CH .card-title {
  color: #24262b;
}
.cid-vkKqmGg4CH .card-text {
  color: #767676;
}
.cid-u94ksNQuLR {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u94ksNQuLR .col-title {
    margin-bottom: 20px;
  }
}
.cid-u94ksNQuLR .mbr-section-title {
  color: #5eabdf;
}
.cid-u94ksNQuLR .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u94ksNQuLR .mbr-text {
  color: #7d8588;
}
.cid-u94mdS3uG3 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-u94mdS3uG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u94mdS3uG3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u94mdS3uG3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u94mdS3uG3 .mbr-section-title {
  color: #5eabdf;
}
.cid-u94mdS3uG3 .mbr-section-subtitle {
  color: #7d8588;
}
.cid-u94mdS3uG3 .items-row {
  row-gap: 32px;
}
.cid-u94mdS3uG3 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-u94mdS3uG3 .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #d6e3e7;
  transition: .3s all;
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .cid-u94mdS3uG3 .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-u94mdS3uG3 .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-u94mdS3uG3 .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-u94mdS3uG3 .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-u94mdS3uG3 .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-u94mdS3uG3 .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-u94mdS3uG3 .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u94mdS3uG3 .item-content {
    text-align: center;
  }
}
.cid-u94mdS3uG3 .card-title {
  margin-bottom: 16px;
  color: #767676;
}
.cid-u94mdS3uG3 .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-u94mdS3uG3 .card-text:hover {
  color: #5eabdf !important;
  border-bottom: 2px solid #5eabdf;
}
.cid-u94mdS3uG3 .mbr-section-btn {
  margin-top: 20px;
}
.cid-u94mdS3uG3 .card-text,
.cid-u94mdS3uG3 .mbr-section-btn {
  color: #000000;
}
.cid-u94rJK8VJi {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #33363b;
}
.cid-u94rJK8VJi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u94rJK8VJi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u94rJK8VJi .cards-row {
  row-gap: 32px;
}
.cid-u94rJK8VJi .card {
  border-radius: 0;
}
.cid-u94rJK8VJi .card-wrapper {
  width: 100%;
}
.cid-u94rJK8VJi .card-title {
  margin-bottom: 8px;
  color: #5eabdf;
}
.cid-u94rJK8VJi .card-subtitle {
  max-width: 550px;
  color: #FFFFFF;
}
.cid-u94rJK8VJi .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u94rJK8VJi .card-name {
  color: #FFFFFF;
}
.cid-u94rJK8VJi .card-text {
  color: #c1c1c1;
}
.cid-u8ZxMaQYNg {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8ZxMaQYNg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8ZxMaQYNg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8ZxMaQYNg .mbr-section-title {
  color: #7d8588;
}
.cid-u8ZxMaQYNg .mbr-section-subtitle {
  color: #5eabdf;
}
.cid-u8ZxMaQYNg .mbr-section-btn {
  margin-top: 16px;
}
.cid-u8ZxMb6mar {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8ZxMb6mar .col-title {
    margin-bottom: 20px;
  }
}
.cid-u8ZxMb6mar .mbr-section-title {
  color: #5eabdf;
}
.cid-u8ZxMb6mar .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u8ZxMb6mar .mbr-text {
  color: #000000;
}
.cid-u8ZxMb6mar .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u8ZxMb6mar p {
  line-height: 1.2;
}
.cid-u8ZxMb6mar .mbr-text1 {
  color: #7d8588;
}
.cid-u8ZxMb6mar .mbr-text2 {
  color: #7d8588;
}
.cid-u8ZxMb6mar .mbr-text3 {
  color: #7d8588;
}
.cid-vkKxFvLgI2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKxFvLgI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKxFvLgI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKxFvLgI2 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKxFvLgI2 .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKxFvLgI2 .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKxFvLgI2 .items-row {
  row-gap: 32px;
}
.cid-vkKxFvLgI2 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKxFvLgI2 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKxFvLgI2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKxFvLgI2 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKxFvLgI2 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKxFvLgI2 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKxFvLgI2 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKxFvLgI2 .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKxFvLgI2 .carousel-control,
.cid-vkKxFvLgI2 .close {
  background: #1b1b1b;
}
.cid-vkKxFvLgI2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKxFvLgI2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKxFvLgI2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKxFvLgI2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKxFvLgI2 .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-vkKxFvLgI2 .close::before {
  content: '\e91a';
}
.cid-vkKxFvLgI2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKxFvLgI2 .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-vkKxFvLgI2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxFvLgI2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKxFvLgI2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKxFvLgI2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKxFvLgI2 .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-vkKxFvLgI2 .carousel-indicators li.active,
.cid-vkKxFvLgI2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKxFvLgI2 .carousel-indicators li::after,
.cid-vkKxFvLgI2 .carousel-indicators li::before {
  content: none;
}
.cid-vkKxFvLgI2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKxFvLgI2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKxFvLgI2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKxFvLgI2 .carousel-indicators {
    display: none;
  }
}
.cid-vkKxFvLgI2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKxFvLgI2 .carousel-inner > .active {
  display: block;
}
.cid-vkKxFvLgI2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxFvLgI2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKxFvLgI2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKxFvLgI2 .carousel-control,
  .cid-vkKxFvLgI2 .carousel-indicators,
  .cid-vkKxFvLgI2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKxFvLgI2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKxFvLgI2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKxFvLgI2 .carousel-indicators .active,
.cid-vkKxFvLgI2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKxFvLgI2 .carousel-indicators .active {
  background: #fff;
}
.cid-vkKxFvLgI2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKxFvLgI2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKxFvLgI2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKxFvLgI2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKxFvLgI2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKxFvLgI2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKxFvLgI2 .carousel {
  width: 100%;
}
.cid-vkKxFvLgI2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKxFvLgI2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKxFvLgI2 .modal.fade .modal-dialog,
.cid-vkKxFvLgI2 .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKxFvLgI2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKxFvLgI2 H6 {
  text-align: center;
}
.cid-u8ZxMbSsSY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u8ZxMbSsSY .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8ZxMbSsSY .mbr-section-title {
  color: #c1c1c1;
}
.cid-u8ZxMbSsSY .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u8ZxMbSsSY .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-u8ZxMbSsSY .card {
    padding: 1rem !important;
  }
}
.cid-u8ZxMbSsSY .card:hover {
  transform: translateY(-1rem);
}
.cid-u8ZxMbSsSY .card img {
  max-width: 120px;
  height: auto;
}
.cid-u8ZxMcEEwT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u8ZxMcEEwT .col-main {
    flex-direction: column;
  }
}
.cid-u8ZxMcEEwT .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u8ZxMcEEwT .border-item {
    order: 1;
  }
}
.cid-u8ZxMcEEwT .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u8ZxMcEEwT .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u8ZxMcEEwT .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u8ZxMcEEwT .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u8ZxMcEEwT .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u8ZxMcEEwT .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u8ZxMcEEwT .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u8ZxMcEEwT .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-u8Zy3tZ0Gd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u8Zy3tZ0Gd nav.navbar {
  position: fixed;
}
.cid-u8Zy3tZ0Gd .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-u8Zy3tZ0Gd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8Zy3tZ0Gd .dropdown-item:hover,
.cid-u8Zy3tZ0Gd .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8Zy3tZ0Gd .dropdown-item:hover span {
  color: white;
}
.cid-u8Zy3tZ0Gd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8Zy3tZ0Gd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8Zy3tZ0Gd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8Zy3tZ0Gd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8Zy3tZ0Gd .nav-link {
  position: relative;
}
.cid-u8Zy3tZ0Gd .container {
  display: flex;
  margin: auto;
}
.cid-u8Zy3tZ0Gd .navbar-caption:hover,
.cid-u8Zy3tZ0Gd .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u8Zy3tZ0Gd .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u8Zy3tZ0Gd .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8Zy3tZ0Gd .dropdown-menu,
.cid-u8Zy3tZ0Gd .navbar.opened {
  background: #efefef !important;
}
.cid-u8Zy3tZ0Gd .nav-item:focus,
.cid-u8Zy3tZ0Gd .nav-link:focus {
  outline: none;
}
.cid-u8Zy3tZ0Gd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8Zy3tZ0Gd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8Zy3tZ0Gd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8Zy3tZ0Gd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8Zy3tZ0Gd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8Zy3tZ0Gd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8Zy3tZ0Gd .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: #efefef;
  padding: 0 !important;
}
.cid-u8Zy3tZ0Gd .navbar.opened {
  transition: all 0.3s;
}
.cid-u8Zy3tZ0Gd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8Zy3tZ0Gd .navbar .navbar-logo img {
  width: auto;
}
.cid-u8Zy3tZ0Gd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8Zy3tZ0Gd .navbar.collapsed {
  justify-content: center;
}
.cid-u8Zy3tZ0Gd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8Zy3tZ0Gd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8Zy3tZ0Gd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u8Zy3tZ0Gd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8Zy3tZ0Gd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8Zy3tZ0Gd .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-u8Zy3tZ0Gd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8Zy3tZ0Gd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8Zy3tZ0Gd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8Zy3tZ0Gd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8Zy3tZ0Gd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8Zy3tZ0Gd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8Zy3tZ0Gd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8Zy3tZ0Gd .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-u8Zy3tZ0Gd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8Zy3tZ0Gd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8Zy3tZ0Gd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8Zy3tZ0Gd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8Zy3tZ0Gd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8Zy3tZ0Gd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8Zy3tZ0Gd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8Zy3tZ0Gd .navbar.navbar-short {
  min-height: 70px;
}
.cid-u8Zy3tZ0Gd .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;
  width: 25%;
}
.cid-u8Zy3tZ0Gd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8Zy3tZ0Gd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8Zy3tZ0Gd .dropdown-item.active,
.cid-u8Zy3tZ0Gd .dropdown-item:active {
  background-color: transparent;
}
.cid-u8Zy3tZ0Gd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8Zy3tZ0Gd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8Zy3tZ0Gd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8Zy3tZ0Gd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u8Zy3tZ0Gd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8Zy3tZ0Gd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8Zy3tZ0Gd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8Zy3tZ0Gd .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u8Zy3tZ0Gd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8Zy3tZ0Gd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u8Zy3tZ0Gd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8Zy3tZ0Gd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Zy3tZ0Gd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Zy3tZ0Gd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8Zy3tZ0Gd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Zy3tZ0Gd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8Zy3tZ0Gd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8Zy3tZ0Gd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Zy3tZ0Gd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8Zy3tZ0Gd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8Zy3tZ0Gd .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-u8Zy3tZ0Gd .navbar {
    height: 70px;
  }
  .cid-u8Zy3tZ0Gd .navbar.opened {
    height: auto;
  }
  .cid-u8Zy3tZ0Gd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8Zy3tZ0Gd .container-fluid {
  padding: 0 1rem !important;
}
.cid-u8Zy3tZ0Gd .navbar-collapse {
  width: 75%;
}
.cid-u8Zy3tZ0Gd .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u8Zy3tZ0Gd .navbar-collapse {
  width: 100%;
}
.cid-u8Zy3tZ0Gd .navbar-nav {
  width: 100%;
}
.cid-u8Zy3tZ0Gd .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8Zy3tZ0Gd .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u8Zy3tZ0Gd .navbar-collapse {
    width: 100%;
  }
  .cid-u8Zy3tZ0Gd .navbar-nav {
    width: 100%;
  }
  .cid-u8Zy3tZ0Gd .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u8Zy3uiNPK {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-u8Zy3uiNPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Zy3uiNPK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8Zy3uiNPK .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8Zy3uiNPK .col-text {
    max-width: 624px;
  }
}
.cid-u8Zy3uiNPK .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-u8Zy3uiNPK .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-u8Zy3uiNPK .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-u8Zy3uiNPK .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-u8Zy3uiNPK .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-u8Zy3uiNPK .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-u8Zy3uiNPK .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u8Zy3uiNPK .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-u8Zy3uiNPK .card-title {
  color: #FFFFFF;
}
.cid-uJXtIZFSB9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-uJXtIZFSB9 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJXtIZFSB9 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uJXtIZFSB9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uJXtIZFSB9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uJXtIZFSB9 .embla__slide .slide-content {
  width: 100%;
}
.cid-uJXtIZFSB9 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-uJXtIZFSB9 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uJXtIZFSB9 .embla__button--next,
.cid-uJXtIZFSB9 .embla__button--prev {
  display: flex;
}
.cid-uJXtIZFSB9 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uJXtIZFSB9 .embla__button:hover {
  opacity: .5 !important;
}
.cid-uJXtIZFSB9 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uJXtIZFSB9 .embla__button.embla__button--next {
  right: 0;
}
.cid-uJXtIZFSB9 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uJXtIZFSB9 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uJXtIZFSB9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJXtIZFSB9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJXtIZFSB9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKqHMz5XX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKqHMz5XX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKqHMz5XX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKqHMz5XX .col-title {
  margin-bottom: 32px;
}
.cid-vkKqHMz5XX .mbr-section-title {
  color: #24262b;
}
.cid-vkKqHMz5XX .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKqHMz5XX .cards-row {
  row-gap: 32px;
}
.cid-vkKqHMz5XX .card {
  border-radius: 0;
}
.cid-vkKqHMz5XX .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKqHMz5XX .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKqHMz5XX .text-wrap {
  flex-grow: 1;
}
.cid-vkKqHMz5XX .card-title {
  color: #24262b;
}
.cid-vkKqHMz5XX .card-text {
  color: #767676;
}
.cid-u9mbsBBSm3 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9mbsBBSm3 .col-title {
    margin-bottom: 20px;
  }
}
.cid-u9mbsBBSm3 .mbr-section-title {
  color: #5eabdf;
}
.cid-u9mbsBBSm3 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u9mbsBBSm3 .mbr-text {
  color: #7d8588;
}
.cid-u9mbU0J2fu {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #f0f7ff;
}
.cid-u9mbU0J2fu .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u9mbU0J2fu .mbr-section-title {
  color: #5eabdf;
}
.cid-u9mbU0J2fu .mbr-section-subtitle {
  color: #7d8588;
}
.cid-u9mbU0J2fu .items-row {
  row-gap: 48px;
}
.cid-u9mbU0J2fu .item {
  cursor: pointer;
}
.cid-u9mbU0J2fu .item:focus,
.cid-u9mbU0J2fu span:focus {
  outline: none;
}
.cid-u9mbU0J2fu .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
@media (min-width: 768px) {
  .cid-u9mbU0J2fu .item-wrapper:hover .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-u9mbU0J2fu .item-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}
.cid-u9mbU0J2fu img {
  width: 100%;
  aspect-ratio: calc(341 / (64 * 4));
  object-fit: cover;
}
.cid-u9mbU0J2fu .mbr-section-btn {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  width: calc(100% - 32px);
  margin: 0 !important;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
@media (max-width: 767px) {
  .cid-u9mbU0J2fu .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-u9mbU0J2fu .mbr-section-btn .btn {
  margin: 0 !important;
}
.cid-u9mbU0J2fu .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem 0 0;
}
.cid-u9mbU0J2fu .item-title {
  color: #5eabdf;
}
.cid-u9mbU0J2fu .item-subtitle {
  color: #7d8588;
  margin-top: 2px;
}
.cid-u9mbU0J2fu .mbr-text {
  color: #7d8588;
}
.cid-u9muEpJH2Z {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9muEpJH2Z .col-title {
    margin-bottom: 20px;
  }
}
.cid-u9muEpJH2Z .mbr-section-title {
  color: #5eabdf;
}
.cid-u9muEpJH2Z .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u9muEpJH2Z .mbr-text {
  color: #7d8588;
}
.cid-u8Zy3vF6Lt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u8Zy3vF6Lt .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8Zy3vF6Lt .mbr-section-title {
  color: #7d8588;
}
.cid-u8Zy3vF6Lt .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u8Zy3vF6Lt .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-u8Zy3vF6Lt .card {
    padding: 1rem !important;
  }
}
.cid-u8Zy3vF6Lt .card:hover {
  transform: translateY(-1rem);
}
.cid-u8Zy3vF6Lt .card img {
  max-width: 120px;
  height: auto;
}
.cid-u8Zy3w4AZt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u8Zy3w4AZt .col-main {
    flex-direction: column;
  }
}
.cid-u8Zy3w4AZt .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u8Zy3w4AZt .border-item {
    order: 1;
  }
}
.cid-u8Zy3w4AZt .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u8Zy3w4AZt .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u8Zy3w4AZt .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u8Zy3w4AZt .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u8Zy3w4AZt .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u8Zy3w4AZt .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u8Zy3w4AZt .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u8Zy3w4AZt .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-u8Zy8rq1bK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u8Zy8rq1bK nav.navbar {
  position: fixed;
}
.cid-u8Zy8rq1bK .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-u8Zy8rq1bK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8Zy8rq1bK .dropdown-item:hover,
.cid-u8Zy8rq1bK .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8Zy8rq1bK .dropdown-item:hover span {
  color: white;
}
.cid-u8Zy8rq1bK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8Zy8rq1bK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8Zy8rq1bK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8Zy8rq1bK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8Zy8rq1bK .nav-link {
  position: relative;
}
.cid-u8Zy8rq1bK .container {
  display: flex;
  margin: auto;
}
.cid-u8Zy8rq1bK .navbar-caption:hover,
.cid-u8Zy8rq1bK .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u8Zy8rq1bK .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u8Zy8rq1bK .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u8Zy8rq1bK .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8Zy8rq1bK .dropdown-menu,
.cid-u8Zy8rq1bK .navbar.opened {
  background: #efefef !important;
}
.cid-u8Zy8rq1bK .nav-item:focus,
.cid-u8Zy8rq1bK .nav-link:focus {
  outline: none;
}
.cid-u8Zy8rq1bK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8Zy8rq1bK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8Zy8rq1bK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8Zy8rq1bK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8Zy8rq1bK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8Zy8rq1bK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8Zy8rq1bK .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: #efefef;
  padding: 0 !important;
}
.cid-u8Zy8rq1bK .navbar.opened {
  transition: all 0.3s;
}
.cid-u8Zy8rq1bK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8Zy8rq1bK .navbar .navbar-logo img {
  width: auto;
}
.cid-u8Zy8rq1bK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8Zy8rq1bK .navbar.collapsed {
  justify-content: center;
}
.cid-u8Zy8rq1bK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8Zy8rq1bK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8Zy8rq1bK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u8Zy8rq1bK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8Zy8rq1bK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8Zy8rq1bK .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-u8Zy8rq1bK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8Zy8rq1bK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8Zy8rq1bK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8Zy8rq1bK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8Zy8rq1bK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8Zy8rq1bK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8Zy8rq1bK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8Zy8rq1bK .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-u8Zy8rq1bK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8Zy8rq1bK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8Zy8rq1bK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8Zy8rq1bK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8Zy8rq1bK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8Zy8rq1bK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8Zy8rq1bK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8Zy8rq1bK .navbar.navbar-short {
  min-height: 70px;
}
.cid-u8Zy8rq1bK .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;
  width: 25%;
}
.cid-u8Zy8rq1bK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8Zy8rq1bK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8Zy8rq1bK .dropdown-item.active,
.cid-u8Zy8rq1bK .dropdown-item:active {
  background-color: transparent;
}
.cid-u8Zy8rq1bK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8Zy8rq1bK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8Zy8rq1bK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8Zy8rq1bK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u8Zy8rq1bK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8Zy8rq1bK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8Zy8rq1bK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8Zy8rq1bK .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u8Zy8rq1bK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8Zy8rq1bK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u8Zy8rq1bK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8Zy8rq1bK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Zy8rq1bK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Zy8rq1bK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8Zy8rq1bK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Zy8rq1bK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8Zy8rq1bK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8Zy8rq1bK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Zy8rq1bK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8Zy8rq1bK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8Zy8rq1bK .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-u8Zy8rq1bK .navbar {
    height: 70px;
  }
  .cid-u8Zy8rq1bK .navbar.opened {
    height: auto;
  }
  .cid-u8Zy8rq1bK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8Zy8rq1bK .container-fluid {
  padding: 0 1rem !important;
}
.cid-u8Zy8rq1bK .navbar-collapse {
  width: 75%;
}
.cid-u8Zy8rq1bK .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u8Zy8rq1bK .navbar-collapse {
  width: 100%;
}
.cid-u8Zy8rq1bK .navbar-nav {
  width: 100%;
}
.cid-u8Zy8rq1bK .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8Zy8rq1bK .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u8Zy8rq1bK .navbar-collapse {
    width: 100%;
  }
  .cid-u8Zy8rq1bK .navbar-nav {
    width: 100%;
  }
  .cid-u8Zy8rq1bK .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-vkOeZB05BW {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-vkOeZB05BW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOeZB05BW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOeZB05BW .mbr-section-title {
  color: #24262b;
}
.cid-vkOeZB05BW .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkOeZB05BW .mbr-section-btn {
  margin-top: 16px;
}
.cid-u9mCRZ5zDU {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mCRZ5zDU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mCRZ5zDU .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-u9mCRZ5zDU .container {
    padding: 0 30px;
  }
}
.cid-u9mCRZ5zDU .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mCRZ5zDU .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mCRZ5zDU .mbr-section-title {
  color: #767676;
}
.cid-u9mCRZ5zDU .mbr-text {
  color: #212529;
}
.cid-u9mDyR8mES {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mDyR8mES .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mDyR8mES .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-u9mDyR8mES .container {
    padding: 0 30px;
  }
}
.cid-u9mDyR8mES .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mDyR8mES .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mDyR8mES .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mDyR8mES .mbr-text {
  color: #212529;
}
.cid-u9mDLfBClP {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mDLfBClP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mDLfBClP .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-u9mDLfBClP .container {
    padding: 0 30px;
  }
}
.cid-u9mDLfBClP .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mDLfBClP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mDLfBClP .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mDLfBClP .mbr-text {
  color: #212529;
}
.cid-u9mDQHRlvh {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mDQHRlvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mDQHRlvh .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-u9mDQHRlvh .container {
    padding: 0 30px;
  }
}
.cid-u9mDQHRlvh .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mDQHRlvh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mDQHRlvh .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mDQHRlvh .mbr-text {
  color: #212529;
}
.cid-u9mE2TPWQ1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mE2TPWQ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mE2TPWQ1 .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-u9mE2TPWQ1 .container {
    padding: 0 30px;
  }
}
.cid-u9mE2TPWQ1 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mE2TPWQ1 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mE2TPWQ1 .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mE2TPWQ1 .mbr-text {
  color: #212529;
}
.cid-u9mEa4a5Jz {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEa4a5Jz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEa4a5Jz .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-u9mEa4a5Jz .container {
    padding: 0 30px;
  }
}
.cid-u9mEa4a5Jz .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEa4a5Jz .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEa4a5Jz .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEa4a5Jz .mbr-text {
  color: #212529;
}
.cid-u9mEfpwbIW {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEfpwbIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEfpwbIW .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-u9mEfpwbIW .container {
    padding: 0 30px;
  }
}
.cid-u9mEfpwbIW .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEfpwbIW .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEfpwbIW .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEfpwbIW .mbr-text {
  color: #212529;
}
.cid-u9mEl00AeQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEl00AeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEl00AeQ .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-u9mEl00AeQ .container {
    padding: 0 30px;
  }
}
.cid-u9mEl00AeQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEl00AeQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEl00AeQ .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEl00AeQ .mbr-text {
  color: #212529;
}
.cid-u9mEqYOxQ4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEqYOxQ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEqYOxQ4 .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-u9mEqYOxQ4 .container {
    padding: 0 30px;
  }
}
.cid-u9mEqYOxQ4 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEqYOxQ4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEqYOxQ4 .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEqYOxQ4 .mbr-text {
  color: #212529;
}
.cid-u9mEAyIZWF {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEAyIZWF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEAyIZWF .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-u9mEAyIZWF .container {
    padding: 0 30px;
  }
}
.cid-u9mEAyIZWF .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEAyIZWF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEAyIZWF .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEAyIZWF .mbr-text {
  color: #212529;
}
.cid-u9mEEHQAEx {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEEHQAEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEEHQAEx .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-u9mEEHQAEx .container {
    padding: 0 30px;
  }
}
.cid-u9mEEHQAEx .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEEHQAEx .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEEHQAEx .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEEHQAEx .mbr-text {
  color: #212529;
}
.cid-u9mEQqR0cQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mEQqR0cQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mEQqR0cQ .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-u9mEQqR0cQ .container {
    padding: 0 30px;
  }
}
.cid-u9mEQqR0cQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mEQqR0cQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mEQqR0cQ .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mEQqR0cQ .mbr-text {
  color: #212529;
}
.cid-u9mFc11eyq {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mFc11eyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mFc11eyq .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-u9mFc11eyq .container {
    padding: 0 30px;
  }
}
.cid-u9mFc11eyq .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mFc11eyq .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mFc11eyq .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mFc11eyq .mbr-text {
  color: #000000;
}
.cid-u9mFlLQoGv {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mFlLQoGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mFlLQoGv .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-u9mFlLQoGv .container {
    padding: 0 30px;
  }
}
.cid-u9mFlLQoGv .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mFlLQoGv .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mFlLQoGv .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mFlLQoGv .mbr-text {
  color: #000000;
}
.cid-u9mFqEyQ9v {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mFqEyQ9v .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mFqEyQ9v .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-u9mFqEyQ9v .container {
    padding: 0 30px;
  }
}
.cid-u9mFqEyQ9v .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mFqEyQ9v .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mFqEyQ9v .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mFqEyQ9v .mbr-text {
  color: #000000;
}
.cid-u9mFwqpg64 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mFwqpg64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mFwqpg64 .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-u9mFwqpg64 .container {
    padding: 0 30px;
  }
}
.cid-u9mFwqpg64 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mFwqpg64 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mFwqpg64 .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mFwqpg64 .mbr-text {
  color: #000000;
}
.cid-u9mFCAxFRz {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9mFCAxFRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9mFCAxFRz .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-u9mFCAxFRz .container {
    padding: 0 30px;
  }
}
.cid-u9mFCAxFRz .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u9mFCAxFRz .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9mFCAxFRz .mbr-section-title {
  color: #c1c1c1;
}
.cid-u9mFCAxFRz .mbr-text {
  color: #000000;
}
.cid-u8Zy8tcpox {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u8Zy8tcpox .col-main {
    flex-direction: column;
  }
}
.cid-u8Zy8tcpox .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u8Zy8tcpox .border-item {
    order: 1;
  }
}
.cid-u8Zy8tcpox .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u8Zy8tcpox .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u8Zy8tcpox .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u8Zy8tcpox .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u8Zy8tcpox .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u8Zy8tcpox .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u8Zy8tcpox .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u8Zy8tcpox .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-u94FFFOkdV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u94FFFOkdV nav.navbar {
  position: fixed;
}
.cid-u94FFFOkdV .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-u94FFFOkdV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u94FFFOkdV .dropdown-item:hover,
.cid-u94FFFOkdV .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u94FFFOkdV .dropdown-item:hover span {
  color: white;
}
.cid-u94FFFOkdV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u94FFFOkdV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u94FFFOkdV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u94FFFOkdV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u94FFFOkdV .nav-link {
  position: relative;
}
.cid-u94FFFOkdV .container {
  display: flex;
  margin: auto;
}
.cid-u94FFFOkdV .navbar-caption:hover,
.cid-u94FFFOkdV .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u94FFFOkdV .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u94FFFOkdV .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u94FFFOkdV .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u94FFFOkdV .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u94FFFOkdV .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u94FFFOkdV .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u94FFFOkdV .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u94FFFOkdV .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u94FFFOkdV .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u94FFFOkdV .dropdown-menu,
.cid-u94FFFOkdV .navbar.opened {
  background: #efefef !important;
}
.cid-u94FFFOkdV .nav-item:focus,
.cid-u94FFFOkdV .nav-link:focus {
  outline: none;
}
.cid-u94FFFOkdV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u94FFFOkdV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u94FFFOkdV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u94FFFOkdV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u94FFFOkdV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u94FFFOkdV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u94FFFOkdV .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: #efefef;
  padding: 0 !important;
}
.cid-u94FFFOkdV .navbar.opened {
  transition: all 0.3s;
}
.cid-u94FFFOkdV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u94FFFOkdV .navbar .navbar-logo img {
  width: auto;
}
.cid-u94FFFOkdV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u94FFFOkdV .navbar.collapsed {
  justify-content: center;
}
.cid-u94FFFOkdV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u94FFFOkdV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u94FFFOkdV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u94FFFOkdV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u94FFFOkdV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u94FFFOkdV .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-u94FFFOkdV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u94FFFOkdV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u94FFFOkdV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u94FFFOkdV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u94FFFOkdV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u94FFFOkdV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u94FFFOkdV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u94FFFOkdV .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-u94FFFOkdV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u94FFFOkdV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u94FFFOkdV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u94FFFOkdV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u94FFFOkdV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u94FFFOkdV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u94FFFOkdV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u94FFFOkdV .navbar.navbar-short {
  min-height: 70px;
}
.cid-u94FFFOkdV .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;
  width: 25%;
}
.cid-u94FFFOkdV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u94FFFOkdV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u94FFFOkdV .dropdown-item.active,
.cid-u94FFFOkdV .dropdown-item:active {
  background-color: transparent;
}
.cid-u94FFFOkdV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u94FFFOkdV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u94FFFOkdV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u94FFFOkdV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u94FFFOkdV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u94FFFOkdV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u94FFFOkdV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u94FFFOkdV .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u94FFFOkdV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u94FFFOkdV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u94FFFOkdV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u94FFFOkdV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u94FFFOkdV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u94FFFOkdV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u94FFFOkdV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u94FFFOkdV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u94FFFOkdV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u94FFFOkdV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u94FFFOkdV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u94FFFOkdV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u94FFFOkdV .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-u94FFFOkdV .navbar {
    height: 70px;
  }
  .cid-u94FFFOkdV .navbar.opened {
    height: auto;
  }
  .cid-u94FFFOkdV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u94FFFOkdV .container-fluid {
  padding: 0 1rem !important;
}
.cid-u94FFFOkdV .navbar-collapse {
  width: 75%;
}
.cid-u94FFFOkdV .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u94FFFOkdV .navbar-collapse {
  width: 100%;
}
.cid-u94FFFOkdV .navbar-nav {
  width: 100%;
}
.cid-u94FFFOkdV .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u94FFFOkdV .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u94FFFOkdV .navbar-collapse {
    width: 100%;
  }
  .cid-u94FFFOkdV .navbar-nav {
    width: 100%;
  }
  .cid-u94FFFOkdV .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u94FFGj778 {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-u94FFGj778 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u94FFGj778 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u94FFGj778 .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u94FFGj778 .col-text {
    max-width: 624px;
  }
}
.cid-u94FFGj778 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-u94FFGj778 .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-u94FFGj778 .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-u94FFGj778 .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-u94FFGj778 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-u94FFGj778 .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-u94FFGj778 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u94FFGj778 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-u94FFGj778 .card-title {
  color: #FFFFFF;
}
.cid-uJXsNsMAca {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-uJXsNsMAca .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJXsNsMAca .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uJXsNsMAca .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uJXsNsMAca .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uJXsNsMAca .embla__slide .slide-content {
  width: 100%;
}
.cid-uJXsNsMAca .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-uJXsNsMAca .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uJXsNsMAca .embla__button--next,
.cid-uJXsNsMAca .embla__button--prev {
  display: flex;
}
.cid-uJXsNsMAca .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uJXsNsMAca .embla__button:hover {
  opacity: .5 !important;
}
.cid-uJXsNsMAca .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uJXsNsMAca .embla__button.embla__button--next {
  right: 0;
}
.cid-uJXsNsMAca .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uJXsNsMAca .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uJXsNsMAca .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJXsNsMAca .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJXsNsMAca .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKqymLiEg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKqymLiEg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKqymLiEg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKqymLiEg .col-title {
  margin-bottom: 32px;
}
.cid-vkKqymLiEg .mbr-section-title {
  color: #24262b;
}
.cid-vkKqymLiEg .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKqymLiEg .cards-row {
  row-gap: 32px;
}
.cid-vkKqymLiEg .card {
  border-radius: 0;
}
.cid-vkKqymLiEg .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKqymLiEg .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKqymLiEg .text-wrap {
  flex-grow: 1;
}
.cid-vkKqymLiEg .card-title {
  color: #24262b;
}
.cid-vkKqymLiEg .card-text {
  color: #767676;
}
.cid-u94FFGNvuj {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u94FFGNvuj .col-title {
    margin-bottom: 20px;
  }
}
.cid-u94FFGNvuj .mbr-section-title {
  color: #5eabdf;
}
.cid-u94FFGNvuj .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u94FFGNvuj .mbr-text {
  color: #7d8588;
}
.cid-u9sXCrhzyY {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9sXCrhzyY .col-title {
    margin-bottom: 20px;
  }
}
.cid-u9sXCrhzyY .mbr-section-title {
  color: #5eabdf;
}
.cid-u9sXCrhzyY .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u9sXCrhzyY .mbr-text {
  color: #7d8588;
}
.cid-u9t01aPBUq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u9t01aPBUq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9t01aPBUq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9t01aPBUq .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u9t01aPBUq .mbr-section-title {
  color: #24262b;
}
.cid-u9t01aPBUq .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u9t01aPBUq .items-row {
  row-gap: 0;
  margin: 0 !important;
}
.cid-u9t01aPBUq .item {
  padding: 0 !important;
}
.cid-u9t01aPBUq .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-u9t01aPBUq .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-u9t01aPBUq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-u9t01aPBUq .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-u9t01aPBUq .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-u9t01aPBUq .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-u9t01aPBUq .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-u9t01aPBUq .carousel-control,
.cid-u9t01aPBUq .close {
  background: #1b1b1b;
}
.cid-u9t01aPBUq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u9t01aPBUq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u9t01aPBUq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u9t01aPBUq .carousel-control-next span {
  margin-left: 5px;
}
.cid-u9t01aPBUq .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-u9t01aPBUq .close::before {
  content: '\e91a';
}
.cid-u9t01aPBUq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9t01aPBUq .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-u9t01aPBUq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9t01aPBUq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u9t01aPBUq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u9t01aPBUq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u9t01aPBUq .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-u9t01aPBUq .carousel-indicators li.active,
.cid-u9t01aPBUq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u9t01aPBUq .carousel-indicators li::after,
.cid-u9t01aPBUq .carousel-indicators li::before {
  content: none;
}
.cid-u9t01aPBUq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u9t01aPBUq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u9t01aPBUq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u9t01aPBUq .carousel-indicators {
    display: none;
  }
}
.cid-u9t01aPBUq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u9t01aPBUq .carousel-inner > .active {
  display: block;
}
.cid-u9t01aPBUq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9t01aPBUq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u9t01aPBUq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u9t01aPBUq .carousel-control,
  .cid-u9t01aPBUq .carousel-indicators,
  .cid-u9t01aPBUq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u9t01aPBUq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u9t01aPBUq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u9t01aPBUq .carousel-indicators .active,
.cid-u9t01aPBUq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u9t01aPBUq .carousel-indicators .active {
  background: #fff;
}
.cid-u9t01aPBUq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u9t01aPBUq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u9t01aPBUq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u9t01aPBUq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u9t01aPBUq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u9t01aPBUq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u9t01aPBUq .carousel {
  width: 100%;
}
.cid-u9t01aPBUq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u9t01aPBUq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u9t01aPBUq .modal.fade .modal-dialog,
.cid-u9t01aPBUq .modal.in .modal-dialog {
  transform: none;
}
.cid-u9t01aPBUq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u9t01aPBUq H6 {
  text-align: center;
}
.cid-u9t01aPBUq H3 {
  color: #5eabdf;
}
.cid-u94FFHaKmx {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #f0f7ff;
}
.cid-u94FFHaKmx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u94FFHaKmx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u94FFHaKmx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u94FFHaKmx .mbr-section-title {
  color: #5eabdf;
}
.cid-u94FFHaKmx .mbr-section-subtitle {
  color: #7d8588;
}
.cid-u94FFHaKmx .items-row {
  row-gap: 32px;
}
.cid-u94FFHaKmx .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-u94FFHaKmx .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #d6e3e7;
  transition: .3s all;
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .cid-u94FFHaKmx .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-u94FFHaKmx .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-u94FFHaKmx .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-u94FFHaKmx .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-u94FFHaKmx .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-u94FFHaKmx .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-u94FFHaKmx .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u94FFHaKmx .item-content {
    text-align: center;
  }
}
.cid-u94FFHaKmx .card-title {
  margin-bottom: 16px;
  color: #767676;
}
.cid-u94FFHaKmx .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-u94FFHaKmx .card-text:hover {
  color: #5eabdf !important;
  border-bottom: 2px solid #5eabdf;
}
.cid-u94FFHaKmx .mbr-section-btn {
  margin-top: 20px;
}
.cid-u94FFHaKmx .card-text,
.cid-u94FFHaKmx .mbr-section-btn {
  color: #000000;
}
.cid-u94FFI9qSl {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u94FFI9qSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u94FFI9qSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u94FFI9qSl .mbr-section-title {
  color: #7d8588;
}
.cid-u94FFI9qSl .mbr-section-subtitle {
  color: #5eabdf;
}
.cid-u94FFI9qSl .mbr-section-btn {
  margin-top: 16px;
}
.cid-u94FFIzOSd {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u94FFIzOSd .col-title {
    margin-bottom: 20px;
  }
}
.cid-u94FFIzOSd .mbr-section-title {
  color: #5eabdf;
}
.cid-u94FFIzOSd .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u94FFIzOSd .mbr-text {
  color: #000000;
}
.cid-u94FFIzOSd .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u94FFIzOSd p {
  line-height: 1.2;
}
.cid-u94FFIzOSd .mbr-text1 {
  color: #7d8588;
}
.cid-u94FFIzOSd .mbr-text2 {
  color: #7d8588;
}
.cid-u94FFIzOSd .mbr-text3 {
  color: #7d8588;
}
.cid-vkKxIxDPax {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKxIxDPax .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKxIxDPax .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKxIxDPax .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKxIxDPax .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKxIxDPax .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKxIxDPax .items-row {
  row-gap: 32px;
}
.cid-vkKxIxDPax .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKxIxDPax .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKxIxDPax .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKxIxDPax .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKxIxDPax .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKxIxDPax .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKxIxDPax .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKxIxDPax .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKxIxDPax .carousel-control,
.cid-vkKxIxDPax .close {
  background: #1b1b1b;
}
.cid-vkKxIxDPax .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKxIxDPax .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKxIxDPax .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKxIxDPax .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKxIxDPax .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-vkKxIxDPax .close::before {
  content: '\e91a';
}
.cid-vkKxIxDPax .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKxIxDPax .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-vkKxIxDPax .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxIxDPax .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKxIxDPax .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKxIxDPax .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKxIxDPax .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-vkKxIxDPax .carousel-indicators li.active,
.cid-vkKxIxDPax .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKxIxDPax .carousel-indicators li::after,
.cid-vkKxIxDPax .carousel-indicators li::before {
  content: none;
}
.cid-vkKxIxDPax .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKxIxDPax .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKxIxDPax .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKxIxDPax .carousel-indicators {
    display: none;
  }
}
.cid-vkKxIxDPax .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKxIxDPax .carousel-inner > .active {
  display: block;
}
.cid-vkKxIxDPax .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxIxDPax .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKxIxDPax .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKxIxDPax .carousel-control,
  .cid-vkKxIxDPax .carousel-indicators,
  .cid-vkKxIxDPax .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKxIxDPax .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKxIxDPax .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKxIxDPax .carousel-indicators .active,
.cid-vkKxIxDPax .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKxIxDPax .carousel-indicators .active {
  background: #fff;
}
.cid-vkKxIxDPax .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKxIxDPax .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKxIxDPax .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKxIxDPax .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKxIxDPax .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKxIxDPax .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKxIxDPax .carousel {
  width: 100%;
}
.cid-vkKxIxDPax .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKxIxDPax .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKxIxDPax .modal.fade .modal-dialog,
.cid-vkKxIxDPax .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKxIxDPax .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKxIxDPax H6 {
  text-align: center;
}
.cid-u94FFJ1Iqu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u94FFJ1Iqu .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u94FFJ1Iqu .mbr-section-title {
  color: #c1c1c1;
}
.cid-u94FFJ1Iqu .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u94FFJ1Iqu .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-u94FFJ1Iqu .card {
    padding: 1rem !important;
  }
}
.cid-u94FFJ1Iqu .card:hover {
  transform: translateY(-1rem);
}
.cid-u94FFJ1Iqu .card img {
  max-width: 120px;
  height: auto;
}
.cid-u94FFJy9ak {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u94FFJy9ak .col-main {
    flex-direction: column;
  }
}
.cid-u94FFJy9ak .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u94FFJy9ak .border-item {
    order: 1;
  }
}
.cid-u94FFJy9ak .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u94FFJy9ak .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u94FFJy9ak .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u94FFJy9ak .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u94FFJy9ak .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u94FFJy9ak .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u94FFJy9ak .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u94FFJy9ak .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-u9lkFMV7L8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u9lkFMV7L8 nav.navbar {
  position: fixed;
}
.cid-u9lkFMV7L8 .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-u9lkFMV7L8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9lkFMV7L8 .dropdown-item:hover,
.cid-u9lkFMV7L8 .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u9lkFMV7L8 .dropdown-item:hover span {
  color: white;
}
.cid-u9lkFMV7L8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9lkFMV7L8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9lkFMV7L8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9lkFMV7L8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9lkFMV7L8 .nav-link {
  position: relative;
}
.cid-u9lkFMV7L8 .container {
  display: flex;
  margin: auto;
}
.cid-u9lkFMV7L8 .navbar-caption:hover,
.cid-u9lkFMV7L8 .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u9lkFMV7L8 .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u9lkFMV7L8 .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u9lkFMV7L8 .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u9lkFMV7L8 .dropdown-menu,
.cid-u9lkFMV7L8 .navbar.opened {
  background: #efefef !important;
}
.cid-u9lkFMV7L8 .nav-item:focus,
.cid-u9lkFMV7L8 .nav-link:focus {
  outline: none;
}
.cid-u9lkFMV7L8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9lkFMV7L8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9lkFMV7L8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9lkFMV7L8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9lkFMV7L8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9lkFMV7L8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9lkFMV7L8 .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: #efefef;
  padding: 0 !important;
}
.cid-u9lkFMV7L8 .navbar.opened {
  transition: all 0.3s;
}
.cid-u9lkFMV7L8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9lkFMV7L8 .navbar .navbar-logo img {
  width: auto;
}
.cid-u9lkFMV7L8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9lkFMV7L8 .navbar.collapsed {
  justify-content: center;
}
.cid-u9lkFMV7L8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9lkFMV7L8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9lkFMV7L8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u9lkFMV7L8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9lkFMV7L8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9lkFMV7L8 .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-u9lkFMV7L8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9lkFMV7L8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9lkFMV7L8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9lkFMV7L8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9lkFMV7L8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9lkFMV7L8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9lkFMV7L8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9lkFMV7L8 .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-u9lkFMV7L8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9lkFMV7L8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9lkFMV7L8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9lkFMV7L8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9lkFMV7L8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9lkFMV7L8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9lkFMV7L8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9lkFMV7L8 .navbar.navbar-short {
  min-height: 70px;
}
.cid-u9lkFMV7L8 .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;
  width: 25%;
}
.cid-u9lkFMV7L8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9lkFMV7L8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9lkFMV7L8 .dropdown-item.active,
.cid-u9lkFMV7L8 .dropdown-item:active {
  background-color: transparent;
}
.cid-u9lkFMV7L8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9lkFMV7L8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9lkFMV7L8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9lkFMV7L8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u9lkFMV7L8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9lkFMV7L8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9lkFMV7L8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9lkFMV7L8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u9lkFMV7L8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9lkFMV7L8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u9lkFMV7L8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9lkFMV7L8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9lkFMV7L8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9lkFMV7L8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9lkFMV7L8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9lkFMV7L8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9lkFMV7L8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9lkFMV7L8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9lkFMV7L8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9lkFMV7L8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9lkFMV7L8 .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-u9lkFMV7L8 .navbar {
    height: 70px;
  }
  .cid-u9lkFMV7L8 .navbar.opened {
    height: auto;
  }
  .cid-u9lkFMV7L8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9lkFMV7L8 .container-fluid {
  padding: 0 1rem !important;
}
.cid-u9lkFMV7L8 .navbar-collapse {
  width: 75%;
}
.cid-u9lkFMV7L8 .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u9lkFMV7L8 .navbar-collapse {
  width: 100%;
}
.cid-u9lkFMV7L8 .navbar-nav {
  width: 100%;
}
.cid-u9lkFMV7L8 .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u9lkFMV7L8 .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u9lkFMV7L8 .navbar-collapse {
    width: 100%;
  }
  .cid-u9lkFMV7L8 .navbar-nav {
    width: 100%;
  }
  .cid-u9lkFMV7L8 .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u9lkFNc8Ct {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/exhibition-hall-25-1500x674.png");
}
.cid-u9lkFNc8Ct .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9lkFNc8Ct .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9lkFNc8Ct .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9lkFNc8Ct .col-text {
    max-width: 624px;
  }
}
.cid-u9lkFNc8Ct .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-u9lkFNc8Ct .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-u9lkFNc8Ct .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-u9lkFNc8Ct .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-u9lkFNc8Ct .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-u9lkFNc8Ct .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-u9lkFNc8Ct .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u9lkFNc8Ct .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-u9lkFNc8Ct .card-title {
  color: #FFFFFF;
}
.cid-u9llspbw6s {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u9llspbw6s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u9llspbw6s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9llspbw6s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u9llspbw6s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u9llspbw6s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u9llspbw6s .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-u9llspbw6s .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #767676 !important;
}
.cid-u9llspbw6s .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-u9llspbw6s .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #767676 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-u9llspbw6s .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #5eabdf !important;
}
.cid-u9llspbw6s .mbr-gallery-filter ul {
  display: block;
}
.cid-u9llspbw6s .mbr-gallery-filter ul li {
  position: relative;
}
.cid-u9llspbw6s .mbr-gallery-filter li.active .btn {
  color: #5eabdf !important;
  background: transparent;
}
.cid-u9llspbw6s .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #5eabdf !important;
}
.cid-u9llspbw6s .mbr-gallery-filter li.active::after,
.cid-u9llspbw6s .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #5eabdf !important;
}
.cid-u9llspbw6s .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-u9llspbw6s .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-u9llspbw6s .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-u9llspbw6s .icon-focus:before {
  content: '\e95e';
}
.cid-u9llspbw6s .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-u9llspbw6s .mbr-section-title {
  margin: 0;
}
.cid-u9llspbw6s .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-u9llspbw6s .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-u9llspbw6s .mbr-section-subtitle {
  color: #5eabdf;
}
.cid-vkKxZ2CBuc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKxZ2CBuc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKxZ2CBuc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKxZ2CBuc .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKxZ2CBuc .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKxZ2CBuc .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKxZ2CBuc .items-row {
  row-gap: 32px;
}
.cid-vkKxZ2CBuc .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKxZ2CBuc .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKxZ2CBuc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKxZ2CBuc .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKxZ2CBuc .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKxZ2CBuc .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKxZ2CBuc .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKxZ2CBuc .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKxZ2CBuc .carousel-control,
.cid-vkKxZ2CBuc .close {
  background: #1b1b1b;
}
.cid-vkKxZ2CBuc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKxZ2CBuc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKxZ2CBuc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKxZ2CBuc .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKxZ2CBuc .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-vkKxZ2CBuc .close::before {
  content: '\e91a';
}
.cid-vkKxZ2CBuc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKxZ2CBuc .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-vkKxZ2CBuc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxZ2CBuc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKxZ2CBuc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKxZ2CBuc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKxZ2CBuc .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-vkKxZ2CBuc .carousel-indicators li.active,
.cid-vkKxZ2CBuc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKxZ2CBuc .carousel-indicators li::after,
.cid-vkKxZ2CBuc .carousel-indicators li::before {
  content: none;
}
.cid-vkKxZ2CBuc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKxZ2CBuc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKxZ2CBuc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKxZ2CBuc .carousel-indicators {
    display: none;
  }
}
.cid-vkKxZ2CBuc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKxZ2CBuc .carousel-inner > .active {
  display: block;
}
.cid-vkKxZ2CBuc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxZ2CBuc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKxZ2CBuc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKxZ2CBuc .carousel-control,
  .cid-vkKxZ2CBuc .carousel-indicators,
  .cid-vkKxZ2CBuc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKxZ2CBuc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKxZ2CBuc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKxZ2CBuc .carousel-indicators .active,
.cid-vkKxZ2CBuc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKxZ2CBuc .carousel-indicators .active {
  background: #fff;
}
.cid-vkKxZ2CBuc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKxZ2CBuc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKxZ2CBuc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKxZ2CBuc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKxZ2CBuc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKxZ2CBuc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKxZ2CBuc .carousel {
  width: 100%;
}
.cid-vkKxZ2CBuc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKxZ2CBuc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKxZ2CBuc .modal.fade .modal-dialog,
.cid-vkKxZ2CBuc .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKxZ2CBuc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKxZ2CBuc H6 {
  text-align: center;
}
.cid-u9lkFOmoKg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u9lkFOmoKg .col-main {
    flex-direction: column;
  }
}
.cid-u9lkFOmoKg .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u9lkFOmoKg .border-item {
    order: 1;
  }
}
.cid-u9lkFOmoKg .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u9lkFOmoKg .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u9lkFOmoKg .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u9lkFOmoKg .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u9lkFOmoKg .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u9lkFOmoKg .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u9lkFOmoKg .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u9lkFOmoKg .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-u8Zx5V4hlQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u8Zx5V4hlQ nav.navbar {
  position: fixed;
}
.cid-u8Zx5V4hlQ .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-u8Zx5V4hlQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8Zx5V4hlQ .dropdown-item:hover,
.cid-u8Zx5V4hlQ .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8Zx5V4hlQ .dropdown-item:hover span {
  color: white;
}
.cid-u8Zx5V4hlQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8Zx5V4hlQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8Zx5V4hlQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8Zx5V4hlQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8Zx5V4hlQ .nav-link {
  position: relative;
}
.cid-u8Zx5V4hlQ .container {
  display: flex;
  margin: auto;
}
.cid-u8Zx5V4hlQ .navbar-caption:hover,
.cid-u8Zx5V4hlQ .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-u8Zx5V4hlQ .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u8Zx5V4hlQ .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u8Zx5V4hlQ .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-u8Zx5V4hlQ .dropdown-menu,
.cid-u8Zx5V4hlQ .navbar.opened {
  background: #efefef !important;
}
.cid-u8Zx5V4hlQ .nav-item:focus,
.cid-u8Zx5V4hlQ .nav-link:focus {
  outline: none;
}
.cid-u8Zx5V4hlQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8Zx5V4hlQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8Zx5V4hlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8Zx5V4hlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8Zx5V4hlQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8Zx5V4hlQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8Zx5V4hlQ .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: #efefef;
  padding: 0 !important;
}
.cid-u8Zx5V4hlQ .navbar.opened {
  transition: all 0.3s;
}
.cid-u8Zx5V4hlQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8Zx5V4hlQ .navbar .navbar-logo img {
  width: auto;
}
.cid-u8Zx5V4hlQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8Zx5V4hlQ .navbar.collapsed {
  justify-content: center;
}
.cid-u8Zx5V4hlQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8Zx5V4hlQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8Zx5V4hlQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-u8Zx5V4hlQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8Zx5V4hlQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8Zx5V4hlQ .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-u8Zx5V4hlQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8Zx5V4hlQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8Zx5V4hlQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8Zx5V4hlQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8Zx5V4hlQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8Zx5V4hlQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8Zx5V4hlQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8Zx5V4hlQ .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-u8Zx5V4hlQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8Zx5V4hlQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8Zx5V4hlQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8Zx5V4hlQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8Zx5V4hlQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8Zx5V4hlQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8Zx5V4hlQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8Zx5V4hlQ .navbar.navbar-short {
  min-height: 70px;
}
.cid-u8Zx5V4hlQ .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;
  width: 25%;
}
.cid-u8Zx5V4hlQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8Zx5V4hlQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8Zx5V4hlQ .dropdown-item.active,
.cid-u8Zx5V4hlQ .dropdown-item:active {
  background-color: transparent;
}
.cid-u8Zx5V4hlQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8Zx5V4hlQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8Zx5V4hlQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8Zx5V4hlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-u8Zx5V4hlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8Zx5V4hlQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8Zx5V4hlQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8Zx5V4hlQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u8Zx5V4hlQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8Zx5V4hlQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-u8Zx5V4hlQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8Zx5V4hlQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Zx5V4hlQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Zx5V4hlQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8Zx5V4hlQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Zx5V4hlQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8Zx5V4hlQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8Zx5V4hlQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Zx5V4hlQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8Zx5V4hlQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8Zx5V4hlQ .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-u8Zx5V4hlQ .navbar {
    height: 70px;
  }
  .cid-u8Zx5V4hlQ .navbar.opened {
    height: auto;
  }
  .cid-u8Zx5V4hlQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8Zx5V4hlQ .container-fluid {
  padding: 0 1rem !important;
}
.cid-u8Zx5V4hlQ .navbar-collapse {
  width: 75%;
}
.cid-u8Zx5V4hlQ .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-u8Zx5V4hlQ .navbar-collapse {
  width: 100%;
}
.cid-u8Zx5V4hlQ .navbar-nav {
  width: 100%;
}
.cid-u8Zx5V4hlQ .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8Zx5V4hlQ .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u8Zx5V4hlQ .navbar-collapse {
    width: 100%;
  }
  .cid-u8Zx5V4hlQ .navbar-nav {
    width: 100%;
  }
  .cid-u8Zx5V4hlQ .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u8Zx5Vocig {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-u8Zx5Vocig .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Zx5Vocig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8Zx5Vocig .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8Zx5Vocig .col-text {
    max-width: 624px;
  }
}
.cid-u8Zx5Vocig .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-u8Zx5Vocig .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-u8Zx5Vocig .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-u8Zx5Vocig .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-u8Zx5Vocig .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-u8Zx5Vocig .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-u8Zx5Vocig .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u8Zx5Vocig .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-u8Zx5Vocig .card-title {
  color: #FFFFFF;
}
.cid-uBmVfB7ltM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-uBmVfB7ltM .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBmVfB7ltM .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uBmVfB7ltM .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uBmVfB7ltM .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBmVfB7ltM .embla__slide .slide-content {
  width: 100%;
}
.cid-uBmVfB7ltM .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-uBmVfB7ltM .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uBmVfB7ltM .embla__button--next,
.cid-uBmVfB7ltM .embla__button--prev {
  display: flex;
}
.cid-uBmVfB7ltM .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uBmVfB7ltM .embla__button:hover {
  opacity: .5 !important;
}
.cid-uBmVfB7ltM .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uBmVfB7ltM .embla__button.embla__button--next {
  right: 0;
}
.cid-uBmVfB7ltM .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uBmVfB7ltM .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uBmVfB7ltM .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBmVfB7ltM .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBmVfB7ltM .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKpWD7HHq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKpWD7HHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKpWD7HHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKpWD7HHq .col-title {
  margin-bottom: 32px;
}
.cid-vkKpWD7HHq .mbr-section-title {
  color: #24262b;
}
.cid-vkKpWD7HHq .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKpWD7HHq .cards-row {
  row-gap: 32px;
}
.cid-vkKpWD7HHq .card {
  border-radius: 0;
}
.cid-vkKpWD7HHq .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKpWD7HHq .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKpWD7HHq .text-wrap {
  flex-grow: 1;
}
.cid-vkKpWD7HHq .card-title {
  color: #24262b;
}
.cid-vkKpWD7HHq .card-text {
  color: #767676;
}
.cid-u9ratorkpX {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9ratorkpX .col-title {
    margin-bottom: 20px;
  }
}
.cid-u9ratorkpX .mbr-section-title {
  color: #5eabdf;
}
.cid-u9ratorkpX .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u9ratorkpX .mbr-text {
  color: #7d8588;
}
.cid-uBihiSYI28 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f7ff;
}
.cid-uBihiSYI28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBihiSYI28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBihiSYI28 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBihiSYI28 .mbr-section-title {
  color: #5eabdf;
}
.cid-uBihiSYI28 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBihiSYI28 .items-row {
  row-gap: 32px;
}
.cid-uBihiSYI28 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uBihiSYI28 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uBihiSYI28 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uBihiSYI28 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uBihiSYI28 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uBihiSYI28 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uBihiSYI28 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uBihiSYI28 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uBihiSYI28 .carousel-control,
.cid-uBihiSYI28 .close {
  background: #1b1b1b;
}
.cid-uBihiSYI28 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBihiSYI28 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBihiSYI28 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBihiSYI28 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBihiSYI28 .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-uBihiSYI28 .close::before {
  content: '\e91a';
}
.cid-uBihiSYI28 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBihiSYI28 .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-uBihiSYI28 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBihiSYI28 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBihiSYI28 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBihiSYI28 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBihiSYI28 .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-uBihiSYI28 .carousel-indicators li.active,
.cid-uBihiSYI28 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBihiSYI28 .carousel-indicators li::after,
.cid-uBihiSYI28 .carousel-indicators li::before {
  content: none;
}
.cid-uBihiSYI28 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBihiSYI28 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBihiSYI28 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBihiSYI28 .carousel-indicators {
    display: none;
  }
}
.cid-uBihiSYI28 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBihiSYI28 .carousel-inner > .active {
  display: block;
}
.cid-uBihiSYI28 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBihiSYI28 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBihiSYI28 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBihiSYI28 .carousel-control,
  .cid-uBihiSYI28 .carousel-indicators,
  .cid-uBihiSYI28 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBihiSYI28 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBihiSYI28 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBihiSYI28 .carousel-indicators .active,
.cid-uBihiSYI28 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBihiSYI28 .carousel-indicators .active {
  background: #fff;
}
.cid-uBihiSYI28 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBihiSYI28 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBihiSYI28 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBihiSYI28 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBihiSYI28 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBihiSYI28 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBihiSYI28 .carousel {
  width: 100%;
}
.cid-uBihiSYI28 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBihiSYI28 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBihiSYI28 .modal.fade .modal-dialog,
.cid-uBihiSYI28 .modal.in .modal-dialog {
  transform: none;
}
.cid-uBihiSYI28 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBihiSYI28 H6 {
  text-align: center;
}
.cid-uBiiDPKIdW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f7ff;
}
.cid-uBiiDPKIdW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBiiDPKIdW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBiiDPKIdW .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBiiDPKIdW .mbr-section-title {
  color: #5eabdf;
}
.cid-uBiiDPKIdW .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBiiDPKIdW .items-row {
  row-gap: 32px;
}
.cid-uBiiDPKIdW .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uBiiDPKIdW .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uBiiDPKIdW .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uBiiDPKIdW .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uBiiDPKIdW .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uBiiDPKIdW .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uBiiDPKIdW .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uBiiDPKIdW .mbr-item-subtitle {
  color: #24262b;
}
.cid-uBiiDPKIdW .carousel-control,
.cid-uBiiDPKIdW .close {
  background: #1b1b1b;
}
.cid-uBiiDPKIdW .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBiiDPKIdW .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBiiDPKIdW .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBiiDPKIdW .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBiiDPKIdW .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-uBiiDPKIdW .close::before {
  content: '\e91a';
}
.cid-uBiiDPKIdW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBiiDPKIdW .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-uBiiDPKIdW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBiiDPKIdW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBiiDPKIdW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBiiDPKIdW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBiiDPKIdW .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-uBiiDPKIdW .carousel-indicators li.active,
.cid-uBiiDPKIdW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBiiDPKIdW .carousel-indicators li::after,
.cid-uBiiDPKIdW .carousel-indicators li::before {
  content: none;
}
.cid-uBiiDPKIdW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBiiDPKIdW .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBiiDPKIdW .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBiiDPKIdW .carousel-indicators {
    display: none;
  }
}
.cid-uBiiDPKIdW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBiiDPKIdW .carousel-inner > .active {
  display: block;
}
.cid-uBiiDPKIdW .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBiiDPKIdW .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBiiDPKIdW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBiiDPKIdW .carousel-control,
  .cid-uBiiDPKIdW .carousel-indicators,
  .cid-uBiiDPKIdW .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBiiDPKIdW .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBiiDPKIdW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBiiDPKIdW .carousel-indicators .active,
.cid-uBiiDPKIdW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBiiDPKIdW .carousel-indicators .active {
  background: #fff;
}
.cid-uBiiDPKIdW .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBiiDPKIdW .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBiiDPKIdW .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBiiDPKIdW .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBiiDPKIdW .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBiiDPKIdW .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBiiDPKIdW .carousel {
  width: 100%;
}
.cid-uBiiDPKIdW .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBiiDPKIdW .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBiiDPKIdW .modal.fade .modal-dialog,
.cid-uBiiDPKIdW .modal.in .modal-dialog {
  transform: none;
}
.cid-uBiiDPKIdW .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBiiDPKIdW H6 {
  text-align: center;
}
.cid-uBmHKoieas {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f0f7ff;
}
.cid-uBmHKoieas .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBmHKoieas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBmHKoieas .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBmHKoieas .mbr-section-title {
  color: #5eabdf;
}
.cid-uBmHKoieas .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBmHKoieas .items-row {
  row-gap: 32px;
}
.cid-uBmHKoieas .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uBmHKoieas .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uBmHKoieas .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uBmHKoieas .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uBmHKoieas .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uBmHKoieas .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uBmHKoieas .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uBmHKoieas .mbr-item-subtitle {
  color: #24262b;
}
.cid-uBmHKoieas .carousel-control,
.cid-uBmHKoieas .close {
  background: #1b1b1b;
}
.cid-uBmHKoieas .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBmHKoieas .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBmHKoieas .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBmHKoieas .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBmHKoieas .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-uBmHKoieas .close::before {
  content: '\e91a';
}
.cid-uBmHKoieas .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBmHKoieas .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-uBmHKoieas .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBmHKoieas .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBmHKoieas .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBmHKoieas .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBmHKoieas .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-uBmHKoieas .carousel-indicators li.active,
.cid-uBmHKoieas .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBmHKoieas .carousel-indicators li::after,
.cid-uBmHKoieas .carousel-indicators li::before {
  content: none;
}
.cid-uBmHKoieas .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBmHKoieas .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBmHKoieas .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBmHKoieas .carousel-indicators {
    display: none;
  }
}
.cid-uBmHKoieas .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBmHKoieas .carousel-inner > .active {
  display: block;
}
.cid-uBmHKoieas .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBmHKoieas .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBmHKoieas .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBmHKoieas .carousel-control,
  .cid-uBmHKoieas .carousel-indicators,
  .cid-uBmHKoieas .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBmHKoieas .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBmHKoieas .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBmHKoieas .carousel-indicators .active,
.cid-uBmHKoieas .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBmHKoieas .carousel-indicators .active {
  background: #fff;
}
.cid-uBmHKoieas .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBmHKoieas .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBmHKoieas .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBmHKoieas .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBmHKoieas .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBmHKoieas .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBmHKoieas .carousel {
  width: 100%;
}
.cid-uBmHKoieas .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBmHKoieas .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBmHKoieas .modal.fade .modal-dialog,
.cid-uBmHKoieas .modal.in .modal-dialog {
  transform: none;
}
.cid-uBmHKoieas .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBmHKoieas H6 {
  text-align: center;
}
.cid-uBmY34s9Gy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBmY34s9Gy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBmY34s9Gy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBmY34s9Gy .container,
.cid-uBmY34s9Gy .container-fluid {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f0f7ff;
}
.cid-uBmY34s9Gy .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBmY34s9Gy .col-text {
    max-width: 624px;
  }
}
.cid-uBmY34s9Gy .mbr-section-title {
  color: #24262b;
}
.cid-uBmY34s9Gy .mbr-section-subtitle {
  margin-top: 8px;
  color: #5eabdf;
}
.cid-uBmY34s9Gy .mbr-text {
  margin-top: 24px;
  color: #24262b;
}
.cid-uBmY34s9Gy .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-uBmY34s9Gy .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uBmY34s9Gy .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-uBmY34s9Gy .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uBmY34s9Gy .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #24262b;
  margin-bottom: 1rem;
}
.cid-uBmY34s9Gy .card-title {
  color: #24262b;
}
.cid-uBtnSF41qZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5eabdf;
}
.cid-uBtnSF41qZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtnSF41qZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBtnSF41qZ .cards-row {
  row-gap: 32px;
}
.cid-uBtnSF41qZ .card {
  border-radius: 0;
}
.cid-uBtnSF41qZ .card-wrapper {
  width: 100%;
}
.cid-uBtnSF41qZ .card-title {
  margin-bottom: 8px;
  color: #000000;
}
.cid-uBtnSF41qZ .card-subtitle {
  max-width: 550px;
  color: #FFFFFF;
}
.cid-uBtnSF41qZ .card-bottom-wrap {
  margin-top: 24px;
}
.cid-uBtnSF41qZ .card-name {
  color: #FFFFFF;
}
.cid-uBtnSF41qZ .card-text {
  color: #000000;
}
.cid-vkKxxLFfEd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKxxLFfEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKxxLFfEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKxxLFfEd .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKxxLFfEd .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKxxLFfEd .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKxxLFfEd .items-row {
  row-gap: 32px;
}
.cid-vkKxxLFfEd .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKxxLFfEd .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKxxLFfEd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKxxLFfEd .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKxxLFfEd .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKxxLFfEd .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKxxLFfEd .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKxxLFfEd .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKxxLFfEd .carousel-control,
.cid-vkKxxLFfEd .close {
  background: #1b1b1b;
}
.cid-vkKxxLFfEd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKxxLFfEd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKxxLFfEd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKxxLFfEd .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKxxLFfEd .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-vkKxxLFfEd .close::before {
  content: '\e91a';
}
.cid-vkKxxLFfEd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKxxLFfEd .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-vkKxxLFfEd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxxLFfEd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKxxLFfEd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKxxLFfEd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKxxLFfEd .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-vkKxxLFfEd .carousel-indicators li.active,
.cid-vkKxxLFfEd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKxxLFfEd .carousel-indicators li::after,
.cid-vkKxxLFfEd .carousel-indicators li::before {
  content: none;
}
.cid-vkKxxLFfEd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKxxLFfEd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKxxLFfEd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKxxLFfEd .carousel-indicators {
    display: none;
  }
}
.cid-vkKxxLFfEd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKxxLFfEd .carousel-inner > .active {
  display: block;
}
.cid-vkKxxLFfEd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxxLFfEd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKxxLFfEd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKxxLFfEd .carousel-control,
  .cid-vkKxxLFfEd .carousel-indicators,
  .cid-vkKxxLFfEd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKxxLFfEd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKxxLFfEd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKxxLFfEd .carousel-indicators .active,
.cid-vkKxxLFfEd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKxxLFfEd .carousel-indicators .active {
  background: #fff;
}
.cid-vkKxxLFfEd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKxxLFfEd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKxxLFfEd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKxxLFfEd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKxxLFfEd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKxxLFfEd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKxxLFfEd .carousel {
  width: 100%;
}
.cid-vkKxxLFfEd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKxxLFfEd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKxxLFfEd .modal.fade .modal-dialog,
.cid-vkKxxLFfEd .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKxxLFfEd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKxxLFfEd H6 {
  text-align: center;
}
.cid-uBmZwhF8Ft {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uBmZwhF8Ft .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBmZwhF8Ft .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBmZwhF8Ft .mbr-section-head {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .cid-uBmZwhF8Ft .mbr-section-head {
    text-align: center;
  }
}
.cid-uBmZwhF8Ft .mbr-section-title {
  color: #5eabdf;
  text-align: center;
}
.cid-uBmZwhF8Ft .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBmZwhF8Ft .row {
  row-gap: 32px;
}
.cid-uBmZwhF8Ft .line-items-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 32px;
  width: 100%;
}
.cid-uBmZwhF8Ft .line-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uBmZwhF8Ft .line-text-wrap {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 6px;
}
.cid-uBmZwhF8Ft .line-text {
  color: #24262b;
  margin-right: auto;
  max-width: 50%;
}
.cid-uBmZwhF8Ft .line-number {
  color: #24262b;
  margin-left: auto;
  max-width: 40%;
}
.cid-uBmZwhF8Ft .line {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: #e3e3e3;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
}
.cid-uBmZwhF8Ft .line-active {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #5eabdf;
}
.cid-uBmZwhF8Ft .line-item-1 .line-number:before {
  content: "100";
}
.cid-uBmZwhF8Ft .line-item-1 .line-active {
  width: 100%;
}
.cid-uBmZwhF8Ft .line-item-2 .line-number:before {
  content: "100";
}
.cid-uBmZwhF8Ft .line-item-2 .line-active {
  width: 100%;
}
.cid-uBmZwhF8Ft .line-item-3 .line-number:before {
  content: "100";
}
.cid-uBmZwhF8Ft .line-item-3 .line-active {
  width: 100%;
}
.cid-uBmZwhF8Ft .line-item-4 .line-number:before {
  content: "100";
}
.cid-uBmZwhF8Ft .line-item-4 .line-active {
  width: 100%;
}
.cid-uBmZwhF8Ft .line-item-5 .line-number:before {
  content: "100";
}
.cid-uBmZwhF8Ft .line-item-5 .line-active {
  width: 100%;
}
.cid-uBmZwhF8Ft .line-item-6 .line-number:before {
  content: "100";
}
.cid-uBmZwhF8Ft .line-item-6 .line-active {
  width: 100%;
}
.cid-u8Zx5YCQac {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u8Zx5YCQac .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8Zx5YCQac .mbr-section-title {
  color: #7d8588;
}
.cid-u8Zx5YCQac .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u8Zx5YCQac .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-u8Zx5YCQac .card {
    padding: 1rem !important;
  }
}
.cid-u8Zx5YCQac .card:hover {
  transform: translateY(-1rem);
}
.cid-u8Zx5YCQac .card img {
  max-width: 120px;
  height: auto;
}
.cid-u8Zx5Z6Xyg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-u8Zx5Z6Xyg .col-main {
    flex-direction: column;
  }
}
.cid-u8Zx5Z6Xyg .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u8Zx5Z6Xyg .border-item {
    order: 1;
  }
}
.cid-u8Zx5Z6Xyg .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-u8Zx5Z6Xyg .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-u8Zx5Z6Xyg .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-u8Zx5Z6Xyg .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-u8Zx5Z6Xyg .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-u8Zx5Z6Xyg .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-u8Zx5Z6Xyg .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-u8Zx5Z6Xyg .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-v8Ragxagf4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v8Ragxagf4 nav.navbar {
  position: fixed;
}
.cid-v8Ragxagf4 .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-v8Ragxagf4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8Ragxagf4 .dropdown-item:hover,
.cid-v8Ragxagf4 .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-v8Ragxagf4 .dropdown-item:hover span {
  color: white;
}
.cid-v8Ragxagf4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8Ragxagf4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8Ragxagf4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8Ragxagf4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8Ragxagf4 .nav-link {
  position: relative;
}
.cid-v8Ragxagf4 .container {
  display: flex;
  margin: auto;
}
.cid-v8Ragxagf4 .navbar-caption:hover,
.cid-v8Ragxagf4 .navbar-caption:focus {
  color: #5eabdf !important;
}
.cid-v8Ragxagf4 .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-v8Ragxagf4 .navbar-nav .nav-item {
  color: #24262b;
}
.cid-v8Ragxagf4 .navbar-nav .nav-item:hover {
  color: #5eabdf;
}
.cid-v8Ragxagf4 .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-v8Ragxagf4 .navbar-nav .nav-item a:hover {
  color: #5eabdf !important;
}
.cid-v8Ragxagf4 .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-v8Ragxagf4 .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-v8Ragxagf4 .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-v8Ragxagf4 .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #5eabdf !important;
}
.cid-v8Ragxagf4 .dropdown-menu,
.cid-v8Ragxagf4 .navbar.opened {
  background: #efefef !important;
}
.cid-v8Ragxagf4 .nav-item:focus,
.cid-v8Ragxagf4 .nav-link:focus {
  outline: none;
}
.cid-v8Ragxagf4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8Ragxagf4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8Ragxagf4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8Ragxagf4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8Ragxagf4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8Ragxagf4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8Ragxagf4 .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: #efefef;
  padding: 0 !important;
}
.cid-v8Ragxagf4 .navbar.opened {
  transition: all 0.3s;
}
.cid-v8Ragxagf4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8Ragxagf4 .navbar .navbar-logo img {
  width: auto;
}
.cid-v8Ragxagf4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8Ragxagf4 .navbar.collapsed {
  justify-content: center;
}
.cid-v8Ragxagf4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8Ragxagf4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8Ragxagf4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.5rem);
  }
}
.cid-v8Ragxagf4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8Ragxagf4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8Ragxagf4 .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-v8Ragxagf4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8Ragxagf4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8Ragxagf4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8Ragxagf4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8Ragxagf4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8Ragxagf4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8Ragxagf4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8Ragxagf4 .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-v8Ragxagf4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8Ragxagf4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8Ragxagf4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8Ragxagf4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8Ragxagf4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8Ragxagf4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8Ragxagf4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8Ragxagf4 .navbar.navbar-short {
  min-height: 70px;
}
.cid-v8Ragxagf4 .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;
  width: 25%;
}
.cid-v8Ragxagf4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8Ragxagf4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8Ragxagf4 .dropdown-item.active,
.cid-v8Ragxagf4 .dropdown-item:active {
  background-color: transparent;
}
.cid-v8Ragxagf4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8Ragxagf4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8Ragxagf4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8Ragxagf4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-v8Ragxagf4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8Ragxagf4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8Ragxagf4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8Ragxagf4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-v8Ragxagf4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8Ragxagf4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5eabdf;
}
.cid-v8Ragxagf4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8Ragxagf4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8Ragxagf4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8Ragxagf4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8Ragxagf4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8Ragxagf4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8Ragxagf4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8Ragxagf4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8Ragxagf4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8Ragxagf4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8Ragxagf4 .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-v8Ragxagf4 .navbar {
    height: 70px;
  }
  .cid-v8Ragxagf4 .navbar.opened {
    height: auto;
  }
  .cid-v8Ragxagf4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8Ragxagf4 .container-fluid {
  padding: 0 1rem !important;
}
.cid-v8Ragxagf4 .navbar-collapse {
  width: 75%;
}
.cid-v8Ragxagf4 .navbar-brand {
  width: auto;
  max-width: 50%;
}
.cid-v8Ragxagf4 .navbar-collapse {
  width: 100%;
}
.cid-v8Ragxagf4 .navbar-nav {
  width: 100%;
}
.cid-v8Ragxagf4 .navbar-buttons {
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v8Ragxagf4 .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-v8Ragxagf4 .navbar-collapse {
    width: 100%;
  }
  .cid-v8Ragxagf4 .navbar-nav {
    width: 100%;
  }
  .cid-v8Ragxagf4 .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-v8Ragxmpzv {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/venue-header-image-2-1200x369.png");
}
.cid-v8Ragxmpzv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8Ragxmpzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8Ragxmpzv .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8Ragxmpzv .col-text {
    max-width: 624px;
  }
}
.cid-v8Ragxmpzv .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-v8Ragxmpzv .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-v8Ragxmpzv .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-v8Ragxmpzv .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-v8Ragxmpzv .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-v8Ragxmpzv .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-v8Ragxmpzv .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-v8Ragxmpzv .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-v8Ragxmpzv .card-title {
  color: #FFFFFF;
}
.cid-v8RagxBIHF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f0f7ff;
  overflow: hidden;
}
.cid-v8RagxBIHF .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v8RagxBIHF .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-v8RagxBIHF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-v8RagxBIHF .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v8RagxBIHF .embla__slide .slide-content {
  width: 100%;
}
.cid-v8RagxBIHF .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #f0f7ff;
}
.cid-v8RagxBIHF .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-v8RagxBIHF .embla__button--next,
.cid-v8RagxBIHF .embla__button--prev {
  display: flex;
}
.cid-v8RagxBIHF .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #000000 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v8RagxBIHF .embla__button:hover {
  opacity: .5 !important;
}
.cid-v8RagxBIHF .embla__button.embla__button--prev {
  right: 48px;
}
.cid-v8RagxBIHF .embla__button.embla__button--next {
  right: 0;
}
.cid-v8RagxBIHF .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-v8RagxBIHF .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-v8RagxBIHF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v8RagxBIHF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v8RagxBIHF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkKpSc7eyo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKpSc7eyo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKpSc7eyo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKpSc7eyo .col-title {
  margin-bottom: 32px;
}
.cid-vkKpSc7eyo .mbr-section-title {
  color: #24262b;
}
.cid-vkKpSc7eyo .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKpSc7eyo .cards-row {
  row-gap: 32px;
}
.cid-vkKpSc7eyo .card {
  border-radius: 0;
}
.cid-vkKpSc7eyo .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-vkKpSc7eyo .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #33363b;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-vkKpSc7eyo .text-wrap {
  flex-grow: 1;
}
.cid-vkKpSc7eyo .card-title {
  color: #24262b;
}
.cid-vkKpSc7eyo .card-text {
  color: #767676;
}
.cid-v8RagybkNp {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v8RagybkNp .col-title {
    margin-bottom: 20px;
  }
}
.cid-v8RagybkNp .mbr-section-title {
  color: #5eabdf;
  text-align: center;
}
.cid-v8RagybkNp .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-v8RagybkNp .mbr-text {
  color: #7d8588;
  text-align: center;
}
.cid-v8RagzAufy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v8RagzAufy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8RagzAufy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8RagzAufy .container,
.cid-v8RagzAufy .container-fluid {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f0f7ff;
}
.cid-v8RagzAufy .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8RagzAufy .col-text {
    max-width: 624px;
  }
}
.cid-v8RagzAufy .mbr-section-title {
  color: #24262b;
}
.cid-v8RagzAufy .mbr-section-subtitle {
  margin-top: 8px;
  color: #5eabdf;
}
.cid-v8RagzAufy .mbr-text {
  margin-top: 24px;
  color: #24262b;
}
.cid-v8RagzAufy .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-v8RagzAufy .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-v8RagzAufy .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-v8RagzAufy .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-v8RagzAufy .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #24262b;
  margin-bottom: 1rem;
}
.cid-v8RagzAufy .card-title {
  color: #5eabdf;
}
.cid-v8Ragyifty {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v8Ragyifty .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8Ragyifty .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8Ragyifty .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v8Ragyifty .mbr-section-title {
  color: #5eabdf;
}
.cid-v8Ragyifty .mbr-section-subtitle {
  color: #24262b;
}
.cid-v8Ragyifty .items-row {
  row-gap: 32px;
}
.cid-v8Ragyifty .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v8Ragyifty .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v8Ragyifty .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-v8Ragyifty .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v8Ragyifty .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v8Ragyifty .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v8Ragyifty .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v8Ragyifty .mbr-item-subtitle {
  color: #24262b;
}
.cid-v8Ragyifty .carousel-control,
.cid-v8Ragyifty .close {
  background: #1b1b1b;
}
.cid-v8Ragyifty .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v8Ragyifty .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v8Ragyifty .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v8Ragyifty .carousel-control-next span {
  margin-left: 5px;
}
.cid-v8Ragyifty .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-v8Ragyifty .close::before {
  content: '\e91a';
}
.cid-v8Ragyifty .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v8Ragyifty .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-v8Ragyifty .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8Ragyifty .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v8Ragyifty .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v8Ragyifty .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v8Ragyifty .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-v8Ragyifty .carousel-indicators li.active,
.cid-v8Ragyifty .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v8Ragyifty .carousel-indicators li::after,
.cid-v8Ragyifty .carousel-indicators li::before {
  content: none;
}
.cid-v8Ragyifty .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v8Ragyifty .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v8Ragyifty .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v8Ragyifty .carousel-indicators {
    display: none;
  }
}
.cid-v8Ragyifty .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v8Ragyifty .carousel-inner > .active {
  display: block;
}
.cid-v8Ragyifty .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8Ragyifty .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v8Ragyifty .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v8Ragyifty .carousel-control,
  .cid-v8Ragyifty .carousel-indicators,
  .cid-v8Ragyifty .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v8Ragyifty .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v8Ragyifty .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v8Ragyifty .carousel-indicators .active,
.cid-v8Ragyifty .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v8Ragyifty .carousel-indicators .active {
  background: #fff;
}
.cid-v8Ragyifty .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v8Ragyifty .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v8Ragyifty .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v8Ragyifty .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v8Ragyifty .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v8Ragyifty .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v8Ragyifty .carousel {
  width: 100%;
}
.cid-v8Ragyifty .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v8Ragyifty .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v8Ragyifty .modal.fade .modal-dialog,
.cid-v8Ragyifty .modal.in .modal-dialog {
  transform: none;
}
.cid-v8Ragyifty .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v8Ragyifty H6 {
  text-align: center;
}
.cid-v8WaZaDF5Z {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-v8WaZaDF5Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8WaZaDF5Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8WaZaDF5Z .col-title {
  margin-bottom: 32px;
}
.cid-v8WaZaDF5Z .mbr-section-title {
  color: #24262b;
}
.cid-v8WaZaDF5Z .mbr-section-subtitle {
  color: #24262b;
}
.cid-v8WaZaDF5Z .cars-row {
  row-gap: 32px;
}
.cid-v8WaZaDF5Z .item {
  border-radius: 0;
}
.cid-v8WaZaDF5Z .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-v8WaZaDF5Z .text-wrap {
  flex-grow: 1;
}
.cid-v8WaZaDF5Z .card-title {
  color: #24262b;
}
.cid-v8WaZaDF5Z .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-v8WaZaDF5Z .mbr-section-btn {
  margin-top: 12px;
}
.cid-v8WaZaDF5Z .card-text,
.cid-v8WaZaDF5Z .mbr-section-btn {
  text-align: center;
}
.cid-v8WaZaDF5Z .card-title,
.cid-v8WaZaDF5Z .card-wrapper {
  color: #000000;
}
.cid-v8Wb234Mxs {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-v8Wb234Mxs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8Wb234Mxs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8Wb234Mxs .col-title {
  margin-bottom: 32px;
}
.cid-v8Wb234Mxs .mbr-section-title {
  color: #24262b;
}
.cid-v8Wb234Mxs .mbr-section-subtitle {
  color: #24262b;
}
.cid-v8Wb234Mxs .cars-row {
  row-gap: 32px;
}
.cid-v8Wb234Mxs .item {
  border-radius: 0;
}
.cid-v8Wb234Mxs .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-v8Wb234Mxs .text-wrap {
  flex-grow: 1;
}
.cid-v8Wb234Mxs .card-title {
  color: #24262b;
}
.cid-v8Wb234Mxs .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-v8Wb234Mxs .mbr-section-btn {
  margin-top: 12px;
}
.cid-v8Wb234Mxs .card-text,
.cid-v8Wb234Mxs .mbr-section-btn {
  text-align: center;
}
.cid-v8Wb234Mxs .card-title,
.cid-v8Wb234Mxs .card-wrapper {
  color: #000000;
}
.cid-vkKxtmhAEt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vkKxtmhAEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKxtmhAEt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKxtmhAEt .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vkKxtmhAEt .mbr-section-title {
  color: #5eabdf;
}
.cid-vkKxtmhAEt .mbr-section-subtitle {
  color: #24262b;
}
.cid-vkKxtmhAEt .items-row {
  row-gap: 32px;
}
.cid-vkKxtmhAEt .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vkKxtmhAEt .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vkKxtmhAEt .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-vkKxtmhAEt .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-vkKxtmhAEt .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vkKxtmhAEt .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vkKxtmhAEt .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vkKxtmhAEt .mbr-item-subtitle {
  color: #24262b;
}
.cid-vkKxtmhAEt .carousel-control,
.cid-vkKxtmhAEt .close {
  background: #1b1b1b;
}
.cid-vkKxtmhAEt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vkKxtmhAEt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vkKxtmhAEt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vkKxtmhAEt .carousel-control-next span {
  margin-left: 5px;
}
.cid-vkKxtmhAEt .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-vkKxtmhAEt .close::before {
  content: '\e91a';
}
.cid-vkKxtmhAEt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vkKxtmhAEt .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-vkKxtmhAEt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxtmhAEt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vkKxtmhAEt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vkKxtmhAEt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vkKxtmhAEt .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-vkKxtmhAEt .carousel-indicators li.active,
.cid-vkKxtmhAEt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vkKxtmhAEt .carousel-indicators li::after,
.cid-vkKxtmhAEt .carousel-indicators li::before {
  content: none;
}
.cid-vkKxtmhAEt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vkKxtmhAEt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vkKxtmhAEt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vkKxtmhAEt .carousel-indicators {
    display: none;
  }
}
.cid-vkKxtmhAEt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vkKxtmhAEt .carousel-inner > .active {
  display: block;
}
.cid-vkKxtmhAEt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vkKxtmhAEt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vkKxtmhAEt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vkKxtmhAEt .carousel-control,
  .cid-vkKxtmhAEt .carousel-indicators,
  .cid-vkKxtmhAEt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vkKxtmhAEt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vkKxtmhAEt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vkKxtmhAEt .carousel-indicators .active,
.cid-vkKxtmhAEt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vkKxtmhAEt .carousel-indicators .active {
  background: #fff;
}
.cid-vkKxtmhAEt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vkKxtmhAEt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vkKxtmhAEt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vkKxtmhAEt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vkKxtmhAEt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vkKxtmhAEt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vkKxtmhAEt .carousel {
  width: 100%;
}
.cid-vkKxtmhAEt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vkKxtmhAEt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vkKxtmhAEt .modal.fade .modal-dialog,
.cid-vkKxtmhAEt .modal.in .modal-dialog {
  transform: none;
}
.cid-vkKxtmhAEt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vkKxtmhAEt H6 {
  text-align: center;
}
.cid-v8RagzOcQy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5eabdf;
}
.cid-v8RagzOcQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8RagzOcQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8RagzOcQy .cards-row {
  row-gap: 32px;
}
.cid-v8RagzOcQy .card {
  border-radius: 0;
}
.cid-v8RagzOcQy .card-wrapper {
  width: 100%;
}
.cid-v8RagzOcQy .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-v8RagzOcQy .card-subtitle {
  max-width: 550px;
  color: #ffffff;
}
.cid-v8RagzOcQy .card-bottom-wrap {
  margin-top: 24px;
}
.cid-v8RagzOcQy .card-name {
  color: #FFFFFF;
}
.cid-v8RagzOcQy .card-text {
  color: #000000;
}
.cid-v8RagAgDYP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v8RagAgDYP .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v8RagAgDYP .mbr-section-title {
  color: #7d8588;
}
.cid-v8RagAgDYP .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-v8RagAgDYP .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-v8RagAgDYP .card {
    padding: 1rem !important;
  }
}
.cid-v8RagAgDYP .card:hover {
  transform: translateY(-1rem);
}
.cid-v8RagAgDYP .card img {
  max-width: 120px;
  height: auto;
}
.cid-v8RagAwfwI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-v8RagAwfwI .col-main {
    flex-direction: column;
  }
}
.cid-v8RagAwfwI .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-v8RagAwfwI .border-item {
    order: 1;
  }
}
.cid-v8RagAwfwI .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #7d8588;
}
@media (max-width: 991px) {
  .cid-v8RagAwfwI .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-v8RagAwfwI .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-v8RagAwfwI .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-v8RagAwfwI .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-v8RagAwfwI .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-v8RagAwfwI .list li:hover {
  color: #5eabdf;
  border-bottom: 2px solid currentColor;
}
.cid-v8RagAwfwI .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
