.btn {
  border-width: 2px;
}
body {
  font-family: Schibsted Grotesk;
}
.display-1 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'BarlowSemiCondensed-Bold';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'SchibstedGrotesk-SemiBold';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'BarlowSemiCondensed-Medium';
  font-size: 1.75rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'SchibstedGrotesk-Medium';
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((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: #242cd2 !important;
}
.bg-success {
  background-color: #bdcdc6 !important;
}
.bg-info {
  background-color: #e7d8d6 !important;
}
.bg-warning {
  background-color: #f90505 !important;
}
.bg-danger {
  background-color: #33363b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #242cd2 !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: #171c88 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #171c88 !important;
  border-color: #171c88 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e4eedb !important;
  border: none  !important;
  color: #638941 !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: #b8d2a0 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #638941 !important;
  background-color: #b8d2a0 !important;
  border-color: #b8d2a0 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e7d8d6 !important;
  border: none  !important;
  color: #784c46 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #c7a49f !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #784c46 !important;
  background-color: #c7a49f !important;
  border-color: #c7a49f !important;
}
.btn-success,
.btn-success:active {
  background-color: #bdcdc6 !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: #8ca89b !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border-color: #8ca89b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f90505 !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: #a40303 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a40303 !important;
  border-color: #a40303 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #33363b !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: #0b0b0c !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border-color: #0b0b0c !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 #242cd2;
  color: #242cd2;
  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: #171c88 !important;
  background-color: transparent!important;
  border-color: #171c88 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #242cd2 !important;
  border-color: #242cd2 !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 #e4eedb;
  color: #e4eedb;
  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: #b8d2a0 !important;
  background-color: transparent!important;
  border-color: #b8d2a0 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #638941 !important;
  background-color: #e4eedb !important;
  border-color: #e4eedb !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 #e7d8d6;
  color: #e7d8d6;
  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: #c7a49f !important;
  background-color: transparent!important;
  border-color: #c7a49f !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #784c46 !important;
  background-color: #e7d8d6 !important;
  border-color: #e7d8d6 !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 #bdcdc6;
  color: #bdcdc6;
  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: #8ca89b !important;
  background-color: transparent!important;
  border-color: #8ca89b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bdcdc6 !important;
  border-color: #bdcdc6 !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 #f90505;
  color: #f90505;
  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: #a40303 !important;
  background-color: transparent!important;
  border-color: #a40303 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f90505 !important;
  border-color: #f90505 !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 #33363b;
  color: #33363b;
  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: #0b0b0c !important;
  background-color: transparent!important;
  border-color: #0b0b0c !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #33363b !important;
  border-color: #33363b !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: #242cd2 !important;
}
.text-secondary {
  color: #e4eedb !important;
}
.text-success {
  color: #bdcdc6 !important;
}
.text-info {
  color: #e7d8d6 !important;
}
.text-warning {
  color: #f90505 !important;
}
.text-danger {
  color: #33363b !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-black {
  color: #24262b !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #151a7b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b0cd96 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #83a194 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #c19b96 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #950303 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #040404 !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: #242cd2;
}
.nav-tabs .nav-link:not(.active) {
  color: #24262b;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e7d8d6;
}
.alert-warning {
  background-color: #f90505;
}
.alert-danger {
  background-color: #33363b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #242cd2;
  border-color: #242cd2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #242cd2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cccef6;
}
.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: #fecccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a4a8b0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'SchibstedGrotesk-SemiBold';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #242cd2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'SchibstedGrotesk-SemiBold';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #242cd2;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #242cd2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #242cd2;
}
.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: #242cd2;
  border-bottom-color: #242cd2;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #242cd2 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e4eedb !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='%23242cd2' %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: #242cd2 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover {
  color: #242cd2 !important;
  border-color: #242cd2 !important;
}
.cid-tDSzbWjUPA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tDSzbWjUPA nav.navbar {
  position: fixed;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDSzbWjUPA .dropdown-item:hover,
.cid-tDSzbWjUPA .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .dropdown-item:hover span {
  color: white;
}
.cid-tDSzbWjUPA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDSzbWjUPA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDSzbWjUPA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDSzbWjUPA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDSzbWjUPA .nav-link {
  position: relative;
}
.cid-tDSzbWjUPA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDSzbWjUPA .container {
    flex-wrap: nowrap;
  }
}
.cid-tDSzbWjUPA .navbar-caption:hover,
.cid-tDSzbWjUPA .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tDSzbWjUPA .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .dropdown-menu,
.cid-tDSzbWjUPA .navbar.opened {
  background: #ffffff !important;
}
.cid-tDSzbWjUPA .nav-item:focus,
.cid-tDSzbWjUPA .nav-link:focus {
  outline: none;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSzbWjUPA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDSzbWjUPA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDSzbWjUPA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tDSzbWjUPA .navbar.opened {
  transition: all 0.3s;
}
.cid-tDSzbWjUPA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDSzbWjUPA .navbar .navbar-logo img {
  width: auto;
}
.cid-tDSzbWjUPA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDSzbWjUPA .navbar.collapsed {
  justify-content: center;
}
.cid-tDSzbWjUPA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDSzbWjUPA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDSzbWjUPA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tDSzbWjUPA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDSzbWjUPA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDSzbWjUPA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDSzbWjUPA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDSzbWjUPA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDSzbWjUPA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDSzbWjUPA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDSzbWjUPA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDSzbWjUPA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDSzbWjUPA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDSzbWjUPA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDSzbWjUPA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDSzbWjUPA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDSzbWjUPA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDSzbWjUPA .navbar.navbar-short {
  min-height: 70px;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDSzbWjUPA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDSzbWjUPA .dropdown-item.active,
.cid-tDSzbWjUPA .dropdown-item:active {
  background-color: transparent;
}
.cid-tDSzbWjUPA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDSzbWjUPA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDSzbWjUPA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDSzbWjUPA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDSzbWjUPA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDSzbWjUPA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDSzbWjUPA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDSzbWjUPA .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tDSzbWjUPA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDSzbWjUPA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar {
    height: 70px;
  }
  .cid-tDSzbWjUPA .navbar.opened {
    height: auto;
  }
  .cid-tDSzbWjUPA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDSzbWjUPA .container-fluid {
  padding: 0 1rem !important;
}
.cid-tDSzbWjUPA .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tDSzbWjUPA .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tDSzbWjUPA .navbar-collapse {
    width: 100%;
  }
  .cid-tDSzbWjUPA .navbar-nav {
    width: 100%;
  }
  .cid-tDSzbWjUPA .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tXHRglIMY1 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-tXHRglIMY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXHRglIMY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXHRglIMY1 .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXHRglIMY1 .col-text {
    max-width: 624px;
  }
}
.cid-tXHRglIMY1 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: center;
}
.cid-tXHRglIMY1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tXHRglIMY1 .mbr-text {
  margin-top: 24px;
  color: #ffffff;
  text-align: left;
}
.cid-tXHRglIMY1 .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-tXHRglIMY1 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tXHRglIMY1 .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-tXHRglIMY1 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXHRglIMY1 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-tXHRglIMY1 .card-title {
  color: #ffffff;
}
.cid-tXIgmDuX8M {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tXIgmDuX8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIgmDuX8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIgmDuX8M .mbr-section-title {
  color: #24262b;
}
.cid-tXIgmDuX8M .mbr-section-subtitle {
  color: #24262b;
}
.cid-tXIgmDuX8M .mbr-section-btn {
  margin-top: 16px;
}
.cid-uW2O7IRhBH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uW2O7IRhBH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW2O7IRhBH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW2O7IRhBH .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uW2O7IRhBH .mbr-section-title {
  color: #24262b;
}
.cid-uW2O7IRhBH .mbr-section-subtitle {
  color: #24262b;
}
.cid-uW2O7IRhBH .cards-row {
  row-gap: 32px;
}
.cid-uW2O7IRhBH .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uW2O7IRhBH .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uW2O7IRhBH .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uW2O7IRhBH .card-subtitle {
  color: #24262b;
}
.cid-uW2O7IRhBH .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uW2O7IRhBH .mbr-section-btn {
  margin-top: 20px;
}
.cid-uW2O7IRhBH .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uW2O7IRhBH .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uVWcNVCLAz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVWcNVCLAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVWcNVCLAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVWcNVCLAz .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uVWcNVCLAz .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uVWcNVCLAz .mbr-text,
.cid-uVWcNVCLAz .mbr-section-btn {
  color: #232323;
}
.cid-uVWcNVCLAz .mbr-section-title,
.cid-uVWcNVCLAz .line {
  color: #232323;
}
.cid-uVWcNVCLAz h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uVWcNVCLAz h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uVWcNVCLAz .mbr-section-subtitle,
.cid-uVWcNVCLAz .align {
  text-align: left;
  color: #232323;
}
.cid-uQgGPnx1pC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQgGPnx1pC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQgGPnx1pC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQgGPnx1pC .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uQgGPnx1pC .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uQgGPnx1pC .mbr-text,
.cid-uQgGPnx1pC .mbr-section-btn {
  color: #232323;
}
.cid-uQgGPnx1pC .mbr-section-title,
.cid-uQgGPnx1pC .line {
  color: #232323;
}
.cid-uQgGPnx1pC h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uQgGPnx1pC h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uQgGPnx1pC .mbr-section-subtitle,
.cid-uQgGPnx1pC .align {
  text-align: left;
  color: #232323;
}
.cid-uQgH3Wgnzr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQgH3Wgnzr .img-container {
  position: relative;
}
.cid-uQgH3Wgnzr .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-uQgH3Wgnzr .image-wrapper img {
  width: 100%;
  height: 32vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-uQgH3Wgnzr .image-wrapper img {
    height: auto;
  }
}
.cid-uQgH3Wgnzr .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-uQgH3Wgnzr .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uQgH3Wgnzr .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-uM24HtyHqd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uM24HtyHqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM24HtyHqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM24HtyHqd .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uM24HtyHqd .mbr-section-title {
  color: #24262b;
}
.cid-uM24HtyHqd .mbr-section-subtitle {
  color: #24262b;
}
.cid-uM24HtyHqd .cards-row {
  row-gap: 32px;
}
.cid-uM24HtyHqd .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uM24HtyHqd .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uM24HtyHqd .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uM24HtyHqd .card-subtitle {
  color: #24262b;
}
.cid-uM24HtyHqd .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uM24HtyHqd .mbr-section-btn {
  margin-top: 20px;
}
.cid-uM24HtyHqd .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uM24HtyHqd .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uJMB7qeCep {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uJMB7qeCep .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJMB7qeCep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJMB7qeCep .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uJMB7qeCep .mbr-section-title {
  color: #24262b;
}
.cid-uJMB7qeCep .mbr-section-subtitle {
  color: #24262b;
}
.cid-uJMB7qeCep .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uJMB7qeCep .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uJMB7qeCep .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uJMB7qeCep .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uJMB7qeCep .card-subtitle {
  color: #24262b;
}
.cid-uJMB7qeCep .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uJMB7qeCep .mbr-section-btn {
  margin-top: 20px;
}
.cid-uJMB7qeCep .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uJMB7qeCep .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uEozqC3q84 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uEozqC3q84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEozqC3q84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEozqC3q84 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uEozqC3q84 .mbr-section-title {
  color: #24262b;
}
.cid-uEozqC3q84 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uEozqC3q84 .cards-row {
  row-gap: 32px;
}
.cid-uEozqC3q84 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uEozqC3q84 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uEozqC3q84 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uEozqC3q84 .card-subtitle {
  color: #24262b;
}
.cid-uEozqC3q84 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uEozqC3q84 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uEozqC3q84 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uEozqC3q84 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uDJbBa5M6M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uDJbBa5M6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDJbBa5M6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDJbBa5M6M .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uDJbBa5M6M .mbr-section-title {
  color: #24262b;
}
.cid-uDJbBa5M6M .mbr-section-subtitle {
  color: #24262b;
}
.cid-uDJbBa5M6M .cards-row {
  row-gap: 32px;
}
.cid-uDJbBa5M6M .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uDJbBa5M6M .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uDJbBa5M6M .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uDJbBa5M6M .card-subtitle {
  color: #24262b;
}
.cid-uDJbBa5M6M .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uDJbBa5M6M .mbr-section-btn {
  margin-top: 20px;
}
.cid-uDJbBa5M6M .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uDJbBa5M6M .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uC7RDCjnll {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uC7RDCjnll .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC7RDCjnll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC7RDCjnll .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uC7RDCjnll .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uC7RDCjnll .mbr-text,
.cid-uC7RDCjnll .mbr-section-btn {
  color: #232323;
}
.cid-uC7RDCjnll .mbr-section-title,
.cid-uC7RDCjnll .line {
  color: #232323;
}
.cid-uC7RDCjnll h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uC7RDCjnll h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uC7RDCjnll .mbr-section-subtitle,
.cid-uC7RDCjnll .align {
  text-align: left;
  color: #232323;
}
.cid-uBX8WfuwwK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBX8WfuwwK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBX8WfuwwK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBX8WfuwwK .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBX8WfuwwK .mbr-section-title {
  color: #24262b;
}
.cid-uBX8WfuwwK .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBX8WfuwwK .cards-row {
  row-gap: 32px;
}
.cid-uBX8WfuwwK .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBX8WfuwwK .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBX8WfuwwK .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBX8WfuwwK .card-subtitle {
  color: #24262b;
}
.cid-uBX8WfuwwK .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBX8WfuwwK .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBX8WfuwwK .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBX8WfuwwK .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uzRdcNYTer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uzRdcNYTer .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzRdcNYTer .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzRdcNYTer .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uzRdcNYTer .mbr-section-title {
  color: #24262b;
}
.cid-uzRdcNYTer .mbr-section-subtitle {
  color: #24262b;
}
.cid-uzRdcNYTer .cards-row {
  row-gap: 32px;
}
.cid-uzRdcNYTer .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uzRdcNYTer .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uzRdcNYTer .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uzRdcNYTer .card-subtitle {
  color: #24262b;
}
.cid-uzRdcNYTer .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uzRdcNYTer .mbr-section-btn {
  margin-top: 20px;
}
.cid-uzRdcNYTer .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uzRdcNYTer .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uxUU1XUuYp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxUU1XUuYp .img-container {
  position: relative;
}
.cid-uxUU1XUuYp .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-uxUU1XUuYp .image-wrapper img {
  width: 100%;
  height: 32vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-uxUU1XUuYp .image-wrapper img {
    height: auto;
  }
}
.cid-uxUU1XUuYp .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-uxUU1XUuYp .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uxUU1XUuYp .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-uvlFiNtsjS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uvlFiNtsjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlFiNtsjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlFiNtsjS .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uvlFiNtsjS .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uvlFiNtsjS .mbr-text,
.cid-uvlFiNtsjS .mbr-section-btn {
  color: #232323;
}
.cid-uvlFiNtsjS .mbr-section-title,
.cid-uvlFiNtsjS .line {
  color: #232323;
}
.cid-uvlFiNtsjS h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uvlFiNtsjS h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uvlFiNtsjS .mbr-section-subtitle,
.cid-uvlFiNtsjS .align {
  text-align: left;
  color: #232323;
}
.cid-tXIlw1tAEr {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXIlw1tAEr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIlw1tAEr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIlw1tAEr .mbr-section-title {
  color: #24262b;
}
.cid-tXIlw1tAEr .mbr-section-subtitle {
  color: #24262b;
}
.cid-tXIlw1tAEr .mbr-section-btn {
  margin-top: 16px;
}
.cid-tXIkGTJIRY {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/slider-3-2000x1015.jpeg");
}
.cid-tXIkGTJIRY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIkGTJIRY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXIkGTJIRY .col-content {
    text-align: center;
  }
}
.cid-tXIkGTJIRY .label-container {
  margin-bottom: 16px;
}
.cid-tXIkGTJIRY .label-text {
  color: #ffffff;
}
.cid-tXIkGTJIRY .label-text-2 {
  color: #ffffff;
}
.cid-tXIkGTJIRY .mbr-section-title {
  color: #ffffff;
}
.cid-tXIkGTJIRY .text-container {
  margin-top: 24px;
}
.cid-tXIkGTJIRY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXIkGTJIRY .mbr-text {
  color: #b79b6c;
}
.cid-tXIkGTJIRY .mbr-section-btn {
  margin-top: 28px;
}
.cid-tXIkGTJIRY .mbr-text,
.cid-tXIkGTJIRY .mbr-section-btn {
  color: #ffffff;
}
.cid-tXIeyMuHy8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tXIeyMuHy8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tDSC3dE9Wx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-tDSC3dE9Wx .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-tDSC3dE9Wx .mbr-text {
  color: #c1c1c1;
}
.cid-tDSzbWjUPA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tDSzbWjUPA nav.navbar {
  position: fixed;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDSzbWjUPA .dropdown-item:hover,
.cid-tDSzbWjUPA .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .dropdown-item:hover span {
  color: white;
}
.cid-tDSzbWjUPA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDSzbWjUPA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDSzbWjUPA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDSzbWjUPA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDSzbWjUPA .nav-link {
  position: relative;
}
.cid-tDSzbWjUPA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDSzbWjUPA .container {
    flex-wrap: nowrap;
  }
}
.cid-tDSzbWjUPA .navbar-caption:hover,
.cid-tDSzbWjUPA .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tDSzbWjUPA .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tDSzbWjUPA .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tDSzbWjUPA .dropdown-menu,
.cid-tDSzbWjUPA .navbar.opened {
  background: #ffffff !important;
}
.cid-tDSzbWjUPA .nav-item:focus,
.cid-tDSzbWjUPA .nav-link:focus {
  outline: none;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDSzbWjUPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSzbWjUPA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDSzbWjUPA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDSzbWjUPA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tDSzbWjUPA .navbar.opened {
  transition: all 0.3s;
}
.cid-tDSzbWjUPA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDSzbWjUPA .navbar .navbar-logo img {
  width: auto;
}
.cid-tDSzbWjUPA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDSzbWjUPA .navbar.collapsed {
  justify-content: center;
}
.cid-tDSzbWjUPA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDSzbWjUPA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDSzbWjUPA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tDSzbWjUPA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDSzbWjUPA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDSzbWjUPA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDSzbWjUPA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDSzbWjUPA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDSzbWjUPA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDSzbWjUPA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDSzbWjUPA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDSzbWjUPA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDSzbWjUPA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDSzbWjUPA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDSzbWjUPA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDSzbWjUPA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDSzbWjUPA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDSzbWjUPA .navbar.navbar-short {
  min-height: 70px;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDSzbWjUPA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDSzbWjUPA .dropdown-item.active,
.cid-tDSzbWjUPA .dropdown-item:active {
  background-color: transparent;
}
.cid-tDSzbWjUPA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDSzbWjUPA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDSzbWjUPA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDSzbWjUPA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDSzbWjUPA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDSzbWjUPA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDSzbWjUPA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDSzbWjUPA .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tDSzbWjUPA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSzbWjUPA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDSzbWjUPA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSzbWjUPA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDSzbWjUPA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDSzbWjUPA .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-tDSzbWjUPA .navbar {
    height: 70px;
  }
  .cid-tDSzbWjUPA .navbar.opened {
    height: auto;
  }
  .cid-tDSzbWjUPA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDSzbWjUPA .container-fluid {
  padding: 0 1rem !important;
}
.cid-tDSzbWjUPA .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tDSzbWjUPA .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tDSzbWjUPA .navbar-collapse {
    width: 100%;
  }
  .cid-tDSzbWjUPA .navbar-nav {
    width: 100%;
  }
  .cid-tDSzbWjUPA .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tDSzcKy6aT {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-tDSzcKy6aT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSzcKy6aT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tDSzcKy6aT .col-content {
    text-align: center;
  }
}
.cid-tDSzcKy6aT .label-container {
  margin-bottom: 16px;
}
.cid-tDSzcKy6aT .label-text {
  color: #ffffff;
}
.cid-tDSzcKy6aT .label-text-2 {
  color: #ffffff;
}
.cid-tDSzcKy6aT .mbr-section-title {
  color: #ffffff;
}
.cid-tDSzcKy6aT .text-container {
  margin-top: 24px;
}
.cid-tDSzcKy6aT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDSzcKy6aT .mbr-text {
  color: #b79b6c;
}
.cid-tDSzcKy6aT .mbr-section-btn {
  margin-top: 28px;
}
.cid-tDSzcKy6aT .mbr-text,
.cid-tDSzcKy6aT .mbr-section-btn {
  color: #ffffff;
}
.cid-uaqO2eWJZM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqO2eWJZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqO2eWJZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqO2eWJZM .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqO2eWJZM .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqO2eWJZM .mbr-text,
.cid-uaqO2eWJZM .mbr-section-btn {
  color: #232323;
}
.cid-uaqO2eWJZM .mbr-section-title,
.cid-uaqO2eWJZM .line {
  color: #232323;
}
.cid-uaqO2eWJZM h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqO2eWJZM h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqO2eWJZM .mbr-section-subtitle,
.cid-uaqO2eWJZM .align {
  text-align: left;
  color: #232323;
}
.cid-uaqEjGVaoe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqEjGVaoe .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqEjGVaoe .mbr-section-title {
  color: #000000;
}
.cid-uaqEjGVaoe .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqEjGVaoe .mbr-text {
  color: #000000;
}
.cid-uaqEjGVaoe .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqEjGVaoe p {
  line-height: 1.2;
}
.cid-uaqEjGVaoe .mbr-text1 {
  color: #000000;
}
.cid-uaqEjGVaoe .mbr-text2 {
  color: #005241;
}
.cid-uaqEjGVaoe .mbr-text3 {
  color: #000000;
}
.cid-uaqO5ghToz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqO5ghToz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqO5ghToz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqO5ghToz .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqO5ghToz .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqO5ghToz .mbr-text,
.cid-uaqO5ghToz .mbr-section-btn {
  color: #232323;
}
.cid-uaqO5ghToz .mbr-section-title,
.cid-uaqO5ghToz .line {
  color: #232323;
}
.cid-uaqO5ghToz h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqO5ghToz h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqO5ghToz .mbr-section-subtitle,
.cid-uaqO5ghToz .align {
  text-align: left;
  color: #232323;
}
.cid-uaqEl4uOWR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqEl4uOWR .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqEl4uOWR .mbr-section-title {
  color: #000000;
}
.cid-uaqEl4uOWR .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqEl4uOWR .mbr-text {
  color: #000000;
}
.cid-uaqEl4uOWR .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqEl4uOWR p {
  line-height: 1.2;
}
.cid-uaqEl4uOWR .mbr-text1 {
  color: #000000;
}
.cid-uaqEl4uOWR .mbr-text2 {
  color: #005241;
}
.cid-uaqEl4uOWR .mbr-text3 {
  color: #000000;
}
.cid-uaqETXrb3y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqETXrb3y .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqETXrb3y .mbr-section-title {
  color: #000000;
}
.cid-uaqETXrb3y .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqETXrb3y .mbr-text {
  color: #000000;
}
.cid-uaqETXrb3y .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqETXrb3y p {
  line-height: 1.2;
}
.cid-uaqETXrb3y .mbr-text1 {
  color: #000000;
}
.cid-uaqETXrb3y .mbr-text2 {
  color: #005241;
}
.cid-uaqETXrb3y .mbr-text3 {
  color: #000000;
}
.cid-uaqF9vEYBx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqF9vEYBx .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqF9vEYBx .mbr-section-title {
  color: #000000;
}
.cid-uaqF9vEYBx .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqF9vEYBx .mbr-text {
  color: #000000;
}
.cid-uaqF9vEYBx .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqF9vEYBx p {
  line-height: 1.2;
}
.cid-uaqF9vEYBx .mbr-text1 {
  color: #000000;
}
.cid-uaqF9vEYBx .mbr-text2 {
  color: #005241;
}
.cid-uaqF9vEYBx .mbr-text3 {
  color: #000000;
}
.cid-uaqO9z6dKU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqO9z6dKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqO9z6dKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqO9z6dKU .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqO9z6dKU .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqO9z6dKU .mbr-text,
.cid-uaqO9z6dKU .mbr-section-btn {
  color: #232323;
}
.cid-uaqO9z6dKU .mbr-section-title,
.cid-uaqO9z6dKU .line {
  color: #232323;
}
.cid-uaqO9z6dKU h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqO9z6dKU h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqO9z6dKU .mbr-section-subtitle,
.cid-uaqO9z6dKU .align {
  text-align: left;
  color: #232323;
}
.cid-udwrPPALdR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-udwrPPALdR .col-title {
    margin-bottom: 20px;
  }
}
.cid-udwrPPALdR .mbr-section-title {
  color: #000000;
}
.cid-udwrPPALdR .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-udwrPPALdR .mbr-text {
  color: #000000;
}
.cid-udwrPPALdR .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-udwrPPALdR p {
  line-height: 1.2;
}
.cid-udwrPPALdR .mbr-text1 {
  color: #000000;
}
.cid-udwrPPALdR .mbr-text2 {
  color: #005241;
}
.cid-udwrPPALdR .mbr-text3 {
  color: #000000;
}
.cid-uaqFog5Lvc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqFog5Lvc .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqFog5Lvc .mbr-section-title {
  color: #000000;
}
.cid-uaqFog5Lvc .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqFog5Lvc .mbr-text {
  color: #000000;
}
.cid-uaqFog5Lvc .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqFog5Lvc p {
  line-height: 1.2;
}
.cid-uaqFog5Lvc .mbr-text1 {
  color: #000000;
}
.cid-uaqFog5Lvc .mbr-text2 {
  color: #005241;
}
.cid-uaqFog5Lvc .mbr-text3 {
  color: #000000;
}
.cid-uaqFAh6HP5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqFAh6HP5 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqFAh6HP5 .mbr-section-title {
  color: #000000;
}
.cid-uaqFAh6HP5 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqFAh6HP5 .mbr-text {
  color: #000000;
}
.cid-uaqFAh6HP5 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqFAh6HP5 p {
  line-height: 1.2;
}
.cid-uaqFAh6HP5 .mbr-text1 {
  color: #000000;
}
.cid-uaqFAh6HP5 .mbr-text2 {
  color: #005241;
}
.cid-uaqFAh6HP5 .mbr-text3 {
  color: #000000;
}
.cid-uaqFY1cRqW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqFY1cRqW .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqFY1cRqW .mbr-section-title {
  color: #000000;
}
.cid-uaqFY1cRqW .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqFY1cRqW .mbr-text {
  color: #000000;
}
.cid-uaqFY1cRqW .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqFY1cRqW p {
  line-height: 1.2;
}
.cid-uaqFY1cRqW .mbr-text1 {
  color: #000000;
}
.cid-uaqFY1cRqW .mbr-text2 {
  color: #005241;
}
.cid-uaqFY1cRqW .mbr-text3 {
  color: #000000;
}
.cid-uaqOcpaAHf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOcpaAHf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOcpaAHf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOcpaAHf .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOcpaAHf .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOcpaAHf .mbr-text,
.cid-uaqOcpaAHf .mbr-section-btn {
  color: #232323;
}
.cid-uaqOcpaAHf .mbr-section-title,
.cid-uaqOcpaAHf .line {
  color: #232323;
}
.cid-uaqOcpaAHf h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOcpaAHf h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOcpaAHf .mbr-section-subtitle,
.cid-uaqOcpaAHf .align {
  text-align: left;
  color: #232323;
}
.cid-uvlFPhOMgc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvlFPhOMgc .col-title {
    margin-bottom: 20px;
  }
}
.cid-uvlFPhOMgc .mbr-section-title {
  color: #000000;
}
.cid-uvlFPhOMgc .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uvlFPhOMgc .mbr-text {
  color: #000000;
}
.cid-uvlFPhOMgc .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uvlFPhOMgc p {
  line-height: 1.2;
}
.cid-uvlFPhOMgc .mbr-text1 {
  color: #000000;
}
.cid-uvlFPhOMgc .mbr-text2 {
  color: #005241;
}
.cid-uvlFPhOMgc .mbr-text3 {
  color: #000000;
}
.cid-uaqGlkslYD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqGlkslYD .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqGlkslYD .mbr-section-title {
  color: #000000;
}
.cid-uaqGlkslYD .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqGlkslYD .mbr-text {
  color: #000000;
}
.cid-uaqGlkslYD .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqGlkslYD p {
  line-height: 1.2;
}
.cid-uaqGlkslYD .mbr-text1 {
  color: #000000;
}
.cid-uaqGlkslYD .mbr-text2 {
  color: #005241;
}
.cid-uaqGlkslYD .mbr-text3 {
  color: #000000;
}
.cid-uaqGCiEOEk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqGCiEOEk .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqGCiEOEk .mbr-section-title {
  color: #000000;
}
.cid-uaqGCiEOEk .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqGCiEOEk .mbr-text {
  color: #000000;
}
.cid-uaqGCiEOEk .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqGCiEOEk p {
  line-height: 1.2;
}
.cid-uaqGCiEOEk .mbr-text1 {
  color: #000000;
}
.cid-uaqGCiEOEk .mbr-text2 {
  color: #005241;
}
.cid-uaqGCiEOEk .mbr-text3 {
  color: #000000;
}
.cid-uaqGSBt8U0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqGSBt8U0 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqGSBt8U0 .mbr-section-title {
  color: #000000;
}
.cid-uaqGSBt8U0 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqGSBt8U0 .mbr-text {
  color: #000000;
}
.cid-uaqGSBt8U0 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqGSBt8U0 p {
  line-height: 1.2;
}
.cid-uaqGSBt8U0 .mbr-text1 {
  color: #000000;
}
.cid-uaqGSBt8U0 .mbr-text2 {
  color: #005241;
}
.cid-uaqGSBt8U0 .mbr-text3 {
  color: #000000;
}
.cid-uaqH6ZA77F {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqH6ZA77F .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqH6ZA77F .mbr-section-title {
  color: #000000;
}
.cid-uaqH6ZA77F .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqH6ZA77F .mbr-text {
  color: #000000;
}
.cid-uaqH6ZA77F .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqH6ZA77F p {
  line-height: 1.2;
}
.cid-uaqH6ZA77F .mbr-text1 {
  color: #000000;
}
.cid-uaqH6ZA77F .mbr-text2 {
  color: #005241;
}
.cid-uaqH6ZA77F .mbr-text3 {
  color: #000000;
}
.cid-uaqOfx2LE6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOfx2LE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOfx2LE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOfx2LE6 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOfx2LE6 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOfx2LE6 .mbr-text,
.cid-uaqOfx2LE6 .mbr-section-btn {
  color: #232323;
}
.cid-uaqOfx2LE6 .mbr-section-title,
.cid-uaqOfx2LE6 .line {
  color: #232323;
}
.cid-uaqOfx2LE6 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOfx2LE6 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOfx2LE6 .mbr-section-subtitle,
.cid-uaqOfx2LE6 .align {
  text-align: left;
  color: #232323;
}
.cid-uaqHouFF7e {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqHouFF7e .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqHouFF7e .mbr-section-title {
  color: #000000;
}
.cid-uaqHouFF7e .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqHouFF7e .mbr-text {
  color: #000000;
}
.cid-uaqHouFF7e .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqHouFF7e p {
  line-height: 1.2;
}
.cid-uaqHouFF7e .mbr-text1 {
  color: #000000;
}
.cid-uaqHouFF7e .mbr-text2 {
  color: #005241;
}
.cid-uaqHouFF7e .mbr-text3 {
  color: #000000;
}
.cid-uaqHCBa5gN {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqHCBa5gN .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqHCBa5gN .mbr-section-title {
  color: #000000;
}
.cid-uaqHCBa5gN .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqHCBa5gN .mbr-text {
  color: #000000;
}
.cid-uaqHCBa5gN .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqHCBa5gN p {
  line-height: 1.2;
}
.cid-uaqHCBa5gN .mbr-text1 {
  color: #000000;
}
.cid-uaqHCBa5gN .mbr-text2 {
  color: #005241;
}
.cid-uaqHCBa5gN .mbr-text3 {
  color: #000000;
}
.cid-uaqHS58BQi {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqHS58BQi .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqHS58BQi .mbr-section-title {
  color: #000000;
}
.cid-uaqHS58BQi .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqHS58BQi .mbr-text {
  color: #000000;
}
.cid-uaqHS58BQi .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqHS58BQi p {
  line-height: 1.2;
}
.cid-uaqHS58BQi .mbr-text1 {
  color: #000000;
}
.cid-uaqHS58BQi .mbr-text2 {
  color: #005241;
}
.cid-uaqHS58BQi .mbr-text3 {
  color: #000000;
}
.cid-uaqI6M5yAh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqI6M5yAh .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqI6M5yAh .mbr-section-title {
  color: #000000;
}
.cid-uaqI6M5yAh .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqI6M5yAh .mbr-text {
  color: #000000;
}
.cid-uaqI6M5yAh .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqI6M5yAh p {
  line-height: 1.2;
}
.cid-uaqI6M5yAh .mbr-text1 {
  color: #000000;
}
.cid-uaqI6M5yAh .mbr-text2 {
  color: #005241;
}
.cid-uaqI6M5yAh .mbr-text3 {
  color: #000000;
}
.cid-uaqImCA9CL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqImCA9CL .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqImCA9CL .mbr-section-title {
  color: #000000;
}
.cid-uaqImCA9CL .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqImCA9CL .mbr-text {
  color: #000000;
}
.cid-uaqImCA9CL .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqImCA9CL p {
  line-height: 1.2;
}
.cid-uaqImCA9CL .mbr-text1 {
  color: #000000;
}
.cid-uaqImCA9CL .mbr-text2 {
  color: #005241;
}
.cid-uaqImCA9CL .mbr-text3 {
  color: #000000;
}
.cid-uaqIyVvvb2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqIyVvvb2 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqIyVvvb2 .mbr-section-title {
  color: #000000;
}
.cid-uaqIyVvvb2 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqIyVvvb2 .mbr-text {
  color: #000000;
}
.cid-uaqIyVvvb2 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqIyVvvb2 p {
  line-height: 1.2;
}
.cid-uaqIyVvvb2 .mbr-text1 {
  color: #000000;
}
.cid-uaqIyVvvb2 .mbr-text2 {
  color: #005241;
}
.cid-uaqIyVvvb2 .mbr-text3 {
  color: #000000;
}
.cid-uaqOix3uUB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOix3uUB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOix3uUB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOix3uUB .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOix3uUB .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOix3uUB .mbr-text,
.cid-uaqOix3uUB .mbr-section-btn {
  color: #232323;
}
.cid-uaqOix3uUB .mbr-section-title,
.cid-uaqOix3uUB .line {
  color: #232323;
}
.cid-uaqOix3uUB h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOix3uUB h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOix3uUB .mbr-section-subtitle,
.cid-uaqOix3uUB .align {
  text-align: left;
  color: #232323;
}
.cid-uaqIMKZzwc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqIMKZzwc .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqIMKZzwc .mbr-section-title {
  color: #000000;
}
.cid-uaqIMKZzwc .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqIMKZzwc .mbr-text {
  color: #000000;
}
.cid-uaqIMKZzwc .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqIMKZzwc p {
  line-height: 1.2;
}
.cid-uaqIMKZzwc .mbr-text1 {
  color: #000000;
}
.cid-uaqIMKZzwc .mbr-text2 {
  color: #005241;
}
.cid-uaqIMKZzwc .mbr-text3 {
  color: #000000;
}
.cid-uaqJgHR2Pt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqJgHR2Pt .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqJgHR2Pt .mbr-section-title {
  color: #000000;
}
.cid-uaqJgHR2Pt .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqJgHR2Pt .mbr-text {
  color: #000000;
}
.cid-uaqJgHR2Pt .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqJgHR2Pt p {
  line-height: 1.2;
}
.cid-uaqJgHR2Pt .mbr-text1 {
  color: #000000;
}
.cid-uaqJgHR2Pt .mbr-text2 {
  color: #005241;
}
.cid-uaqJgHR2Pt .mbr-text3 {
  color: #000000;
}
.cid-uaqJu9xNdp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqJu9xNdp .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqJu9xNdp .mbr-section-title {
  color: #000000;
}
.cid-uaqJu9xNdp .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqJu9xNdp .mbr-text {
  color: #000000;
}
.cid-uaqJu9xNdp .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqJu9xNdp p {
  line-height: 1.2;
}
.cid-uaqJu9xNdp .mbr-text1 {
  color: #000000;
}
.cid-uaqJu9xNdp .mbr-text2 {
  color: #005241;
}
.cid-uaqJu9xNdp .mbr-text3 {
  color: #000000;
}
.cid-uaqJKMXT8l {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqJKMXT8l .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqJKMXT8l .mbr-section-title {
  color: #000000;
}
.cid-uaqJKMXT8l .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqJKMXT8l .mbr-text {
  color: #000000;
}
.cid-uaqJKMXT8l .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqJKMXT8l p {
  line-height: 1.2;
}
.cid-uaqJKMXT8l .mbr-text1 {
  color: #000000;
}
.cid-uaqJKMXT8l .mbr-text2 {
  color: #005241;
}
.cid-uaqJKMXT8l .mbr-text3 {
  color: #000000;
}
.cid-uaqOm6PaoW {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOm6PaoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOm6PaoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOm6PaoW .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOm6PaoW .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOm6PaoW .mbr-text,
.cid-uaqOm6PaoW .mbr-section-btn {
  color: #232323;
}
.cid-uaqOm6PaoW .mbr-section-title,
.cid-uaqOm6PaoW .line {
  color: #232323;
}
.cid-uaqOm6PaoW h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOm6PaoW h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOm6PaoW .mbr-section-subtitle,
.cid-uaqOm6PaoW .align {
  text-align: left;
  color: #232323;
}
.cid-uaqJZLGjGa {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqJZLGjGa .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqJZLGjGa .mbr-section-title {
  color: #000000;
}
.cid-uaqJZLGjGa .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqJZLGjGa .mbr-text {
  color: #000000;
}
.cid-uaqJZLGjGa .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqJZLGjGa p {
  line-height: 1.2;
}
.cid-uaqJZLGjGa .mbr-text1 {
  color: #000000;
}
.cid-uaqJZLGjGa .mbr-text2 {
  color: #005241;
}
.cid-uaqJZLGjGa .mbr-text3 {
  color: #000000;
}
.cid-uaqKipY6NR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqKipY6NR .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqKipY6NR .mbr-section-title {
  color: #000000;
}
.cid-uaqKipY6NR .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqKipY6NR .mbr-text {
  color: #000000;
}
.cid-uaqKipY6NR .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqKipY6NR p {
  line-height: 1.2;
}
.cid-uaqKipY6NR .mbr-text1 {
  color: #000000;
}
.cid-uaqKipY6NR .mbr-text2 {
  color: #005241;
}
.cid-uaqKipY6NR .mbr-text3 {
  color: #000000;
}
.cid-uaqKxSnUIA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqKxSnUIA .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqKxSnUIA .mbr-section-title {
  color: #000000;
}
.cid-uaqKxSnUIA .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqKxSnUIA .mbr-text {
  color: #000000;
}
.cid-uaqKxSnUIA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqKxSnUIA p {
  line-height: 1.2;
}
.cid-uaqKxSnUIA .mbr-text1 {
  color: #000000;
}
.cid-uaqKxSnUIA .mbr-text2 {
  color: #005241;
}
.cid-uaqKxSnUIA .mbr-text3 {
  color: #000000;
}
.cid-uaqOpmPM47 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOpmPM47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOpmPM47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOpmPM47 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOpmPM47 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOpmPM47 .mbr-text,
.cid-uaqOpmPM47 .mbr-section-btn {
  color: #232323;
}
.cid-uaqOpmPM47 .mbr-section-title,
.cid-uaqOpmPM47 .line {
  color: #232323;
}
.cid-uaqOpmPM47 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOpmPM47 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOpmPM47 .mbr-section-subtitle,
.cid-uaqOpmPM47 .align {
  text-align: left;
  color: #232323;
}
.cid-uaqKOfAb7T {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqKOfAb7T .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqKOfAb7T .mbr-section-title {
  color: #000000;
}
.cid-uaqKOfAb7T .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqKOfAb7T .mbr-text {
  color: #000000;
}
.cid-uaqKOfAb7T .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqKOfAb7T p {
  line-height: 1.2;
}
.cid-uaqKOfAb7T .mbr-text1 {
  color: #000000;
}
.cid-uaqKOfAb7T .mbr-text2 {
  color: #005241;
}
.cid-uaqKOfAb7T .mbr-text3 {
  color: #000000;
}
.cid-uaqKZXuDbd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqKZXuDbd .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqKZXuDbd .mbr-section-title {
  color: #000000;
}
.cid-uaqKZXuDbd .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqKZXuDbd .mbr-text {
  color: #000000;
}
.cid-uaqKZXuDbd .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqKZXuDbd p {
  line-height: 1.2;
}
.cid-uaqKZXuDbd .mbr-text1 {
  color: #000000;
}
.cid-uaqKZXuDbd .mbr-text2 {
  color: #005241;
}
.cid-uaqKZXuDbd .mbr-text3 {
  color: #000000;
}
.cid-uaqLf1RAlm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqLf1RAlm .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqLf1RAlm .mbr-section-title {
  color: #000000;
}
.cid-uaqLf1RAlm .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqLf1RAlm .mbr-text {
  color: #000000;
}
.cid-uaqLf1RAlm .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqLf1RAlm p {
  line-height: 1.2;
}
.cid-uaqLf1RAlm .mbr-text1 {
  color: #000000;
}
.cid-uaqLf1RAlm .mbr-text2 {
  color: #005241;
}
.cid-uaqLf1RAlm .mbr-text3 {
  color: #000000;
}
.cid-uaqLsvPGa3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqLsvPGa3 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqLsvPGa3 .mbr-section-title {
  color: #000000;
}
.cid-uaqLsvPGa3 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqLsvPGa3 .mbr-text {
  color: #000000;
}
.cid-uaqLsvPGa3 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqLsvPGa3 p {
  line-height: 1.2;
}
.cid-uaqLsvPGa3 .mbr-text1 {
  color: #000000;
}
.cid-uaqLsvPGa3 .mbr-text2 {
  color: #005241;
}
.cid-uaqLsvPGa3 .mbr-text3 {
  color: #000000;
}
.cid-uaqLDm53l4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqLDm53l4 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqLDm53l4 .mbr-section-title {
  color: #000000;
}
.cid-uaqLDm53l4 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqLDm53l4 .mbr-text {
  color: #000000;
}
.cid-uaqLDm53l4 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqLDm53l4 p {
  line-height: 1.2;
}
.cid-uaqLDm53l4 .mbr-text1 {
  color: #000000;
}
.cid-uaqLDm53l4 .mbr-text2 {
  color: #005241;
}
.cid-uaqLDm53l4 .mbr-text3 {
  color: #000000;
}
.cid-uaqOtRwlKF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOtRwlKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOtRwlKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOtRwlKF .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOtRwlKF .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOtRwlKF .mbr-text,
.cid-uaqOtRwlKF .mbr-section-btn {
  color: #232323;
}
.cid-uaqOtRwlKF .mbr-section-title,
.cid-uaqOtRwlKF .line {
  color: #232323;
}
.cid-uaqOtRwlKF h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOtRwlKF h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOtRwlKF .mbr-section-subtitle,
.cid-uaqOtRwlKF .align {
  text-align: left;
  color: #232323;
}
.cid-uaqLSXxQTe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqLSXxQTe .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqLSXxQTe .mbr-section-title {
  color: #000000;
}
.cid-uaqLSXxQTe .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqLSXxQTe .mbr-text {
  color: #000000;
}
.cid-uaqLSXxQTe .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqLSXxQTe p {
  line-height: 1.2;
}
.cid-uaqLSXxQTe .mbr-text1 {
  color: #000000;
}
.cid-uaqLSXxQTe .mbr-text2 {
  color: #005241;
}
.cid-uaqLSXxQTe .mbr-text3 {
  color: #000000;
}
.cid-uaqMIF0rK6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqMIF0rK6 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqMIF0rK6 .mbr-section-title {
  color: #000000;
}
.cid-uaqMIF0rK6 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqMIF0rK6 .mbr-text {
  color: #000000;
}
.cid-uaqMIF0rK6 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqMIF0rK6 p {
  line-height: 1.2;
}
.cid-uaqMIF0rK6 .mbr-text1 {
  color: #000000;
}
.cid-uaqMIF0rK6 .mbr-text2 {
  color: #005241;
}
.cid-uaqMIF0rK6 .mbr-text3 {
  color: #000000;
}
.cid-uaqMTLUvLY {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqMTLUvLY .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqMTLUvLY .mbr-section-title {
  color: #000000;
}
.cid-uaqMTLUvLY .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqMTLUvLY .mbr-text {
  color: #000000;
}
.cid-uaqMTLUvLY .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqMTLUvLY p {
  line-height: 1.2;
}
.cid-uaqMTLUvLY .mbr-text1 {
  color: #000000;
}
.cid-uaqMTLUvLY .mbr-text2 {
  color: #005241;
}
.cid-uaqMTLUvLY .mbr-text3 {
  color: #000000;
}
.cid-uaqOEBUL0h {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaqOEBUL0h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqOEBUL0h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqOEBUL0h .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uaqOEBUL0h .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uaqOEBUL0h .mbr-text,
.cid-uaqOEBUL0h .mbr-section-btn {
  color: #232323;
}
.cid-uaqOEBUL0h .mbr-section-title,
.cid-uaqOEBUL0h .line {
  color: #232323;
}
.cid-uaqOEBUL0h h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uaqOEBUL0h h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uaqOEBUL0h .mbr-section-subtitle,
.cid-uaqOEBUL0h .align {
  text-align: left;
  color: #232323;
}
.cid-uaqNdmkJ8R {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqNdmkJ8R .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqNdmkJ8R .mbr-section-title {
  color: #000000;
}
.cid-uaqNdmkJ8R .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqNdmkJ8R .mbr-text {
  color: #000000;
}
.cid-uaqNdmkJ8R .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqNdmkJ8R p {
  line-height: 1.2;
}
.cid-uaqNdmkJ8R .mbr-text1 {
  color: #000000;
}
.cid-uaqNdmkJ8R .mbr-text2 {
  color: #005241;
}
.cid-uaqNdmkJ8R .mbr-text3 {
  color: #000000;
}
.cid-uaqNqFYRva {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqNqFYRva .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqNqFYRva .mbr-section-title {
  color: #000000;
}
.cid-uaqNqFYRva .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqNqFYRva .mbr-text {
  color: #000000;
}
.cid-uaqNqFYRva .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqNqFYRva p {
  line-height: 1.2;
}
.cid-uaqNqFYRva .mbr-text1 {
  color: #000000;
}
.cid-uaqNqFYRva .mbr-text2 {
  color: #005241;
}
.cid-uaqNqFYRva .mbr-text3 {
  color: #000000;
}
.cid-uaqNEdqr1Q {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqNEdqr1Q .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqNEdqr1Q .mbr-section-title {
  color: #000000;
}
.cid-uaqNEdqr1Q .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqNEdqr1Q .mbr-text {
  color: #000000;
}
.cid-uaqNEdqr1Q .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqNEdqr1Q p {
  line-height: 1.2;
}
.cid-uaqNEdqr1Q .mbr-text1 {
  color: #000000;
}
.cid-uaqNEdqr1Q .mbr-text2 {
  color: #005241;
}
.cid-uaqNEdqr1Q .mbr-text3 {
  color: #000000;
}
.cid-uaCakkST4k {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCakkST4k .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCakkST4k .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uaCakkST4k .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uaCakkST4k .mbr-text {
  color: #000000;
}
.cid-uaCaDfwtI9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCaDfwtI9 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCaDfwtI9 .mbr-section-title {
  color: #000000;
}
.cid-uaCaDfwtI9 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCaDfwtI9 .mbr-text {
  color: #000000;
}
.cid-uaCaDfwtI9 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCaDfwtI9 p {
  line-height: 1.2;
}
.cid-uaCaDfwtI9 .mbr-text1 {
  color: #000000;
}
.cid-uaCaDfwtI9 .mbr-text2 {
  color: #005241;
}
.cid-uaCaDfwtI9 .mbr-text3 {
  color: #000000;
}
.cid-uaCbeeLuRk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCbeeLuRk .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCbeeLuRk .mbr-section-title {
  color: #000000;
}
.cid-uaCbeeLuRk .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCbeeLuRk .mbr-text {
  color: #000000;
}
.cid-uaCbeeLuRk .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCbeeLuRk p {
  line-height: 1.2;
}
.cid-uaCbeeLuRk .mbr-text1 {
  color: #000000;
}
.cid-uaCbeeLuRk .mbr-text2 {
  color: #005241;
}
.cid-uaCbeeLuRk .mbr-text3 {
  color: #000000;
}
.cid-uaCbv6SvYz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCbv6SvYz .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCbv6SvYz .mbr-section-title {
  color: #000000;
}
.cid-uaCbv6SvYz .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCbv6SvYz .mbr-text {
  color: #000000;
}
.cid-uaCbv6SvYz .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCbv6SvYz p {
  line-height: 1.2;
}
.cid-uaCbv6SvYz .mbr-text1 {
  color: #000000;
}
.cid-uaCbv6SvYz .mbr-text2 {
  color: #005241;
}
.cid-uaCbv6SvYz .mbr-text3 {
  color: #000000;
}
.cid-udwskhWVft {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-udwskhWVft .col-title {
    margin-bottom: 20px;
  }
}
.cid-udwskhWVft .mbr-section-title {
  color: #000000;
}
.cid-udwskhWVft .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-udwskhWVft .mbr-text {
  color: #000000;
}
.cid-udwskhWVft .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-udwskhWVft p {
  line-height: 1.2;
}
.cid-udwskhWVft .mbr-text1 {
  color: #000000;
}
.cid-udwskhWVft .mbr-text2 {
  color: #005241;
}
.cid-udwskhWVft .mbr-text3 {
  color: #000000;
}
.cid-uaCbKQ1Vpt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCbKQ1Vpt .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCbKQ1Vpt .mbr-section-title {
  color: #000000;
}
.cid-uaCbKQ1Vpt .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCbKQ1Vpt .mbr-text {
  color: #000000;
}
.cid-uaCbKQ1Vpt .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCbKQ1Vpt p {
  line-height: 1.2;
}
.cid-uaCbKQ1Vpt .mbr-text1 {
  color: #000000;
}
.cid-uaCbKQ1Vpt .mbr-text2 {
  color: #005241;
}
.cid-uaCbKQ1Vpt .mbr-text3 {
  color: #000000;
}
.cid-uaCbXJKPrX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCbXJKPrX .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCbXJKPrX .mbr-section-title {
  color: #000000;
}
.cid-uaCbXJKPrX .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCbXJKPrX .mbr-text {
  color: #000000;
}
.cid-uaCbXJKPrX .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCbXJKPrX p {
  line-height: 1.2;
}
.cid-uaCbXJKPrX .mbr-text1 {
  color: #000000;
}
.cid-uaCbXJKPrX .mbr-text2 {
  color: #005241;
}
.cid-uaCbXJKPrX .mbr-text3 {
  color: #000000;
}
.cid-udwsGc4cWt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-udwsGc4cWt .col-title {
    margin-bottom: 20px;
  }
}
.cid-udwsGc4cWt .mbr-section-title {
  color: #000000;
}
.cid-udwsGc4cWt .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-udwsGc4cWt .mbr-text {
  color: #000000;
}
.cid-udwsGc4cWt .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-udwsGc4cWt p {
  line-height: 1.2;
}
.cid-udwsGc4cWt .mbr-text1 {
  color: #000000;
}
.cid-udwsGc4cWt .mbr-text2 {
  color: #005241;
}
.cid-udwsGc4cWt .mbr-text3 {
  color: #000000;
}
.cid-uaCcaVrpLz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCcaVrpLz .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCcaVrpLz .mbr-section-title {
  color: #000000;
}
.cid-uaCcaVrpLz .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCcaVrpLz .mbr-text {
  color: #000000;
}
.cid-uaCcaVrpLz .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCcaVrpLz p {
  line-height: 1.2;
}
.cid-uaCcaVrpLz .mbr-text1 {
  color: #000000;
}
.cid-uaCcaVrpLz .mbr-text2 {
  color: #005241;
}
.cid-uaCcaVrpLz .mbr-text3 {
  color: #000000;
}
.cid-uaCcrsyQBZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCcrsyQBZ .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCcrsyQBZ .mbr-section-title {
  color: #000000;
}
.cid-uaCcrsyQBZ .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCcrsyQBZ .mbr-text {
  color: #000000;
}
.cid-uaCcrsyQBZ .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCcrsyQBZ p {
  line-height: 1.2;
}
.cid-uaCcrsyQBZ .mbr-text1 {
  color: #000000;
}
.cid-uaCcrsyQBZ .mbr-text2 {
  color: #005241;
}
.cid-uaCcrsyQBZ .mbr-text3 {
  color: #000000;
}
.cid-uaCcEHWwKG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCcEHWwKG .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCcEHWwKG .mbr-section-title {
  color: #000000;
}
.cid-uaCcEHWwKG .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCcEHWwKG .mbr-text {
  color: #000000;
}
.cid-uaCcEHWwKG .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCcEHWwKG p {
  line-height: 1.2;
}
.cid-uaCcEHWwKG .mbr-text1 {
  color: #000000;
}
.cid-uaCcEHWwKG .mbr-text2 {
  color: #005241;
}
.cid-uaCcEHWwKG .mbr-text3 {
  color: #000000;
}
.cid-uaCcSMIYZS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCcSMIYZS .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCcSMIYZS .mbr-section-title {
  color: #000000;
}
.cid-uaCcSMIYZS .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCcSMIYZS .mbr-text {
  color: #000000;
}
.cid-uaCcSMIYZS .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCcSMIYZS p {
  line-height: 1.2;
}
.cid-uaCcSMIYZS .mbr-text1 {
  color: #000000;
}
.cid-uaCcSMIYZS .mbr-text2 {
  color: #005241;
}
.cid-uaCcSMIYZS .mbr-text3 {
  color: #000000;
}
.cid-uaCd9RbQOQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCd9RbQOQ .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCd9RbQOQ .mbr-section-title {
  color: #000000;
}
.cid-uaCd9RbQOQ .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCd9RbQOQ .mbr-text {
  color: #000000;
}
.cid-uaCd9RbQOQ .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCd9RbQOQ p {
  line-height: 1.2;
}
.cid-uaCd9RbQOQ .mbr-text1 {
  color: #000000;
}
.cid-uaCd9RbQOQ .mbr-text2 {
  color: #005241;
}
.cid-uaCd9RbQOQ .mbr-text3 {
  color: #000000;
}
.cid-uaCdnWwXMt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCdnWwXMt .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCdnWwXMt .mbr-section-title {
  color: #000000;
}
.cid-uaCdnWwXMt .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCdnWwXMt .mbr-text {
  color: #000000;
}
.cid-uaCdnWwXMt .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCdnWwXMt p {
  line-height: 1.2;
}
.cid-uaCdnWwXMt .mbr-text1 {
  color: #000000;
}
.cid-uaCdnWwXMt .mbr-text2 {
  color: #005241;
}
.cid-uaCdnWwXMt .mbr-text3 {
  color: #000000;
}
.cid-uaCdBV3hty {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCdBV3hty .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCdBV3hty .mbr-section-title {
  color: #000000;
}
.cid-uaCdBV3hty .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCdBV3hty .mbr-text {
  color: #000000;
}
.cid-uaCdBV3hty .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCdBV3hty p {
  line-height: 1.2;
}
.cid-uaCdBV3hty .mbr-text1 {
  color: #000000;
}
.cid-uaCdBV3hty .mbr-text2 {
  color: #005241;
}
.cid-uaCdBV3hty .mbr-text3 {
  color: #000000;
}
.cid-uaCdPAih9R {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCdPAih9R .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCdPAih9R .mbr-section-title {
  color: #000000;
}
.cid-uaCdPAih9R .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCdPAih9R .mbr-text {
  color: #000000;
}
.cid-uaCdPAih9R .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCdPAih9R p {
  line-height: 1.2;
}
.cid-uaCdPAih9R .mbr-text1 {
  color: #000000;
}
.cid-uaCdPAih9R .mbr-text2 {
  color: #005241;
}
.cid-uaCdPAih9R .mbr-text3 {
  color: #000000;
}
.cid-uaCe1XaGZU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCe1XaGZU .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCe1XaGZU .mbr-section-title {
  color: #000000;
}
.cid-uaCe1XaGZU .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCe1XaGZU .mbr-text {
  color: #000000;
}
.cid-uaCe1XaGZU .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCe1XaGZU p {
  line-height: 1.2;
}
.cid-uaCe1XaGZU .mbr-text1 {
  color: #000000;
}
.cid-uaCe1XaGZU .mbr-text2 {
  color: #005241;
}
.cid-uaCe1XaGZU .mbr-text3 {
  color: #000000;
}
.cid-uaCejnk88L {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCejnk88L .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCejnk88L .mbr-section-title {
  color: #000000;
}
.cid-uaCejnk88L .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCejnk88L .mbr-text {
  color: #000000;
}
.cid-uaCejnk88L .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCejnk88L p {
  line-height: 1.2;
}
.cid-uaCejnk88L .mbr-text1 {
  color: #000000;
}
.cid-uaCejnk88L .mbr-text2 {
  color: #005241;
}
.cid-uaCejnk88L .mbr-text3 {
  color: #000000;
}
.cid-udwsPXMMmC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-udwsPXMMmC .col-title {
    margin-bottom: 20px;
  }
}
.cid-udwsPXMMmC .mbr-section-title {
  color: #000000;
}
.cid-udwsPXMMmC .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-udwsPXMMmC .mbr-text {
  color: #000000;
}
.cid-udwsPXMMmC .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-udwsPXMMmC p {
  line-height: 1.2;
}
.cid-udwsPXMMmC .mbr-text1 {
  color: #000000;
}
.cid-udwsPXMMmC .mbr-text2 {
  color: #005241;
}
.cid-udwsPXMMmC .mbr-text3 {
  color: #000000;
}
.cid-uaCewLHC7J {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCewLHC7J .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCewLHC7J .mbr-section-title {
  color: #000000;
}
.cid-uaCewLHC7J .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCewLHC7J .mbr-text {
  color: #000000;
}
.cid-uaCewLHC7J .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCewLHC7J p {
  line-height: 1.2;
}
.cid-uaCewLHC7J .mbr-text1 {
  color: #000000;
}
.cid-uaCewLHC7J .mbr-text2 {
  color: #005241;
}
.cid-uaCewLHC7J .mbr-text3 {
  color: #000000;
}
.cid-uaCf67qmgf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCf67qmgf .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCf67qmgf .mbr-section-title {
  color: #000000;
}
.cid-uaCf67qmgf .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCf67qmgf .mbr-text {
  color: #000000;
}
.cid-uaCf67qmgf .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCf67qmgf p {
  line-height: 1.2;
}
.cid-uaCf67qmgf .mbr-text1 {
  color: #000000;
}
.cid-uaCf67qmgf .mbr-text2 {
  color: #005241;
}
.cid-uaCf67qmgf .mbr-text3 {
  color: #000000;
}
.cid-uaCeNIcW5Y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCeNIcW5Y .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCeNIcW5Y .mbr-section-title {
  color: #000000;
}
.cid-uaCeNIcW5Y .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCeNIcW5Y .mbr-text {
  color: #000000;
}
.cid-uaCeNIcW5Y .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCeNIcW5Y p {
  line-height: 1.2;
}
.cid-uaCeNIcW5Y .mbr-text1 {
  color: #000000;
}
.cid-uaCeNIcW5Y .mbr-text2 {
  color: #005241;
}
.cid-uaCeNIcW5Y .mbr-text3 {
  color: #000000;
}
.cid-uaCf76bPWH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCf76bPWH .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCf76bPWH .mbr-section-title {
  color: #000000;
}
.cid-uaCf76bPWH .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCf76bPWH .mbr-text {
  color: #000000;
}
.cid-uaCf76bPWH .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCf76bPWH p {
  line-height: 1.2;
}
.cid-uaCf76bPWH .mbr-text1 {
  color: #000000;
}
.cid-uaCf76bPWH .mbr-text2 {
  color: #005241;
}
.cid-uaCf76bPWH .mbr-text3 {
  color: #000000;
}
.cid-uaCfD7Id2u {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCfD7Id2u .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCfD7Id2u .mbr-section-title {
  color: #000000;
}
.cid-uaCfD7Id2u .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCfD7Id2u .mbr-text {
  color: #000000;
}
.cid-uaCfD7Id2u .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCfD7Id2u p {
  line-height: 1.2;
}
.cid-uaCfD7Id2u .mbr-text1 {
  color: #000000;
}
.cid-uaCfD7Id2u .mbr-text2 {
  color: #005241;
}
.cid-uaCfD7Id2u .mbr-text3 {
  color: #000000;
}
.cid-uaCfLYdnq5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCfLYdnq5 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCfLYdnq5 .mbr-section-title {
  color: #000000;
}
.cid-uaCfLYdnq5 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCfLYdnq5 .mbr-text {
  color: #000000;
}
.cid-uaCfLYdnq5 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCfLYdnq5 p {
  line-height: 1.2;
}
.cid-uaCfLYdnq5 .mbr-text1 {
  color: #000000;
}
.cid-uaCfLYdnq5 .mbr-text2 {
  color: #005241;
}
.cid-uaCfLYdnq5 .mbr-text3 {
  color: #000000;
}
.cid-uaCg2kkGpz {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-uaCg2kkGpz .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCg2kkGpz .mbr-section-title {
  color: #000000;
}
.cid-uaCg2kkGpz .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCg2kkGpz .mbr-text {
  color: #000000;
}
.cid-uaCg2kkGpz .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCg2kkGpz p {
  line-height: 1.2;
}
.cid-uaCg2kkGpz .mbr-text1 {
  color: #000000;
}
.cid-uaCg2kkGpz .mbr-text2 {
  color: #005241;
}
.cid-uaCg2kkGpz .mbr-text3 {
  color: #000000;
}
.cid-uaCgkAv4Ii {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uaCgkAv4Ii .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCgkAv4Ii .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uaCgkAv4Ii .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uaCgkAv4Ii .mbr-text {
  color: #000000;
}
.cid-uaCgt4qMtn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uaCgt4qMtn .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCgt4qMtn .mbr-section-title {
  color: #000000;
}
.cid-uaCgt4qMtn .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCgt4qMtn .mbr-text {
  color: #000000;
}
.cid-uaCgt4qMtn .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCgt4qMtn p {
  line-height: 1.2;
}
.cid-uaCgt4qMtn .mbr-text1 {
  color: #000000;
}
.cid-uaCgt4qMtn .mbr-text2 {
  color: #005241;
}
.cid-uaCgt4qMtn .mbr-text3 {
  color: #000000;
}
.cid-uaCgY8OJMm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uaCgY8OJMm .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCgY8OJMm .mbr-section-title {
  color: #000000;
}
.cid-uaCgY8OJMm .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCgY8OJMm .mbr-text {
  color: #000000;
}
.cid-uaCgY8OJMm .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCgY8OJMm p {
  line-height: 1.2;
}
.cid-uaCgY8OJMm .mbr-text1 {
  color: #000000;
}
.cid-uaCgY8OJMm .mbr-text2 {
  color: #005241;
}
.cid-uaCgY8OJMm .mbr-text3 {
  color: #000000;
}
.cid-uuYSUwZNWT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uuYSUwZNWT .col-title {
    margin-bottom: 20px;
  }
}
.cid-uuYSUwZNWT .mbr-section-title {
  color: #000000;
}
.cid-uuYSUwZNWT .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uuYSUwZNWT .mbr-text {
  color: #000000;
}
.cid-uuYSUwZNWT .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uuYSUwZNWT p {
  line-height: 1.2;
}
.cid-uuYSUwZNWT .mbr-text1 {
  color: #000000;
}
.cid-uuYSUwZNWT .mbr-text2 {
  color: #005241;
}
.cid-uuYSUwZNWT .mbr-text3 {
  color: #000000;
}
.cid-uaChpUJ20g {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uaChpUJ20g .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaChpUJ20g .mbr-section-title {
  color: #000000;
}
.cid-uaChpUJ20g .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaChpUJ20g .mbr-text {
  color: #000000;
}
.cid-uaChpUJ20g .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaChpUJ20g p {
  line-height: 1.2;
}
.cid-uaChpUJ20g .mbr-text1 {
  color: #000000;
}
.cid-uaChpUJ20g .mbr-text2 {
  color: #005241;
}
.cid-uaChpUJ20g .mbr-text3 {
  color: #000000;
}
.cid-uaChLNh6if {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uaChLNh6if .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaChLNh6if .mbr-section-title {
  color: #000000;
}
.cid-uaChLNh6if .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaChLNh6if .mbr-text {
  color: #000000;
}
.cid-uaChLNh6if .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaChLNh6if p {
  line-height: 1.2;
}
.cid-uaChLNh6if .mbr-text1 {
  color: #000000;
}
.cid-uaChLNh6if .mbr-text2 {
  color: #005241;
}
.cid-uaChLNh6if .mbr-text3 {
  color: #000000;
}
.cid-uaCi21Ndll {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d1eeff;
}
@media (max-width: 991px) {
  .cid-uaCi21Ndll .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaCi21Ndll .mbr-section-title {
  color: #000000;
}
.cid-uaCi21Ndll .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaCi21Ndll .mbr-text {
  color: #000000;
}
.cid-uaCi21Ndll .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaCi21Ndll p {
  line-height: 1.2;
}
.cid-uaCi21Ndll .mbr-text1 {
  color: #000000;
}
.cid-uaCi21Ndll .mbr-text2 {
  color: #005241;
}
.cid-uaCi21Ndll .mbr-text3 {
  color: #000000;
}
.cid-tDSC3dE9Wx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-tDSC3dE9Wx .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-tDSC3dE9Wx .mbr-text {
  color: #c1c1c1;
}
.cid-tXI7ENmYyZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tXI7ENmYyZ nav.navbar {
  position: fixed;
}
.cid-tXI7ENmYyZ .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-tXI7ENmYyZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXI7ENmYyZ .dropdown-item:hover,
.cid-tXI7ENmYyZ .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXI7ENmYyZ .dropdown-item:hover span {
  color: white;
}
.cid-tXI7ENmYyZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXI7ENmYyZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXI7ENmYyZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXI7ENmYyZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXI7ENmYyZ .nav-link {
  position: relative;
}
.cid-tXI7ENmYyZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXI7ENmYyZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tXI7ENmYyZ .navbar-caption:hover,
.cid-tXI7ENmYyZ .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-tXI7ENmYyZ .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tXI7ENmYyZ .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tXI7ENmYyZ .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXI7ENmYyZ .dropdown-menu,
.cid-tXI7ENmYyZ .navbar.opened {
  background: #ffffff !important;
}
.cid-tXI7ENmYyZ .nav-item:focus,
.cid-tXI7ENmYyZ .nav-link:focus {
  outline: none;
}
.cid-tXI7ENmYyZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXI7ENmYyZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXI7ENmYyZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXI7ENmYyZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXI7ENmYyZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXI7ENmYyZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXI7ENmYyZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tXI7ENmYyZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tXI7ENmYyZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXI7ENmYyZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tXI7ENmYyZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXI7ENmYyZ .navbar.collapsed {
  justify-content: center;
}
.cid-tXI7ENmYyZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXI7ENmYyZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXI7ENmYyZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tXI7ENmYyZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXI7ENmYyZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXI7ENmYyZ .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-tXI7ENmYyZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXI7ENmYyZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXI7ENmYyZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXI7ENmYyZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXI7ENmYyZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXI7ENmYyZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXI7ENmYyZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXI7ENmYyZ .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-tXI7ENmYyZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXI7ENmYyZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXI7ENmYyZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXI7ENmYyZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXI7ENmYyZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXI7ENmYyZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXI7ENmYyZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXI7ENmYyZ .navbar.navbar-short {
  min-height: 70px;
}
.cid-tXI7ENmYyZ .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-tXI7ENmYyZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXI7ENmYyZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXI7ENmYyZ .dropdown-item.active,
.cid-tXI7ENmYyZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tXI7ENmYyZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXI7ENmYyZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXI7ENmYyZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXI7ENmYyZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXI7ENmYyZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXI7ENmYyZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXI7ENmYyZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXI7ENmYyZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tXI7ENmYyZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXI7ENmYyZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXI7ENmYyZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXI7ENmYyZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXI7ENmYyZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXI7ENmYyZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXI7ENmYyZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXI7ENmYyZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXI7ENmYyZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXI7ENmYyZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXI7ENmYyZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXI7ENmYyZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXI7ENmYyZ .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-tXI7ENmYyZ .navbar {
    height: 70px;
  }
  .cid-tXI7ENmYyZ .navbar.opened {
    height: auto;
  }
  .cid-tXI7ENmYyZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXI7ENmYyZ .container-fluid {
  padding: 0 1rem !important;
}
.cid-tXI7ENmYyZ .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tXI7ENmYyZ .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tXI7ENmYyZ .navbar-collapse {
    width: 100%;
  }
  .cid-tXI7ENmYyZ .navbar-nav {
    width: 100%;
  }
  .cid-tXI7ENmYyZ .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tXI7EO9jAS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-tXI7EO9jAS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXI7EO9jAS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXI7EO9jAS .col-content {
    text-align: center;
  }
}
.cid-tXI7EO9jAS .label-container {
  margin-bottom: 16px;
}
.cid-tXI7EO9jAS .label-text {
  color: #ffffff;
}
.cid-tXI7EO9jAS .label-text-2 {
  color: #ffffff;
}
.cid-tXI7EO9jAS .mbr-section-title {
  color: #ffffff;
}
.cid-tXI7EO9jAS .text-container {
  margin-top: 24px;
}
.cid-tXI7EO9jAS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXI7EO9jAS .mbr-text {
  color: #b79b6c;
}
.cid-tXI7EO9jAS .mbr-section-btn {
  margin-top: 28px;
}
.cid-tXI7EO9jAS .mbr-text,
.cid-tXI7EO9jAS .mbr-section-btn {
  color: #ffffff;
}
.cid-uSO59mrQCu {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSO59mrQCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSO59mrQCu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSO59mrQCu .mbr-section-title {
  color: #24262b;
}
.cid-uSO59mrQCu .mbr-section-subtitle {
  color: #24262b;
}
.cid-uSO59mrQCu .mbr-section-btn {
  margin-top: 16px;
}
.cid-tXIa5Z5wPu {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/welpen-deckmeldung-1022x614.png");
}
.cid-tXIa5Z5wPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIa5Z5wPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXIa5Z5wPu .col-content {
    text-align: center;
  }
}
.cid-tXIa5Z5wPu .label-container {
  margin-bottom: 16px;
}
.cid-tXIa5Z5wPu .label-text {
  color: #ffffff;
}
.cid-tXIa5Z5wPu .label-text-2 {
  color: #ffffff;
}
.cid-tXIa5Z5wPu .mbr-section-title {
  color: #ffffff;
}
.cid-tXIa5Z5wPu .text-container {
  margin-top: 24px;
}
.cid-tXIa5Z5wPu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXIa5Z5wPu .mbr-text {
  color: #b79b6c;
}
.cid-tXIa5Z5wPu .mbr-section-btn {
  margin-top: 28px;
}
.cid-tXIa5Z5wPu .mbr-text,
.cid-tXIa5Z5wPu .mbr-section-btn {
  color: #ffffff;
}
.cid-uUAS3m3tgb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUAS3m3tgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUAS3m3tgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUAS3m3tgb .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uUAS3m3tgb .mbr-section-title {
  color: #24262b;
}
.cid-uUAS3m3tgb .mbr-section-subtitle {
  color: #24262b;
}
.cid-uUAS3m3tgb .cards-row {
  row-gap: 32px;
}
.cid-uUAS3m3tgb .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uUAS3m3tgb .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uUAS3m3tgb .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uUAS3m3tgb .card-subtitle {
  color: #24262b;
}
.cid-uUAS3m3tgb .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uUAS3m3tgb .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUAS3m3tgb .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uUAS3m3tgb .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uUATNj6ppx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUATNj6ppx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUATNj6ppx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUATNj6ppx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uUATNj6ppx .mbr-section-title {
  color: #24262b;
}
.cid-uUATNj6ppx .mbr-section-subtitle {
  color: #24262b;
}
.cid-uUATNj6ppx .cards-row {
  row-gap: 32px;
}
.cid-uUATNj6ppx .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uUATNj6ppx .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uUATNj6ppx .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uUATNj6ppx .card-subtitle {
  color: #24262b;
}
.cid-uUATNj6ppx .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uUATNj6ppx .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUATNj6ppx .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uUATNj6ppx .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uUASSvYlo1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUASSvYlo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUASSvYlo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUASSvYlo1 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uUASSvYlo1 .mbr-section-title {
  color: #24262b;
}
.cid-uUASSvYlo1 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uUASSvYlo1 .cards-row {
  row-gap: 32px;
}
.cid-uUASSvYlo1 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uUASSvYlo1 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uUASSvYlo1 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uUASSvYlo1 .card-subtitle {
  color: #24262b;
}
.cid-uUASSvYlo1 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uUASSvYlo1 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUASSvYlo1 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uUASSvYlo1 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uSO4Sf6uyo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSO4Sf6uyo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSO4Sf6uyo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSO4Sf6uyo .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uSO4Sf6uyo .mbr-section-title {
  color: #24262b;
}
.cid-uSO4Sf6uyo .mbr-section-subtitle {
  color: #24262b;
}
.cid-uSO4Sf6uyo .cards-row {
  row-gap: 32px;
}
.cid-uSO4Sf6uyo .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uSO4Sf6uyo .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uSO4Sf6uyo .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uSO4Sf6uyo .card-subtitle {
  color: #24262b;
}
.cid-uSO4Sf6uyo .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uSO4Sf6uyo .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSO4Sf6uyo .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uSO4Sf6uyo .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-tXI7EZ1psH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-tXI7EZ1psH .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-tXI7EZ1psH .mbr-text {
  color: #c1c1c1;
}
.cid-tXImUPGt88 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tXImUPGt88 nav.navbar {
  position: fixed;
}
.cid-tXImUPGt88 .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-tXImUPGt88 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXImUPGt88 .dropdown-item:hover,
.cid-tXImUPGt88 .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXImUPGt88 .dropdown-item:hover span {
  color: white;
}
.cid-tXImUPGt88 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXImUPGt88 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXImUPGt88 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXImUPGt88 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXImUPGt88 .nav-link {
  position: relative;
}
.cid-tXImUPGt88 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXImUPGt88 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXImUPGt88 .navbar-caption:hover,
.cid-tXImUPGt88 .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-tXImUPGt88 .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tXImUPGt88 .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tXImUPGt88 .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-tXImUPGt88 .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tXImUPGt88 .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-tXImUPGt88 .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tXImUPGt88 .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tXImUPGt88 .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tXImUPGt88 .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXImUPGt88 .dropdown-menu,
.cid-tXImUPGt88 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXImUPGt88 .nav-item:focus,
.cid-tXImUPGt88 .nav-link:focus {
  outline: none;
}
.cid-tXImUPGt88 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXImUPGt88 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXImUPGt88 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXImUPGt88 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXImUPGt88 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXImUPGt88 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXImUPGt88 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tXImUPGt88 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXImUPGt88 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXImUPGt88 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXImUPGt88 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXImUPGt88 .navbar.collapsed {
  justify-content: center;
}
.cid-tXImUPGt88 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXImUPGt88 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXImUPGt88 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tXImUPGt88 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXImUPGt88 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXImUPGt88 .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-tXImUPGt88 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXImUPGt88 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXImUPGt88 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXImUPGt88 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXImUPGt88 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXImUPGt88 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXImUPGt88 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXImUPGt88 .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-tXImUPGt88 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXImUPGt88 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXImUPGt88 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXImUPGt88 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXImUPGt88 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXImUPGt88 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXImUPGt88 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXImUPGt88 .navbar.navbar-short {
  min-height: 70px;
}
.cid-tXImUPGt88 .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-tXImUPGt88 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXImUPGt88 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXImUPGt88 .dropdown-item.active,
.cid-tXImUPGt88 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXImUPGt88 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXImUPGt88 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXImUPGt88 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXImUPGt88 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXImUPGt88 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXImUPGt88 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXImUPGt88 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXImUPGt88 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tXImUPGt88 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXImUPGt88 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXImUPGt88 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXImUPGt88 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXImUPGt88 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXImUPGt88 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXImUPGt88 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXImUPGt88 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXImUPGt88 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXImUPGt88 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXImUPGt88 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXImUPGt88 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXImUPGt88 .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-tXImUPGt88 .navbar {
    height: 70px;
  }
  .cid-tXImUPGt88 .navbar.opened {
    height: auto;
  }
  .cid-tXImUPGt88 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXImUPGt88 .container-fluid {
  padding: 0 1rem !important;
}
.cid-tXImUPGt88 .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tXImUPGt88 .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tXImUPGt88 .navbar-collapse {
    width: 100%;
  }
  .cid-tXImUPGt88 .navbar-nav {
    width: 100%;
  }
  .cid-tXImUPGt88 .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tXImUQQLoU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-tXImUQQLoU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXImUQQLoU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXImUQQLoU .col-content {
    text-align: center;
  }
}
.cid-tXImUQQLoU .label-container {
  margin-bottom: 16px;
}
.cid-tXImUQQLoU .label-text {
  color: #ffffff;
}
.cid-tXImUQQLoU .label-text-2 {
  color: #ffffff;
}
.cid-tXImUQQLoU .mbr-section-title {
  color: #ffffff;
}
.cid-tXImUQQLoU .text-container {
  margin-top: 24px;
}
.cid-tXImUQQLoU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXImUQQLoU .mbr-text {
  color: #b79b6c;
}
.cid-tXImUQQLoU .mbr-section-btn {
  margin-top: 28px;
}
.cid-tXImUQQLoU .mbr-text,
.cid-tXImUQQLoU .mbr-section-btn {
  color: #ffffff;
}
.cid-tXInuEL8wT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tXInuEL8wT .col-title {
    margin-bottom: 20px;
  }
}
.cid-tXInuEL8wT .mbr-section-title {
  color: #000000;
}
.cid-tXInuEL8wT .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tXInuEL8wT .mbr-text {
  color: #000000;
}
.cid-tXImUZOG9X {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-tXImUZOG9X .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-tXImUZOG9X .mbr-text {
  color: #c1c1c1;
}
.cid-tXInGZxFzS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tXInGZxFzS nav.navbar {
  position: fixed;
}
.cid-tXInGZxFzS .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-tXInGZxFzS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXInGZxFzS .dropdown-item:hover,
.cid-tXInGZxFzS .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXInGZxFzS .dropdown-item:hover span {
  color: white;
}
.cid-tXInGZxFzS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXInGZxFzS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXInGZxFzS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXInGZxFzS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXInGZxFzS .nav-link {
  position: relative;
}
.cid-tXInGZxFzS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXInGZxFzS .container {
    flex-wrap: nowrap;
  }
}
.cid-tXInGZxFzS .navbar-caption:hover,
.cid-tXInGZxFzS .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-tXInGZxFzS .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tXInGZxFzS .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tXInGZxFzS .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-tXInGZxFzS .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tXInGZxFzS .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-tXInGZxFzS .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tXInGZxFzS .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tXInGZxFzS .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tXInGZxFzS .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXInGZxFzS .dropdown-menu,
.cid-tXInGZxFzS .navbar.opened {
  background: #ffffff !important;
}
.cid-tXInGZxFzS .nav-item:focus,
.cid-tXInGZxFzS .nav-link:focus {
  outline: none;
}
.cid-tXInGZxFzS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXInGZxFzS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXInGZxFzS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXInGZxFzS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXInGZxFzS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXInGZxFzS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXInGZxFzS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tXInGZxFzS .navbar.opened {
  transition: all 0.3s;
}
.cid-tXInGZxFzS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXInGZxFzS .navbar .navbar-logo img {
  width: auto;
}
.cid-tXInGZxFzS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXInGZxFzS .navbar.collapsed {
  justify-content: center;
}
.cid-tXInGZxFzS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXInGZxFzS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXInGZxFzS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tXInGZxFzS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXInGZxFzS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXInGZxFzS .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-tXInGZxFzS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXInGZxFzS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXInGZxFzS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXInGZxFzS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXInGZxFzS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXInGZxFzS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXInGZxFzS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXInGZxFzS .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-tXInGZxFzS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXInGZxFzS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXInGZxFzS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXInGZxFzS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXInGZxFzS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXInGZxFzS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXInGZxFzS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXInGZxFzS .navbar.navbar-short {
  min-height: 70px;
}
.cid-tXInGZxFzS .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-tXInGZxFzS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXInGZxFzS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXInGZxFzS .dropdown-item.active,
.cid-tXInGZxFzS .dropdown-item:active {
  background-color: transparent;
}
.cid-tXInGZxFzS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXInGZxFzS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXInGZxFzS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXInGZxFzS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXInGZxFzS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXInGZxFzS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXInGZxFzS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXInGZxFzS .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tXInGZxFzS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXInGZxFzS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXInGZxFzS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXInGZxFzS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXInGZxFzS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXInGZxFzS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXInGZxFzS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXInGZxFzS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXInGZxFzS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXInGZxFzS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXInGZxFzS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXInGZxFzS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXInGZxFzS .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-tXInGZxFzS .navbar {
    height: 70px;
  }
  .cid-tXInGZxFzS .navbar.opened {
    height: auto;
  }
  .cid-tXInGZxFzS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXInGZxFzS .container-fluid {
  padding: 0 1rem !important;
}
.cid-tXInGZxFzS .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tXInGZxFzS .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tXInGZxFzS .navbar-collapse {
    width: 100%;
  }
  .cid-tXInGZxFzS .navbar-nav {
    width: 100%;
  }
  .cid-tXInGZxFzS .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tXInH0FOwe {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-tXInH0FOwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXInH0FOwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXInH0FOwe .col-content {
    text-align: center;
  }
}
.cid-tXInH0FOwe .label-container {
  margin-bottom: 16px;
}
.cid-tXInH0FOwe .label-text {
  color: #ffffff;
}
.cid-tXInH0FOwe .label-text-2 {
  color: #ffffff;
}
.cid-tXInH0FOwe .mbr-section-title {
  color: #ffffff;
}
.cid-tXInH0FOwe .text-container {
  margin-top: 24px;
}
.cid-tXInH0FOwe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXInH0FOwe .mbr-text {
  color: #b79b6c;
}
.cid-tXInH0FOwe .mbr-section-btn {
  margin-top: 28px;
}
.cid-tXInH0FOwe .mbr-text,
.cid-tXInH0FOwe .mbr-section-btn {
  color: #ffffff;
}
.cid-tXInH1VPBH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tXInH1VPBH .col-title {
    margin-bottom: 20px;
  }
}
.cid-tXInH1VPBH .mbr-section-title {
  color: #000000;
}
.cid-tXInH1VPBH .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tXInH1VPBH .mbr-text {
  color: #000000;
}
.cid-tXInH2ZSPw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-tXInH2ZSPw .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-tXInH2ZSPw .mbr-text {
  color: #c1c1c1;
}
.cid-tXIoqwd5cZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tXIoqwd5cZ nav.navbar {
  position: fixed;
}
.cid-tXIoqwd5cZ .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-tXIoqwd5cZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXIoqwd5cZ .dropdown-item:hover,
.cid-tXIoqwd5cZ .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXIoqwd5cZ .dropdown-item:hover span {
  color: white;
}
.cid-tXIoqwd5cZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXIoqwd5cZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXIoqwd5cZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXIoqwd5cZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXIoqwd5cZ .nav-link {
  position: relative;
}
.cid-tXIoqwd5cZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXIoqwd5cZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tXIoqwd5cZ .navbar-caption:hover,
.cid-tXIoqwd5cZ .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-tXIoqwd5cZ .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tXIoqwd5cZ .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tXIoqwd5cZ .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-tXIoqwd5cZ .dropdown-menu,
.cid-tXIoqwd5cZ .navbar.opened {
  background: #ffffff !important;
}
.cid-tXIoqwd5cZ .nav-item:focus,
.cid-tXIoqwd5cZ .nav-link:focus {
  outline: none;
}
.cid-tXIoqwd5cZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXIoqwd5cZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXIoqwd5cZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXIoqwd5cZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXIoqwd5cZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXIoqwd5cZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXIoqwd5cZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tXIoqwd5cZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tXIoqwd5cZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXIoqwd5cZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tXIoqwd5cZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXIoqwd5cZ .navbar.collapsed {
  justify-content: center;
}
.cid-tXIoqwd5cZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXIoqwd5cZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXIoqwd5cZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tXIoqwd5cZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXIoqwd5cZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXIoqwd5cZ .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-tXIoqwd5cZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXIoqwd5cZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXIoqwd5cZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXIoqwd5cZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXIoqwd5cZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXIoqwd5cZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXIoqwd5cZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXIoqwd5cZ .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-tXIoqwd5cZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXIoqwd5cZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXIoqwd5cZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXIoqwd5cZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXIoqwd5cZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXIoqwd5cZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXIoqwd5cZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXIoqwd5cZ .navbar.navbar-short {
  min-height: 70px;
}
.cid-tXIoqwd5cZ .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-tXIoqwd5cZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXIoqwd5cZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXIoqwd5cZ .dropdown-item.active,
.cid-tXIoqwd5cZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tXIoqwd5cZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXIoqwd5cZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXIoqwd5cZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXIoqwd5cZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXIoqwd5cZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXIoqwd5cZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXIoqwd5cZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXIoqwd5cZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tXIoqwd5cZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXIoqwd5cZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXIoqwd5cZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXIoqwd5cZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXIoqwd5cZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXIoqwd5cZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXIoqwd5cZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXIoqwd5cZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXIoqwd5cZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXIoqwd5cZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXIoqwd5cZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXIoqwd5cZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXIoqwd5cZ .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-tXIoqwd5cZ .navbar {
    height: 70px;
  }
  .cid-tXIoqwd5cZ .navbar.opened {
    height: auto;
  }
  .cid-tXIoqwd5cZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXIoqwd5cZ .container-fluid {
  padding: 0 1rem !important;
}
.cid-tXIoqwd5cZ .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tXIoqwd5cZ .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tXIoqwd5cZ .navbar-collapse {
    width: 100%;
  }
  .cid-tXIoqwd5cZ .navbar-nav {
    width: 100%;
  }
  .cid-tXIoqwd5cZ .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tXIoqxF6pd {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-tXIoqxF6pd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIoqxF6pd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXIoqxF6pd .col-content {
    text-align: center;
  }
}
.cid-tXIoqxF6pd .label-container {
  margin-bottom: 16px;
}
.cid-tXIoqxF6pd .label-text {
  color: #ffffff;
}
.cid-tXIoqxF6pd .label-text-2 {
  color: #ffffff;
}
.cid-tXIoqxF6pd .mbr-section-title {
  color: #ffffff;
}
.cid-tXIoqxF6pd .text-container {
  margin-top: 24px;
}
.cid-tXIoqxF6pd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXIoqxF6pd .mbr-text {
  color: #b79b6c;
}
.cid-tXIoqxF6pd .mbr-section-btn {
  margin-top: 28px;
}
.cid-tXIoqxF6pd .mbr-text,
.cid-tXIoqxF6pd .mbr-section-btn {
  color: #ffffff;
}
.cid-tXIoqzdL6F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tXIoqzdL6F .col-title {
    margin-bottom: 20px;
  }
}
.cid-tXIoqzdL6F .mbr-section-title {
  color: #000000;
}
.cid-tXIoqzdL6F .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tXIoqzdL6F .mbr-text {
  color: #000000;
}
.cid-tXIoqAtkeQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-tXIoqAtkeQ .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-tXIoqAtkeQ .mbr-text {
  color: #c1c1c1;
}
.cid-u0UwfIkEYK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u0UwfIkEYK nav.navbar {
  position: fixed;
}
.cid-u0UwfIkEYK .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-u0UwfIkEYK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0UwfIkEYK .dropdown-item:hover,
.cid-u0UwfIkEYK .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0UwfIkEYK .dropdown-item:hover span {
  color: white;
}
.cid-u0UwfIkEYK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0UwfIkEYK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0UwfIkEYK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0UwfIkEYK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0UwfIkEYK .nav-link {
  position: relative;
}
.cid-u0UwfIkEYK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0UwfIkEYK .container {
    flex-wrap: nowrap;
  }
}
.cid-u0UwfIkEYK .navbar-caption:hover,
.cid-u0UwfIkEYK .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u0UwfIkEYK .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u0UwfIkEYK .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u0UwfIkEYK .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u0UwfIkEYK .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u0UwfIkEYK .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u0UwfIkEYK .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u0UwfIkEYK .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u0UwfIkEYK .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u0UwfIkEYK .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0UwfIkEYK .dropdown-menu,
.cid-u0UwfIkEYK .navbar.opened {
  background: #ffffff !important;
}
.cid-u0UwfIkEYK .nav-item:focus,
.cid-u0UwfIkEYK .nav-link:focus {
  outline: none;
}
.cid-u0UwfIkEYK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0UwfIkEYK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0UwfIkEYK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0UwfIkEYK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0UwfIkEYK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0UwfIkEYK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0UwfIkEYK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u0UwfIkEYK .navbar.opened {
  transition: all 0.3s;
}
.cid-u0UwfIkEYK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0UwfIkEYK .navbar .navbar-logo img {
  width: auto;
}
.cid-u0UwfIkEYK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0UwfIkEYK .navbar.collapsed {
  justify-content: center;
}
.cid-u0UwfIkEYK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0UwfIkEYK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0UwfIkEYK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u0UwfIkEYK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0UwfIkEYK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0UwfIkEYK .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-u0UwfIkEYK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0UwfIkEYK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0UwfIkEYK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0UwfIkEYK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0UwfIkEYK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0UwfIkEYK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0UwfIkEYK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0UwfIkEYK .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-u0UwfIkEYK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0UwfIkEYK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0UwfIkEYK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0UwfIkEYK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0UwfIkEYK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0UwfIkEYK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u0UwfIkEYK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u0UwfIkEYK .navbar.navbar-short {
  min-height: 70px;
}
.cid-u0UwfIkEYK .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-u0UwfIkEYK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0UwfIkEYK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0UwfIkEYK .dropdown-item.active,
.cid-u0UwfIkEYK .dropdown-item:active {
  background-color: transparent;
}
.cid-u0UwfIkEYK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0UwfIkEYK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0UwfIkEYK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0UwfIkEYK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0UwfIkEYK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0UwfIkEYK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0UwfIkEYK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0UwfIkEYK .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u0UwfIkEYK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0UwfIkEYK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0UwfIkEYK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0UwfIkEYK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0UwfIkEYK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0UwfIkEYK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0UwfIkEYK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0UwfIkEYK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0UwfIkEYK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0UwfIkEYK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0UwfIkEYK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0UwfIkEYK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0UwfIkEYK .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-u0UwfIkEYK .navbar {
    height: 70px;
  }
  .cid-u0UwfIkEYK .navbar.opened {
    height: auto;
  }
  .cid-u0UwfIkEYK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0UwfIkEYK .container-fluid {
  padding: 0 1rem !important;
}
.cid-u0UwfIkEYK .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u0UwfIkEYK .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u0UwfIkEYK .navbar-collapse {
    width: 100%;
  }
  .cid-u0UwfIkEYK .navbar-nav {
    width: 100%;
  }
  .cid-u0UwfIkEYK .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u0UwfJFIMN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u0UwfJFIMN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0UwfJFIMN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u0UwfJFIMN .col-content {
    text-align: center;
  }
}
.cid-u0UwfJFIMN .label-container {
  margin-bottom: 16px;
}
.cid-u0UwfJFIMN .label-text {
  color: #ffffff;
}
.cid-u0UwfJFIMN .label-text-2 {
  color: #ffffff;
}
.cid-u0UwfJFIMN .mbr-section-title {
  color: #ffffff;
}
.cid-u0UwfJFIMN .text-container {
  margin-top: 24px;
}
.cid-u0UwfJFIMN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0UwfJFIMN .mbr-text {
  color: #b79b6c;
}
.cid-u0UwfJFIMN .mbr-section-btn {
  margin-top: 28px;
}
.cid-u0UwfJFIMN .mbr-text,
.cid-u0UwfJFIMN .mbr-section-btn {
  color: #ffffff;
}
.cid-u0UwFP0RJ4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u0UwFP0RJ4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u0UwfLANE8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u0UwfLANE8 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u0UwfLANE8 .mbr-text {
  color: #c1c1c1;
}
.cid-u0XwUxKyBx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u0XwUxKyBx nav.navbar {
  position: fixed;
}
.cid-u0XwUxKyBx .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-u0XwUxKyBx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0XwUxKyBx .dropdown-item:hover,
.cid-u0XwUxKyBx .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0XwUxKyBx .dropdown-item:hover span {
  color: white;
}
.cid-u0XwUxKyBx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0XwUxKyBx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0XwUxKyBx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0XwUxKyBx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0XwUxKyBx .nav-link {
  position: relative;
}
.cid-u0XwUxKyBx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0XwUxKyBx .container {
    flex-wrap: nowrap;
  }
}
.cid-u0XwUxKyBx .navbar-caption:hover,
.cid-u0XwUxKyBx .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u0XwUxKyBx .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u0XwUxKyBx .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u0XwUxKyBx .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u0XwUxKyBx .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u0XwUxKyBx .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u0XwUxKyBx .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u0XwUxKyBx .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u0XwUxKyBx .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u0XwUxKyBx .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0XwUxKyBx .dropdown-menu,
.cid-u0XwUxKyBx .navbar.opened {
  background: #ffffff !important;
}
.cid-u0XwUxKyBx .nav-item:focus,
.cid-u0XwUxKyBx .nav-link:focus {
  outline: none;
}
.cid-u0XwUxKyBx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0XwUxKyBx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0XwUxKyBx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0XwUxKyBx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0XwUxKyBx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0XwUxKyBx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0XwUxKyBx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u0XwUxKyBx .navbar.opened {
  transition: all 0.3s;
}
.cid-u0XwUxKyBx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0XwUxKyBx .navbar .navbar-logo img {
  width: auto;
}
.cid-u0XwUxKyBx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0XwUxKyBx .navbar.collapsed {
  justify-content: center;
}
.cid-u0XwUxKyBx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0XwUxKyBx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0XwUxKyBx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u0XwUxKyBx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0XwUxKyBx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0XwUxKyBx .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-u0XwUxKyBx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0XwUxKyBx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0XwUxKyBx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0XwUxKyBx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0XwUxKyBx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0XwUxKyBx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0XwUxKyBx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0XwUxKyBx .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-u0XwUxKyBx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0XwUxKyBx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0XwUxKyBx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0XwUxKyBx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0XwUxKyBx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0XwUxKyBx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u0XwUxKyBx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u0XwUxKyBx .navbar.navbar-short {
  min-height: 70px;
}
.cid-u0XwUxKyBx .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-u0XwUxKyBx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0XwUxKyBx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0XwUxKyBx .dropdown-item.active,
.cid-u0XwUxKyBx .dropdown-item:active {
  background-color: transparent;
}
.cid-u0XwUxKyBx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0XwUxKyBx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0XwUxKyBx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0XwUxKyBx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0XwUxKyBx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0XwUxKyBx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0XwUxKyBx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0XwUxKyBx .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u0XwUxKyBx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0XwUxKyBx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0XwUxKyBx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0XwUxKyBx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0XwUxKyBx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0XwUxKyBx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0XwUxKyBx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0XwUxKyBx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0XwUxKyBx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0XwUxKyBx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0XwUxKyBx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0XwUxKyBx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0XwUxKyBx .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-u0XwUxKyBx .navbar {
    height: 70px;
  }
  .cid-u0XwUxKyBx .navbar.opened {
    height: auto;
  }
  .cid-u0XwUxKyBx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0XwUxKyBx .container-fluid {
  padding: 0 1rem !important;
}
.cid-u0XwUxKyBx .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u0XwUxKyBx .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u0XwUxKyBx .navbar-collapse {
    width: 100%;
  }
  .cid-u0XwUxKyBx .navbar-nav {
    width: 100%;
  }
  .cid-u0XwUxKyBx .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u0XwUyhLIu {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u0XwUyhLIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0XwUyhLIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u0XwUyhLIu .col-content {
    text-align: center;
  }
}
.cid-u0XwUyhLIu .label-container {
  margin-bottom: 16px;
}
.cid-u0XwUyhLIu .label-text {
  color: #ffffff;
}
.cid-u0XwUyhLIu .label-text-2 {
  color: #ffffff;
}
.cid-u0XwUyhLIu .mbr-section-title {
  color: #ffffff;
}
.cid-u0XwUyhLIu .text-container {
  margin-top: 24px;
}
.cid-u0XwUyhLIu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0XwUyhLIu .mbr-text {
  color: #b79b6c;
}
.cid-u0XwUyhLIu .mbr-section-btn {
  margin-top: 28px;
}
.cid-u0XwUyhLIu .mbr-text,
.cid-u0XwUyhLIu .mbr-section-btn {
  color: #ffffff;
}
.cid-u0XwUyJDC5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u0XwUyJDC5 .col-title {
    margin-bottom: 20px;
  }
}
.cid-u0XwUyJDC5 .mbr-section-title {
  color: #000000;
}
.cid-u0XwUyJDC5 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u0XwUyJDC5 .mbr-text {
  color: #000000;
}
.cid-u0XwUz7fB2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u0XwUz7fB2 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u0XwUz7fB2 .mbr-text {
  color: #c1c1c1;
}
.cid-u0XDTnuwnd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u0XDTnuwnd nav.navbar {
  position: fixed;
}
.cid-u0XDTnuwnd .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-u0XDTnuwnd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0XDTnuwnd .dropdown-item:hover,
.cid-u0XDTnuwnd .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0XDTnuwnd .dropdown-item:hover span {
  color: white;
}
.cid-u0XDTnuwnd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0XDTnuwnd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0XDTnuwnd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0XDTnuwnd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0XDTnuwnd .nav-link {
  position: relative;
}
.cid-u0XDTnuwnd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0XDTnuwnd .container {
    flex-wrap: nowrap;
  }
}
.cid-u0XDTnuwnd .navbar-caption:hover,
.cid-u0XDTnuwnd .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u0XDTnuwnd .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u0XDTnuwnd .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u0XDTnuwnd .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u0XDTnuwnd .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u0XDTnuwnd .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u0XDTnuwnd .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u0XDTnuwnd .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u0XDTnuwnd .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u0XDTnuwnd .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0XDTnuwnd .dropdown-menu,
.cid-u0XDTnuwnd .navbar.opened {
  background: #ffffff !important;
}
.cid-u0XDTnuwnd .nav-item:focus,
.cid-u0XDTnuwnd .nav-link:focus {
  outline: none;
}
.cid-u0XDTnuwnd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0XDTnuwnd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0XDTnuwnd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0XDTnuwnd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0XDTnuwnd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0XDTnuwnd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0XDTnuwnd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u0XDTnuwnd .navbar.opened {
  transition: all 0.3s;
}
.cid-u0XDTnuwnd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0XDTnuwnd .navbar .navbar-logo img {
  width: auto;
}
.cid-u0XDTnuwnd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0XDTnuwnd .navbar.collapsed {
  justify-content: center;
}
.cid-u0XDTnuwnd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0XDTnuwnd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0XDTnuwnd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u0XDTnuwnd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0XDTnuwnd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0XDTnuwnd .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-u0XDTnuwnd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0XDTnuwnd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0XDTnuwnd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0XDTnuwnd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0XDTnuwnd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0XDTnuwnd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0XDTnuwnd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0XDTnuwnd .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-u0XDTnuwnd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0XDTnuwnd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0XDTnuwnd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0XDTnuwnd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0XDTnuwnd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0XDTnuwnd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u0XDTnuwnd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u0XDTnuwnd .navbar.navbar-short {
  min-height: 70px;
}
.cid-u0XDTnuwnd .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-u0XDTnuwnd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0XDTnuwnd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0XDTnuwnd .dropdown-item.active,
.cid-u0XDTnuwnd .dropdown-item:active {
  background-color: transparent;
}
.cid-u0XDTnuwnd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0XDTnuwnd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0XDTnuwnd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0XDTnuwnd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0XDTnuwnd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0XDTnuwnd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0XDTnuwnd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0XDTnuwnd .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u0XDTnuwnd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0XDTnuwnd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0XDTnuwnd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0XDTnuwnd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0XDTnuwnd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0XDTnuwnd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0XDTnuwnd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0XDTnuwnd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0XDTnuwnd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0XDTnuwnd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0XDTnuwnd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0XDTnuwnd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0XDTnuwnd .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-u0XDTnuwnd .navbar {
    height: 70px;
  }
  .cid-u0XDTnuwnd .navbar.opened {
    height: auto;
  }
  .cid-u0XDTnuwnd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0XDTnuwnd .container-fluid {
  padding: 0 1rem !important;
}
.cid-u0XDTnuwnd .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u0XDTnuwnd .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u0XDTnuwnd .navbar-collapse {
    width: 100%;
  }
  .cid-u0XDTnuwnd .navbar-nav {
    width: 100%;
  }
  .cid-u0XDTnuwnd .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u0XDTo96rg {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u0XDTo96rg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0XDTo96rg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u0XDTo96rg .col-content {
    text-align: center;
  }
}
.cid-u0XDTo96rg .label-container {
  margin-bottom: 16px;
}
.cid-u0XDTo96rg .label-text {
  color: #ffffff;
}
.cid-u0XDTo96rg .label-text-2 {
  color: #ffffff;
}
.cid-u0XDTo96rg .mbr-section-title {
  color: #ffffff;
}
.cid-u0XDTo96rg .text-container {
  margin-top: 24px;
}
.cid-u0XDTo96rg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0XDTo96rg .mbr-text {
  color: #b79b6c;
}
.cid-u0XDTo96rg .mbr-section-btn {
  margin-top: 28px;
}
.cid-u0XDTo96rg .mbr-text,
.cid-u0XDTo96rg .mbr-section-btn {
  color: #ffffff;
}
.cid-u0XE6FKvqP {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u0XE6FKvqP .container-fluid {
  padding: 0 3rem;
}
.cid-u0XE6FKvqP .mbr-section-subtitle {
  color: #212529;
  text-align: left;
}
.cid-u0XE6FKvqP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0XE6FKvqP .table-wrapper {
  margin: 0 auto;
}
.cid-u0XE6FKvqP table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u0XE6FKvqP table thead tr {
  border: none !important;
}
.cid-u0XE6FKvqP table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid #424242;
  color: black;
  vertical-align: middle;
}
.cid-u0XE6FKvqP table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-u0XE6FKvqP table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u0XE6FKvqP tr:hover {
  background-color: #ffff99 !important;
}
.cid-u0XE6FKvqP .head-item:after,
.cid-u0XE6FKvqP .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u0XE6FKvqP table th,
  .cid-u0XE6FKvqP table td {
    padding: .75rem;
  }
}
.cid-u0XE6FKvqP .body-item {
  text-align: left;
}
.cid-u0XE6FKvqP .head-item {
  text-align: left;
}
.cid-u0XE6FKvqP .mbr-text {
  color: #767676;
}
.cid-u0XE6FKvqP .mbr-section-title,
.cid-u0XE6FKvqP .underline {
  text-align: left;
}
.cid-u0XE6FKvqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0XE6FKvqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0XE6FKvqP .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u19gzh9qqa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u19gzh9qqa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19gzh9qqa .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-u19gzh9qqa .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-u19gzh9qqa .container {
    padding: 0 12px;
  }
}
.cid-u19gzh9qqa .row {
  justify-content: center;
}
.cid-u19gzh9qqa .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-u19gzh9qqa .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u19gzh9qqa .image-wrapper img {
    height: 350px;
  }
}
.cid-u0XDTr1n7U {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u0XDTr1n7U .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u0XDTr1n7U .mbr-text {
  color: #c1c1c1;
}
.cid-u19hep9Hur {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u19hep9Hur nav.navbar {
  position: fixed;
}
.cid-u19hep9Hur .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-u19hep9Hur .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u19hep9Hur .dropdown-item:hover,
.cid-u19hep9Hur .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u19hep9Hur .dropdown-item:hover span {
  color: white;
}
.cid-u19hep9Hur .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u19hep9Hur .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u19hep9Hur .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u19hep9Hur .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u19hep9Hur .nav-link {
  position: relative;
}
.cid-u19hep9Hur .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u19hep9Hur .container {
    flex-wrap: nowrap;
  }
}
.cid-u19hep9Hur .navbar-caption:hover,
.cid-u19hep9Hur .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u19hep9Hur .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u19hep9Hur .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u19hep9Hur .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u19hep9Hur .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u19hep9Hur .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u19hep9Hur .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u19hep9Hur .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u19hep9Hur .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u19hep9Hur .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u19hep9Hur .dropdown-menu,
.cid-u19hep9Hur .navbar.opened {
  background: #ffffff !important;
}
.cid-u19hep9Hur .nav-item:focus,
.cid-u19hep9Hur .nav-link:focus {
  outline: none;
}
.cid-u19hep9Hur .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u19hep9Hur .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u19hep9Hur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u19hep9Hur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u19hep9Hur .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u19hep9Hur .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u19hep9Hur .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u19hep9Hur .navbar.opened {
  transition: all 0.3s;
}
.cid-u19hep9Hur .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u19hep9Hur .navbar .navbar-logo img {
  width: auto;
}
.cid-u19hep9Hur .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u19hep9Hur .navbar.collapsed {
  justify-content: center;
}
.cid-u19hep9Hur .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u19hep9Hur .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u19hep9Hur .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u19hep9Hur .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u19hep9Hur .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u19hep9Hur .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-u19hep9Hur .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u19hep9Hur .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u19hep9Hur .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u19hep9Hur .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u19hep9Hur .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u19hep9Hur .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u19hep9Hur .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u19hep9Hur .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-u19hep9Hur .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u19hep9Hur .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u19hep9Hur .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u19hep9Hur .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u19hep9Hur .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u19hep9Hur .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u19hep9Hur .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u19hep9Hur .navbar.navbar-short {
  min-height: 70px;
}
.cid-u19hep9Hur .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-u19hep9Hur .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u19hep9Hur .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u19hep9Hur .dropdown-item.active,
.cid-u19hep9Hur .dropdown-item:active {
  background-color: transparent;
}
.cid-u19hep9Hur .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u19hep9Hur .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u19hep9Hur .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u19hep9Hur .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u19hep9Hur .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u19hep9Hur .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u19hep9Hur ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u19hep9Hur .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u19hep9Hur button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u19hep9Hur button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u19hep9Hur button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u19hep9Hur button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u19hep9Hur button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u19hep9Hur button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u19hep9Hur nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u19hep9Hur nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u19hep9Hur nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u19hep9Hur nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u19hep9Hur .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u19hep9Hur a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u19hep9Hur .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-u19hep9Hur .navbar {
    height: 70px;
  }
  .cid-u19hep9Hur .navbar.opened {
    height: auto;
  }
  .cid-u19hep9Hur .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u19hep9Hur .container-fluid {
  padding: 0 1rem !important;
}
.cid-u19hep9Hur .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u19hep9Hur .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u19hep9Hur .navbar-collapse {
    width: 100%;
  }
  .cid-u19hep9Hur .navbar-nav {
    width: 100%;
  }
  .cid-u19hep9Hur .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u19hepVcCN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u19hepVcCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19hepVcCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u19hepVcCN .col-content {
    text-align: center;
  }
}
.cid-u19hepVcCN .label-container {
  margin-bottom: 16px;
}
.cid-u19hepVcCN .label-text {
  color: #ffffff;
}
.cid-u19hepVcCN .label-text-2 {
  color: #ffffff;
}
.cid-u19hepVcCN .mbr-section-title {
  color: #ffffff;
}
.cid-u19hepVcCN .text-container {
  margin-top: 24px;
}
.cid-u19hepVcCN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u19hepVcCN .mbr-text {
  color: #b79b6c;
}
.cid-u19hepVcCN .mbr-section-btn {
  margin-top: 28px;
}
.cid-u19hepVcCN .mbr-text,
.cid-u19hepVcCN .mbr-section-btn {
  color: #ffffff;
}
.cid-u19heqQDgV {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u19heqQDgV .container-fluid {
  padding: 0 3rem;
}
.cid-u19heqQDgV .mbr-section-subtitle {
  color: #212529;
  text-align: left;
}
.cid-u19heqQDgV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u19heqQDgV .table-wrapper {
  margin: 0 auto;
}
.cid-u19heqQDgV table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u19heqQDgV table thead tr {
  border: none !important;
}
.cid-u19heqQDgV table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid #424242;
  color: black;
  vertical-align: middle;
}
.cid-u19heqQDgV table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-u19heqQDgV table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u19heqQDgV tr:hover {
  background-color: #ffff99 !important;
}
.cid-u19heqQDgV .head-item:after,
.cid-u19heqQDgV .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u19heqQDgV table th,
  .cid-u19heqQDgV table td {
    padding: .75rem;
  }
}
.cid-u19heqQDgV .body-item {
  text-align: left;
}
.cid-u19heqQDgV .head-item {
  text-align: left;
}
.cid-u19heqQDgV .mbr-text {
  color: #767676;
}
.cid-u19heqQDgV .mbr-section-title,
.cid-u19heqQDgV .underline {
  text-align: left;
}
.cid-u19heqQDgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19heqQDgV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u19heqQDgV .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u19hesmlnQ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u19hesmlnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19hesmlnQ .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-u19hesmlnQ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-u19hesmlnQ .container {
    padding: 0 12px;
  }
}
.cid-u19hesmlnQ .row {
  justify-content: center;
}
.cid-u19hesmlnQ .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-u19hesmlnQ .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u19hesmlnQ .image-wrapper img {
    height: 350px;
  }
}
.cid-u19hetlJFj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u19hetlJFj .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u19hetlJFj .mbr-text {
  color: #c1c1c1;
}
.cid-u19mrM7KNR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u19mrM7KNR nav.navbar {
  position: fixed;
}
.cid-u19mrM7KNR .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-u19mrM7KNR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u19mrM7KNR .dropdown-item:hover,
.cid-u19mrM7KNR .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u19mrM7KNR .dropdown-item:hover span {
  color: white;
}
.cid-u19mrM7KNR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u19mrM7KNR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u19mrM7KNR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u19mrM7KNR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u19mrM7KNR .nav-link {
  position: relative;
}
.cid-u19mrM7KNR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u19mrM7KNR .container {
    flex-wrap: nowrap;
  }
}
.cid-u19mrM7KNR .navbar-caption:hover,
.cid-u19mrM7KNR .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u19mrM7KNR .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u19mrM7KNR .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u19mrM7KNR .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u19mrM7KNR .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u19mrM7KNR .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u19mrM7KNR .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u19mrM7KNR .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u19mrM7KNR .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u19mrM7KNR .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u19mrM7KNR .dropdown-menu,
.cid-u19mrM7KNR .navbar.opened {
  background: #ffffff !important;
}
.cid-u19mrM7KNR .nav-item:focus,
.cid-u19mrM7KNR .nav-link:focus {
  outline: none;
}
.cid-u19mrM7KNR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u19mrM7KNR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u19mrM7KNR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u19mrM7KNR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u19mrM7KNR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u19mrM7KNR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u19mrM7KNR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u19mrM7KNR .navbar.opened {
  transition: all 0.3s;
}
.cid-u19mrM7KNR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u19mrM7KNR .navbar .navbar-logo img {
  width: auto;
}
.cid-u19mrM7KNR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u19mrM7KNR .navbar.collapsed {
  justify-content: center;
}
.cid-u19mrM7KNR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u19mrM7KNR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u19mrM7KNR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u19mrM7KNR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u19mrM7KNR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u19mrM7KNR .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-u19mrM7KNR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u19mrM7KNR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u19mrM7KNR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u19mrM7KNR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u19mrM7KNR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u19mrM7KNR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u19mrM7KNR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u19mrM7KNR .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-u19mrM7KNR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u19mrM7KNR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u19mrM7KNR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u19mrM7KNR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u19mrM7KNR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u19mrM7KNR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u19mrM7KNR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u19mrM7KNR .navbar.navbar-short {
  min-height: 70px;
}
.cid-u19mrM7KNR .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-u19mrM7KNR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u19mrM7KNR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u19mrM7KNR .dropdown-item.active,
.cid-u19mrM7KNR .dropdown-item:active {
  background-color: transparent;
}
.cid-u19mrM7KNR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u19mrM7KNR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u19mrM7KNR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u19mrM7KNR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u19mrM7KNR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u19mrM7KNR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u19mrM7KNR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u19mrM7KNR .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u19mrM7KNR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u19mrM7KNR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u19mrM7KNR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u19mrM7KNR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u19mrM7KNR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u19mrM7KNR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u19mrM7KNR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u19mrM7KNR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u19mrM7KNR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u19mrM7KNR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u19mrM7KNR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u19mrM7KNR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u19mrM7KNR .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-u19mrM7KNR .navbar {
    height: 70px;
  }
  .cid-u19mrM7KNR .navbar.opened {
    height: auto;
  }
  .cid-u19mrM7KNR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u19mrM7KNR .container-fluid {
  padding: 0 1rem !important;
}
.cid-u19mrM7KNR .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u19mrM7KNR .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u19mrM7KNR .navbar-collapse {
    width: 100%;
  }
  .cid-u19mrM7KNR .navbar-nav {
    width: 100%;
  }
  .cid-u19mrM7KNR .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1m6OSXeMh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1m6OSXeMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m6OSXeMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1m6OSXeMh .col-content {
    text-align: center;
  }
}
.cid-u1m6OSXeMh .label-container {
  margin-bottom: 16px;
}
.cid-u1m6OSXeMh .label-text {
  color: #ffffff;
}
.cid-u1m6OSXeMh .label-text-2 {
  color: #ffffff;
}
.cid-u1m6OSXeMh .mbr-section-title {
  color: #ffffff;
}
.cid-u1m6OSXeMh .text-container {
  margin-top: 24px;
}
.cid-u1m6OSXeMh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1m6OSXeMh .mbr-text {
  color: #b79b6c;
}
.cid-u1m6OSXeMh .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1m6OSXeMh .mbr-text,
.cid-u1m6OSXeMh .mbr-section-btn {
  color: #ffffff;
}
.cid-u1l6LOPHdV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1l6LOPHdV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l6LOPHdV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l6LOPHdV .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1l6LOPHdV .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1l6LOPHdV .mbr-text,
.cid-u1l6LOPHdV .mbr-section-btn {
  color: #232323;
}
.cid-u1l6LOPHdV .mbr-section-title,
.cid-u1l6LOPHdV .line {
  color: #232323;
}
.cid-u1l6LOPHdV h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1l6LOPHdV h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1l6LOPHdV .mbr-section-subtitle,
.cid-u1l6LOPHdV .align {
  text-align: left;
  color: #232323;
}
.cid-u19mrP9qyA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u19mrP9qyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19mrP9qyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u19mrP9qyA .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u19mrP9qyA .mbr-section-title {
  color: #24262b;
}
.cid-u19mrP9qyA .mbr-section-subtitle {
  color: #24262b;
}
.cid-u19mrP9qyA .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u19mrP9qyA .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u19mrP9qyA .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u19mrP9qyA .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u19mrP9qyA .card-subtitle {
  color: #24262b;
}
.cid-u19mrP9qyA .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u19mrP9qyA .mbr-section-btn {
  margin-top: 20px;
}
.cid-u19mrP9qyA .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u19mrP9qyA .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1l5lF4F31 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1l5lF4F31 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l5lF4F31 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l5lF4F31 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1l5lF4F31 .mbr-section-title {
  color: #24262b;
}
.cid-u1l5lF4F31 .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1l5lF4F31 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1l5lF4F31 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1l5lF4F31 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1l5lF4F31 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1l5lF4F31 .card-subtitle {
  color: #24262b;
}
.cid-u1l5lF4F31 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1l5lF4F31 .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1l5lF4F31 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1l5lF4F31 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1l5ZgKawb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1l5ZgKawb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l5ZgKawb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l5ZgKawb .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1l5ZgKawb .mbr-section-title {
  color: #24262b;
}
.cid-u1l5ZgKawb .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1l5ZgKawb .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1l5ZgKawb .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1l5ZgKawb .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1l5ZgKawb .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1l5ZgKawb .card-subtitle {
  color: #24262b;
}
.cid-u1l5ZgKawb .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1l5ZgKawb .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1l5ZgKawb .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1l5ZgKawb .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-ufZkiGliu1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ufZkiGliu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufZkiGliu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufZkiGliu1 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ufZkiGliu1 .mbr-section-title {
  color: #24262b;
}
.cid-ufZkiGliu1 .mbr-section-subtitle {
  color: #24262b;
}
.cid-ufZkiGliu1 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-ufZkiGliu1 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-ufZkiGliu1 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-ufZkiGliu1 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-ufZkiGliu1 .card-subtitle {
  color: #24262b;
}
.cid-ufZkiGliu1 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-ufZkiGliu1 .mbr-section-btn {
  margin-top: 20px;
}
.cid-ufZkiGliu1 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-ufZkiGliu1 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1l70WQAZ7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1l70WQAZ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l70WQAZ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l70WQAZ7 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1l70WQAZ7 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1l70WQAZ7 .mbr-text,
.cid-u1l70WQAZ7 .mbr-section-btn {
  color: #232323;
}
.cid-u1l70WQAZ7 .mbr-section-title,
.cid-u1l70WQAZ7 .line {
  color: #232323;
}
.cid-u1l70WQAZ7 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1l70WQAZ7 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1l70WQAZ7 .mbr-section-subtitle,
.cid-u1l70WQAZ7 .align {
  text-align: left;
  color: #232323;
}
.cid-u1l76EXhnV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1l76EXhnV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l76EXhnV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l76EXhnV .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1l76EXhnV .mbr-section-title {
  color: #24262b;
}
.cid-u1l76EXhnV .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1l76EXhnV .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1l76EXhnV .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1l76EXhnV .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1l76EXhnV .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1l76EXhnV .card-subtitle {
  color: #24262b;
}
.cid-u1l76EXhnV .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1l76EXhnV .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1l76EXhnV .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1l76EXhnV .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1l9f4Spli {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1l9f4Spli .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l9f4Spli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l9f4Spli .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1l9f4Spli .mbr-section-title {
  color: #24262b;
}
.cid-u1l9f4Spli .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1l9f4Spli .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1l9f4Spli .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1l9f4Spli .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1l9f4Spli .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1l9f4Spli .card-subtitle {
  color: #24262b;
}
.cid-u1l9f4Spli .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1l9f4Spli .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1l9f4Spli .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1l9f4Spli .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1l9D7VrwT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1l9D7VrwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l9D7VrwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l9D7VrwT .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1l9D7VrwT .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1l9D7VrwT .mbr-text,
.cid-u1l9D7VrwT .mbr-section-btn {
  color: #232323;
}
.cid-u1l9D7VrwT .mbr-section-title,
.cid-u1l9D7VrwT .line {
  color: #232323;
}
.cid-u1l9D7VrwT h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1l9D7VrwT h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1l9D7VrwT .mbr-section-subtitle,
.cid-u1l9D7VrwT .align {
  text-align: left;
  color: #232323;
}
.cid-u1l9GIKN3d {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1l9GIKN3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1l9GIKN3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1l9GIKN3d .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1l9GIKN3d .mbr-section-title {
  color: #24262b;
}
.cid-u1l9GIKN3d .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1l9GIKN3d .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1l9GIKN3d .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1l9GIKN3d .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1l9GIKN3d .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1l9GIKN3d .card-subtitle {
  color: #24262b;
}
.cid-u1l9GIKN3d .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1l9GIKN3d .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1l9GIKN3d .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1l9GIKN3d .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1laaZrR5v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1laaZrR5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1laaZrR5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1laaZrR5v .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1laaZrR5v .mbr-section-title {
  color: #24262b;
}
.cid-u1laaZrR5v .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1laaZrR5v .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1laaZrR5v .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1laaZrR5v .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1laaZrR5v .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1laaZrR5v .card-subtitle {
  color: #24262b;
}
.cid-u1laaZrR5v .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1laaZrR5v .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1laaZrR5v .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1laaZrR5v .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uTzeM6wjsy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uTzeM6wjsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTzeM6wjsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTzeM6wjsy .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uTzeM6wjsy .mbr-section-title {
  color: #24262b;
}
.cid-uTzeM6wjsy .mbr-section-subtitle {
  color: #24262b;
}
.cid-uTzeM6wjsy .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uTzeM6wjsy .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uTzeM6wjsy .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uTzeM6wjsy .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uTzeM6wjsy .card-subtitle {
  color: #24262b;
}
.cid-uTzeM6wjsy .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uTzeM6wjsy .mbr-section-btn {
  margin-top: 20px;
}
.cid-uTzeM6wjsy .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uTzeM6wjsy .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1lb2cgW3p {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1lb2cgW3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1lb2cgW3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1lb2cgW3p .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1lb2cgW3p .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1lb2cgW3p .mbr-text,
.cid-u1lb2cgW3p .mbr-section-btn {
  color: #232323;
}
.cid-u1lb2cgW3p .mbr-section-title,
.cid-u1lb2cgW3p .line {
  color: #232323;
}
.cid-u1lb2cgW3p h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1lb2cgW3p h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1lb2cgW3p .mbr-section-subtitle,
.cid-u1lb2cgW3p .align {
  text-align: left;
  color: #232323;
}
.cid-u1laYNMIkn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1laYNMIkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1laYNMIkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1laYNMIkn .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1laYNMIkn .mbr-section-title {
  color: #24262b;
}
.cid-u1laYNMIkn .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1laYNMIkn .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1laYNMIkn .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1laYNMIkn .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1laYNMIkn .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1laYNMIkn .card-subtitle {
  color: #24262b;
}
.cid-u1laYNMIkn .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1laYNMIkn .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1laYNMIkn .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1laYNMIkn .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1lbwhL4TC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1lbwhL4TC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1lbwhL4TC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1lbwhL4TC .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1lbwhL4TC .mbr-section-title {
  color: #24262b;
}
.cid-u1lbwhL4TC .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1lbwhL4TC .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1lbwhL4TC .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1lbwhL4TC .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1lbwhL4TC .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1lbwhL4TC .card-subtitle {
  color: #24262b;
}
.cid-u1lbwhL4TC .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1lbwhL4TC .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1lbwhL4TC .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1lbwhL4TC .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1le6N3nFy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1le6N3nFy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1le6N3nFy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1le6N3nFy .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1le6N3nFy .mbr-section-title {
  color: #24262b;
}
.cid-u1le6N3nFy .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1le6N3nFy .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1le6N3nFy .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1le6N3nFy .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1le6N3nFy .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1le6N3nFy .card-subtitle {
  color: #24262b;
}
.cid-u1le6N3nFy .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1le6N3nFy .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1le6N3nFy .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1le6N3nFy .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1lez4UMMp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1lez4UMMp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1lez4UMMp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1lez4UMMp .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1lez4UMMp .mbr-section-title {
  color: #24262b;
}
.cid-u1lez4UMMp .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1lez4UMMp .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1lez4UMMp .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1lez4UMMp .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1lez4UMMp .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1lez4UMMp .card-subtitle {
  color: #24262b;
}
.cid-u1lez4UMMp .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1lez4UMMp .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1lez4UMMp .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1lez4UMMp .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1lYYDNXui {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1lYYDNXui .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1lYYDNXui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1lYYDNXui .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1lYYDNXui .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1lYYDNXui .mbr-text,
.cid-u1lYYDNXui .mbr-section-btn {
  color: #232323;
}
.cid-u1lYYDNXui .mbr-section-title,
.cid-u1lYYDNXui .line {
  color: #232323;
}
.cid-u1lYYDNXui h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1lYYDNXui h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1lYYDNXui .mbr-section-subtitle,
.cid-u1lYYDNXui .align {
  text-align: left;
  color: #232323;
}
.cid-u1lYQPQSuN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1lYQPQSuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1lYQPQSuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1lYQPQSuN .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1lYQPQSuN .mbr-section-title {
  color: #24262b;
}
.cid-u1lYQPQSuN .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1lYQPQSuN .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1lYQPQSuN .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1lYQPQSuN .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1lYQPQSuN .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1lYQPQSuN .card-subtitle {
  color: #24262b;
}
.cid-u1lYQPQSuN .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1lYQPQSuN .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1lYQPQSuN .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1lYQPQSuN .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1lZNoO99R {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1lZNoO99R .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1lZNoO99R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1lZNoO99R .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1lZNoO99R .mbr-section-title {
  color: #24262b;
}
.cid-u1lZNoO99R .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1lZNoO99R .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1lZNoO99R .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1lZNoO99R .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1lZNoO99R .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1lZNoO99R .card-subtitle {
  color: #24262b;
}
.cid-u1lZNoO99R .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1lZNoO99R .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1lZNoO99R .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1lZNoO99R .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1m0grF8cv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1m0grF8cv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m0grF8cv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m0grF8cv .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1m0grF8cv .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1m0grF8cv .mbr-text,
.cid-u1m0grF8cv .mbr-section-btn {
  color: #232323;
}
.cid-u1m0grF8cv .mbr-section-title,
.cid-u1m0grF8cv .line {
  color: #232323;
}
.cid-u1m0grF8cv h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1m0grF8cv h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1m0grF8cv .mbr-section-subtitle,
.cid-u1m0grF8cv .align {
  text-align: left;
  color: #232323;
}
.cid-uvEmuMnnyJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uvEmuMnnyJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvEmuMnnyJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvEmuMnnyJ .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uvEmuMnnyJ .mbr-section-title {
  color: #24262b;
}
.cid-uvEmuMnnyJ .mbr-section-subtitle {
  color: #24262b;
}
.cid-uvEmuMnnyJ .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uvEmuMnnyJ .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uvEmuMnnyJ .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uvEmuMnnyJ .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uvEmuMnnyJ .card-subtitle {
  color: #24262b;
}
.cid-uvEmuMnnyJ .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uvEmuMnnyJ .mbr-section-btn {
  margin-top: 20px;
}
.cid-uvEmuMnnyJ .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uvEmuMnnyJ .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-ui3TVWIrjP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui3TVWIrjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui3TVWIrjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui3TVWIrjP .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ui3TVWIrjP .mbr-section-title {
  color: #24262b;
}
.cid-ui3TVWIrjP .mbr-section-subtitle {
  color: #24262b;
}
.cid-ui3TVWIrjP .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-ui3TVWIrjP .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-ui3TVWIrjP .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-ui3TVWIrjP .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-ui3TVWIrjP .card-subtitle {
  color: #24262b;
}
.cid-ui3TVWIrjP .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-ui3TVWIrjP .mbr-section-btn {
  margin-top: 20px;
}
.cid-ui3TVWIrjP .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-ui3TVWIrjP .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1m0jzzCH6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1m0jzzCH6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m0jzzCH6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m0jzzCH6 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1m0jzzCH6 .mbr-section-title {
  color: #24262b;
}
.cid-u1m0jzzCH6 .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1m0jzzCH6 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1m0jzzCH6 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1m0jzzCH6 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1m0jzzCH6 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1m0jzzCH6 .card-subtitle {
  color: #24262b;
}
.cid-u1m0jzzCH6 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1m0jzzCH6 .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1m0jzzCH6 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1m0jzzCH6 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1m27MR9lX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1m27MR9lX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m27MR9lX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m27MR9lX .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1m27MR9lX .mbr-section-title {
  color: #24262b;
}
.cid-u1m27MR9lX .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1m27MR9lX .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1m27MR9lX .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1m27MR9lX .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1m27MR9lX .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1m27MR9lX .card-subtitle {
  color: #24262b;
}
.cid-u1m27MR9lX .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1m27MR9lX .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1m27MR9lX .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1m27MR9lX .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1m2KIv08o {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1m2KIv08o .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m2KIv08o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m2KIv08o .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1m2KIv08o .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1m2KIv08o .mbr-text,
.cid-u1m2KIv08o .mbr-section-btn {
  color: #232323;
}
.cid-u1m2KIv08o .mbr-section-title,
.cid-u1m2KIv08o .line {
  color: #232323;
}
.cid-u1m2KIv08o h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1m2KIv08o h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1m2KIv08o .mbr-section-subtitle,
.cid-u1m2KIv08o .align {
  text-align: left;
  color: #232323;
}
.cid-u1m2It32T0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1m2It32T0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m2It32T0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m2It32T0 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1m2It32T0 .mbr-section-title {
  color: #24262b;
}
.cid-u1m2It32T0 .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1m2It32T0 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1m2It32T0 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1m2It32T0 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1m2It32T0 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1m2It32T0 .card-subtitle {
  color: #24262b;
}
.cid-u1m2It32T0 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1m2It32T0 .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1m2It32T0 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1m2It32T0 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1m3HwJhM4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1m3HwJhM4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m3HwJhM4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m3HwJhM4 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1m3HwJhM4 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1m3HwJhM4 .mbr-text,
.cid-u1m3HwJhM4 .mbr-section-btn {
  color: #232323;
}
.cid-u1m3HwJhM4 .mbr-section-title,
.cid-u1m3HwJhM4 .line {
  color: #232323;
}
.cid-u1m3HwJhM4 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1m3HwJhM4 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1m3HwJhM4 .mbr-section-subtitle,
.cid-u1m3HwJhM4 .align {
  text-align: left;
  color: #232323;
}
.cid-u1m3O4x5Is {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1m3O4x5Is .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m3O4x5Is .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m3O4x5Is .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u1m3O4x5Is .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u1m3O4x5Is .mbr-text,
.cid-u1m3O4x5Is .mbr-section-btn {
  color: #232323;
}
.cid-u1m3O4x5Is .mbr-section-title,
.cid-u1m3O4x5Is .line {
  color: #232323;
}
.cid-u1m3O4x5Is h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u1m3O4x5Is h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u1m3O4x5Is .mbr-section-subtitle,
.cid-u1m3O4x5Is .align {
  text-align: left;
  color: #232323;
}
.cid-u1m3PO3tbl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1m3PO3tbl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m3PO3tbl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m3PO3tbl .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u1m3PO3tbl .mbr-section-title {
  color: #24262b;
}
.cid-u1m3PO3tbl .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1m3PO3tbl .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-u1m3PO3tbl .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-u1m3PO3tbl .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-u1m3PO3tbl .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-u1m3PO3tbl .card-subtitle {
  color: #24262b;
}
.cid-u1m3PO3tbl .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-u1m3PO3tbl .mbr-section-btn {
  margin-top: 20px;
}
.cid-u1m3PO3tbl .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-u1m3PO3tbl .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1m4Lily32 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1m4Lily32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m4Lily32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1m4Lily32 .mbr-section-title {
  color: #24262b;
}
.cid-u1m4Lily32 .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1m4Lily32 .mbr-section-btn {
  margin-top: 16px;
}
.cid-u19mrTbYnx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u19mrTbYnx .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u19mrTbYnx .mbr-text {
  color: #c1c1c1;
}
.cid-u1m7LgrGTH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1m7LgrGTH nav.navbar {
  position: fixed;
}
.cid-u1m7LgrGTH .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-u1m7LgrGTH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1m7LgrGTH .dropdown-item:hover,
.cid-u1m7LgrGTH .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1m7LgrGTH .dropdown-item:hover span {
  color: white;
}
.cid-u1m7LgrGTH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1m7LgrGTH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1m7LgrGTH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1m7LgrGTH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1m7LgrGTH .nav-link {
  position: relative;
}
.cid-u1m7LgrGTH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1m7LgrGTH .container {
    flex-wrap: nowrap;
  }
}
.cid-u1m7LgrGTH .navbar-caption:hover,
.cid-u1m7LgrGTH .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1m7LgrGTH .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1m7LgrGTH .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1m7LgrGTH .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1m7LgrGTH .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1m7LgrGTH .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1m7LgrGTH .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1m7LgrGTH .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1m7LgrGTH .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1m7LgrGTH .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1m7LgrGTH .dropdown-menu,
.cid-u1m7LgrGTH .navbar.opened {
  background: #ffffff !important;
}
.cid-u1m7LgrGTH .nav-item:focus,
.cid-u1m7LgrGTH .nav-link:focus {
  outline: none;
}
.cid-u1m7LgrGTH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1m7LgrGTH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1m7LgrGTH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1m7LgrGTH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1m7LgrGTH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1m7LgrGTH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1m7LgrGTH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1m7LgrGTH .navbar.opened {
  transition: all 0.3s;
}
.cid-u1m7LgrGTH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1m7LgrGTH .navbar .navbar-logo img {
  width: auto;
}
.cid-u1m7LgrGTH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1m7LgrGTH .navbar.collapsed {
  justify-content: center;
}
.cid-u1m7LgrGTH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1m7LgrGTH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1m7LgrGTH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1m7LgrGTH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1m7LgrGTH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1m7LgrGTH .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-u1m7LgrGTH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1m7LgrGTH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1m7LgrGTH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1m7LgrGTH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1m7LgrGTH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1m7LgrGTH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1m7LgrGTH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1m7LgrGTH .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-u1m7LgrGTH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1m7LgrGTH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1m7LgrGTH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1m7LgrGTH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1m7LgrGTH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1m7LgrGTH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1m7LgrGTH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1m7LgrGTH .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1m7LgrGTH .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-u1m7LgrGTH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1m7LgrGTH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1m7LgrGTH .dropdown-item.active,
.cid-u1m7LgrGTH .dropdown-item:active {
  background-color: transparent;
}
.cid-u1m7LgrGTH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1m7LgrGTH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1m7LgrGTH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1m7LgrGTH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1m7LgrGTH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1m7LgrGTH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1m7LgrGTH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1m7LgrGTH .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1m7LgrGTH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1m7LgrGTH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1m7LgrGTH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1m7LgrGTH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1m7LgrGTH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1m7LgrGTH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1m7LgrGTH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1m7LgrGTH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1m7LgrGTH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1m7LgrGTH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1m7LgrGTH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1m7LgrGTH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1m7LgrGTH .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-u1m7LgrGTH .navbar {
    height: 70px;
  }
  .cid-u1m7LgrGTH .navbar.opened {
    height: auto;
  }
  .cid-u1m7LgrGTH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1m7LgrGTH .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1m7LgrGTH .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1m7LgrGTH .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1m7LgrGTH .navbar-collapse {
    width: 100%;
  }
  .cid-u1m7LgrGTH .navbar-nav {
    width: 100%;
  }
  .cid-u1m7LgrGTH .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1m7Lh4Soe {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1m7Lh4Soe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m7Lh4Soe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1m7Lh4Soe .col-content {
    text-align: center;
  }
}
.cid-u1m7Lh4Soe .label-container {
  margin-bottom: 16px;
}
.cid-u1m7Lh4Soe .label-text {
  color: #ffffff;
}
.cid-u1m7Lh4Soe .label-text-2 {
  color: #ffffff;
}
.cid-u1m7Lh4Soe .mbr-section-title {
  color: #ffffff;
}
.cid-u1m7Lh4Soe .text-container {
  margin-top: 24px;
}
.cid-u1m7Lh4Soe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1m7Lh4Soe .mbr-text {
  color: #b79b6c;
}
.cid-u1m7Lh4Soe .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1m7Lh4Soe .mbr-text,
.cid-u1m7Lh4Soe .mbr-section-btn {
  color: #ffffff;
}
.cid-u1m7LhxTrE {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1m7LhxTrE .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1m7LhxTrE .mbr-section-title {
  color: #000000;
}
.cid-u1m7LhxTrE .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1m7LhxTrE .mbr-text {
  color: #000000;
}
.cid-u1m87ceKiC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u1m87ceKiC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1m87ceKiC .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-u1m87ceKiC .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-u1m87ceKiC .container {
    padding: 0 12px;
  }
}
.cid-u1m87ceKiC .row {
  justify-content: center;
}
.cid-u1m87ceKiC .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-u1m87ceKiC .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u1m87ceKiC .image-wrapper img {
    height: 350px;
  }
}
.cid-u1m87RCOt6 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1m87RCOt6 .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1m87RCOt6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u1m87RCOt6 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1m87RCOt6 .mbr-text {
  color: #000000;
}
.cid-u1m9yBCo98 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1m9yBCo98 .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1m9yBCo98 .mbr-section-title {
  color: #000000;
}
.cid-u1m9yBCo98 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u1m9yBCo98 .mbr-text {
  color: #000000;
}
.cid-u1m9yBCo98 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u1m9yBCo98 p {
  line-height: 1.2;
}
.cid-u1m9yBCo98 .mbr-text1 {
  color: #000000;
}
.cid-u1m9yBCo98 .mbr-text2 {
  color: #212529;
}
.cid-u1m9yBCo98 .mbr-text3 {
  color: #000000;
}
.cid-u1m7LhSF8T {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1m7LhSF8T .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1m7LhSF8T .mbr-text {
  color: #c1c1c1;
}
.cid-u1maUBhI3z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1maUBhI3z nav.navbar {
  position: fixed;
}
.cid-u1maUBhI3z .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-u1maUBhI3z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1maUBhI3z .dropdown-item:hover,
.cid-u1maUBhI3z .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1maUBhI3z .dropdown-item:hover span {
  color: white;
}
.cid-u1maUBhI3z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1maUBhI3z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1maUBhI3z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1maUBhI3z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1maUBhI3z .nav-link {
  position: relative;
}
.cid-u1maUBhI3z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1maUBhI3z .container {
    flex-wrap: nowrap;
  }
}
.cid-u1maUBhI3z .navbar-caption:hover,
.cid-u1maUBhI3z .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1maUBhI3z .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1maUBhI3z .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1maUBhI3z .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1maUBhI3z .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1maUBhI3z .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1maUBhI3z .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1maUBhI3z .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1maUBhI3z .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1maUBhI3z .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1maUBhI3z .dropdown-menu,
.cid-u1maUBhI3z .navbar.opened {
  background: #ffffff !important;
}
.cid-u1maUBhI3z .nav-item:focus,
.cid-u1maUBhI3z .nav-link:focus {
  outline: none;
}
.cid-u1maUBhI3z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1maUBhI3z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1maUBhI3z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1maUBhI3z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1maUBhI3z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1maUBhI3z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1maUBhI3z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1maUBhI3z .navbar.opened {
  transition: all 0.3s;
}
.cid-u1maUBhI3z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1maUBhI3z .navbar .navbar-logo img {
  width: auto;
}
.cid-u1maUBhI3z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1maUBhI3z .navbar.collapsed {
  justify-content: center;
}
.cid-u1maUBhI3z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1maUBhI3z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1maUBhI3z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1maUBhI3z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1maUBhI3z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1maUBhI3z .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-u1maUBhI3z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1maUBhI3z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1maUBhI3z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1maUBhI3z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1maUBhI3z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1maUBhI3z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1maUBhI3z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1maUBhI3z .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-u1maUBhI3z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1maUBhI3z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1maUBhI3z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1maUBhI3z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1maUBhI3z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1maUBhI3z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1maUBhI3z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1maUBhI3z .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1maUBhI3z .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-u1maUBhI3z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1maUBhI3z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1maUBhI3z .dropdown-item.active,
.cid-u1maUBhI3z .dropdown-item:active {
  background-color: transparent;
}
.cid-u1maUBhI3z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1maUBhI3z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1maUBhI3z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1maUBhI3z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1maUBhI3z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1maUBhI3z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1maUBhI3z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1maUBhI3z .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1maUBhI3z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1maUBhI3z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1maUBhI3z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1maUBhI3z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1maUBhI3z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1maUBhI3z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1maUBhI3z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1maUBhI3z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1maUBhI3z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1maUBhI3z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1maUBhI3z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1maUBhI3z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1maUBhI3z .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-u1maUBhI3z .navbar {
    height: 70px;
  }
  .cid-u1maUBhI3z .navbar.opened {
    height: auto;
  }
  .cid-u1maUBhI3z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1maUBhI3z .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1maUBhI3z .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1maUBhI3z .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1maUBhI3z .navbar-collapse {
    width: 100%;
  }
  .cid-u1maUBhI3z .navbar-nav {
    width: 100%;
  }
  .cid-u1maUBhI3z .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1maUBXGwQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1maUBXGwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1maUBXGwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1maUBXGwQ .col-content {
    text-align: center;
  }
}
.cid-u1maUBXGwQ .label-container {
  margin-bottom: 16px;
}
.cid-u1maUBXGwQ .label-text {
  color: #ffffff;
}
.cid-u1maUBXGwQ .label-text-2 {
  color: #ffffff;
}
.cid-u1maUBXGwQ .mbr-section-title {
  color: #ffffff;
}
.cid-u1maUBXGwQ .text-container {
  margin-top: 24px;
}
.cid-u1maUBXGwQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1maUBXGwQ .mbr-text {
  color: #b79b6c;
}
.cid-u1maUBXGwQ .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1maUBXGwQ .mbr-text,
.cid-u1maUBXGwQ .mbr-section-btn {
  color: #ffffff;
}
.cid-u1mb4wszZU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1mb4wszZU .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1mb4wszZU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u1mb4wszZU .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1mb4wszZU .mbr-text {
  color: #000000;
}
.cid-u1maUElGqV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1maUElGqV .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1maUElGqV .mbr-text {
  color: #c1c1c1;
}
.cid-u1mc9mWx5E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1mc9mWx5E nav.navbar {
  position: fixed;
}
.cid-u1mc9mWx5E .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-u1mc9mWx5E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1mc9mWx5E .dropdown-item:hover,
.cid-u1mc9mWx5E .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1mc9mWx5E .dropdown-item:hover span {
  color: white;
}
.cid-u1mc9mWx5E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1mc9mWx5E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1mc9mWx5E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1mc9mWx5E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1mc9mWx5E .nav-link {
  position: relative;
}
.cid-u1mc9mWx5E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1mc9mWx5E .container {
    flex-wrap: nowrap;
  }
}
.cid-u1mc9mWx5E .navbar-caption:hover,
.cid-u1mc9mWx5E .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1mc9mWx5E .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1mc9mWx5E .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1mc9mWx5E .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1mc9mWx5E .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1mc9mWx5E .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1mc9mWx5E .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1mc9mWx5E .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1mc9mWx5E .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1mc9mWx5E .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1mc9mWx5E .dropdown-menu,
.cid-u1mc9mWx5E .navbar.opened {
  background: #ffffff !important;
}
.cid-u1mc9mWx5E .nav-item:focus,
.cid-u1mc9mWx5E .nav-link:focus {
  outline: none;
}
.cid-u1mc9mWx5E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1mc9mWx5E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1mc9mWx5E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1mc9mWx5E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1mc9mWx5E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1mc9mWx5E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1mc9mWx5E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1mc9mWx5E .navbar.opened {
  transition: all 0.3s;
}
.cid-u1mc9mWx5E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1mc9mWx5E .navbar .navbar-logo img {
  width: auto;
}
.cid-u1mc9mWx5E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1mc9mWx5E .navbar.collapsed {
  justify-content: center;
}
.cid-u1mc9mWx5E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1mc9mWx5E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1mc9mWx5E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1mc9mWx5E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1mc9mWx5E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1mc9mWx5E .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-u1mc9mWx5E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1mc9mWx5E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1mc9mWx5E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1mc9mWx5E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1mc9mWx5E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1mc9mWx5E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1mc9mWx5E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1mc9mWx5E .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-u1mc9mWx5E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1mc9mWx5E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1mc9mWx5E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1mc9mWx5E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1mc9mWx5E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1mc9mWx5E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1mc9mWx5E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1mc9mWx5E .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1mc9mWx5E .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-u1mc9mWx5E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1mc9mWx5E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1mc9mWx5E .dropdown-item.active,
.cid-u1mc9mWx5E .dropdown-item:active {
  background-color: transparent;
}
.cid-u1mc9mWx5E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1mc9mWx5E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1mc9mWx5E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1mc9mWx5E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1mc9mWx5E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1mc9mWx5E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1mc9mWx5E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1mc9mWx5E .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1mc9mWx5E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1mc9mWx5E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1mc9mWx5E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1mc9mWx5E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1mc9mWx5E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1mc9mWx5E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1mc9mWx5E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1mc9mWx5E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1mc9mWx5E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1mc9mWx5E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1mc9mWx5E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1mc9mWx5E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1mc9mWx5E .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-u1mc9mWx5E .navbar {
    height: 70px;
  }
  .cid-u1mc9mWx5E .navbar.opened {
    height: auto;
  }
  .cid-u1mc9mWx5E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1mc9mWx5E .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1mc9mWx5E .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1mc9mWx5E .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1mc9mWx5E .navbar-collapse {
    width: 100%;
  }
  .cid-u1mc9mWx5E .navbar-nav {
    width: 100%;
  }
  .cid-u1mc9mWx5E .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1mc9nBhEc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1mc9nBhEc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1mc9nBhEc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1mc9nBhEc .col-content {
    text-align: center;
  }
}
.cid-u1mc9nBhEc .label-container {
  margin-bottom: 16px;
}
.cid-u1mc9nBhEc .label-text {
  color: #ffffff;
}
.cid-u1mc9nBhEc .label-text-2 {
  color: #ffffff;
}
.cid-u1mc9nBhEc .mbr-section-title {
  color: #ffffff;
}
.cid-u1mc9nBhEc .text-container {
  margin-top: 24px;
}
.cid-u1mc9nBhEc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1mc9nBhEc .mbr-text {
  color: #b79b6c;
}
.cid-u1mc9nBhEc .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1mc9nBhEc .mbr-text,
.cid-u1mc9nBhEc .mbr-section-btn {
  color: #ffffff;
}
.cid-u1mc9ocq1R {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1mc9ocq1R .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1mc9ocq1R .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u1mc9ocq1R .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1mc9ocq1R .mbr-text {
  color: #000000;
}
.cid-u1mcqu0o4C {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1mcqu0o4C .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1mcqu0o4C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1mcqu0o4C .col-title {
  margin-bottom: 32px;
}
.cid-u1mcqu0o4C .mbr-section-title {
  color: #24262b;
}
.cid-u1mcqu0o4C .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1mcqu0o4C .cars-row {
  row-gap: 32px;
}
.cid-u1mcqu0o4C .card {
  border-radius: 0;
}
.cid-u1mcqu0o4C .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-u1mcqu0o4C .text-wrap {
  flex-grow: 1;
}
.cid-u1mcqu0o4C .card-title {
  color: #24262b;
}
.cid-u1mcqu0o4C .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-u1mcqu0o4C .mbr-section-btn {
  margin-top: 12px;
}
.cid-u1mecGJWvL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1mecGJWvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1mecGJWvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1mecGJWvL .col-title {
  margin-bottom: 32px;
}
.cid-u1mecGJWvL .mbr-section-title {
  color: #24262b;
}
.cid-u1mecGJWvL .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1mecGJWvL .cars-row {
  row-gap: 32px;
}
.cid-u1mecGJWvL .card {
  border-radius: 0;
}
.cid-u1mecGJWvL .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-u1mecGJWvL .text-wrap {
  flex-grow: 1;
}
.cid-u1mecGJWvL .card-title {
  color: #24262b;
}
.cid-u1mecGJWvL .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-u1mecGJWvL .mbr-section-btn {
  margin-top: 12px;
}
.cid-u1meT10FYq {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1meT10FYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1meT10FYq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1meT10FYq .col-title {
  margin-bottom: 32px;
}
.cid-u1meT10FYq .mbr-section-title {
  color: #24262b;
}
.cid-u1meT10FYq .mbr-section-subtitle {
  color: #24262b;
}
.cid-u1meT10FYq .cars-row {
  row-gap: 32px;
}
.cid-u1meT10FYq .card {
  border-radius: 0;
}
.cid-u1meT10FYq .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-u1meT10FYq .text-wrap {
  flex-grow: 1;
}
.cid-u1meT10FYq .card-title {
  color: #24262b;
}
.cid-u1meT10FYq .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-u1meT10FYq .mbr-section-btn {
  margin-top: 12px;
}
.cid-u1mc9oAtrO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1mc9oAtrO .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1mc9oAtrO .mbr-text {
  color: #c1c1c1;
}
.cid-u1ocl3Pajc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1ocl3Pajc nav.navbar {
  position: fixed;
}
.cid-u1ocl3Pajc .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-u1ocl3Pajc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ocl3Pajc .dropdown-item:hover,
.cid-u1ocl3Pajc .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1ocl3Pajc .dropdown-item:hover span {
  color: white;
}
.cid-u1ocl3Pajc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ocl3Pajc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ocl3Pajc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ocl3Pajc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ocl3Pajc .nav-link {
  position: relative;
}
.cid-u1ocl3Pajc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1ocl3Pajc .container {
    flex-wrap: nowrap;
  }
}
.cid-u1ocl3Pajc .navbar-caption:hover,
.cid-u1ocl3Pajc .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1ocl3Pajc .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1ocl3Pajc .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1ocl3Pajc .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1ocl3Pajc .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1ocl3Pajc .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1ocl3Pajc .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1ocl3Pajc .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1ocl3Pajc .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1ocl3Pajc .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1ocl3Pajc .dropdown-menu,
.cid-u1ocl3Pajc .navbar.opened {
  background: #ffffff !important;
}
.cid-u1ocl3Pajc .nav-item:focus,
.cid-u1ocl3Pajc .nav-link:focus {
  outline: none;
}
.cid-u1ocl3Pajc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ocl3Pajc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ocl3Pajc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ocl3Pajc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ocl3Pajc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ocl3Pajc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ocl3Pajc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1ocl3Pajc .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ocl3Pajc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ocl3Pajc .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ocl3Pajc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ocl3Pajc .navbar.collapsed {
  justify-content: center;
}
.cid-u1ocl3Pajc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ocl3Pajc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ocl3Pajc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1ocl3Pajc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ocl3Pajc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ocl3Pajc .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-u1ocl3Pajc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ocl3Pajc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ocl3Pajc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ocl3Pajc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ocl3Pajc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ocl3Pajc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ocl3Pajc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ocl3Pajc .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-u1ocl3Pajc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ocl3Pajc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ocl3Pajc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ocl3Pajc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ocl3Pajc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ocl3Pajc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1ocl3Pajc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1ocl3Pajc .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1ocl3Pajc .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-u1ocl3Pajc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ocl3Pajc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ocl3Pajc .dropdown-item.active,
.cid-u1ocl3Pajc .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ocl3Pajc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ocl3Pajc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ocl3Pajc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ocl3Pajc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1ocl3Pajc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ocl3Pajc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ocl3Pajc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ocl3Pajc .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1ocl3Pajc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ocl3Pajc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1ocl3Pajc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ocl3Pajc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ocl3Pajc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ocl3Pajc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ocl3Pajc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ocl3Pajc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ocl3Pajc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ocl3Pajc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ocl3Pajc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ocl3Pajc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ocl3Pajc .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-u1ocl3Pajc .navbar {
    height: 70px;
  }
  .cid-u1ocl3Pajc .navbar.opened {
    height: auto;
  }
  .cid-u1ocl3Pajc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ocl3Pajc .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1ocl3Pajc .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1ocl3Pajc .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1ocl3Pajc .navbar-collapse {
    width: 100%;
  }
  .cid-u1ocl3Pajc .navbar-nav {
    width: 100%;
  }
  .cid-u1ocl3Pajc .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1ocl4rJM3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1ocl4rJM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1ocl4rJM3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1ocl4rJM3 .col-content {
    text-align: center;
  }
}
.cid-u1ocl4rJM3 .label-container {
  margin-bottom: 16px;
}
.cid-u1ocl4rJM3 .label-text {
  color: #ffffff;
}
.cid-u1ocl4rJM3 .label-text-2 {
  color: #ffffff;
}
.cid-u1ocl4rJM3 .mbr-section-title {
  color: #ffffff;
}
.cid-u1ocl4rJM3 .text-container {
  margin-top: 24px;
}
.cid-u1ocl4rJM3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1ocl4rJM3 .mbr-text {
  color: #b79b6c;
}
.cid-u1ocl4rJM3 .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1ocl4rJM3 .mbr-text,
.cid-u1ocl4rJM3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uc71El0UXT {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
.cid-uc71El0UXT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc71El0UXT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc71El0UXT .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uc71El0UXT .mbr-section-title {
  color: #24262b;
}
.cid-uc71El0UXT .mbr-section-subtitle {
  color: #24262b;
}
.cid-uc71El0UXT .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uc71El0UXT .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #92b5d5;
}
@media (max-width: 767px) {
  .cid-uc71El0UXT .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uc71El0UXT .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uc71El0UXT .card-subtitle {
  color: #24262b;
}
.cid-uc71El0UXT .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uc71El0UXT .mbr-section-btn {
  margin-top: 20px;
}
.cid-uc71El0UXT .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uc71El0UXT .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1qMQngPeZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-u1qMQngPeZ .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1qMQngPeZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1qMQngPeZ .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1qMQngPeZ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u1qN2HCduq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-u1qN2HCduq .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1qN2HCduq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1qN2HCduq .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1qN2HCduq .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-u1qOg47WHF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-u1qOg47WHF .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1qOg47WHF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u1qOg47WHF .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1qOg47WHF .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u1ocl5nwTl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1ocl5nwTl .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1ocl5nwTl .mbr-text {
  color: #c1c1c1;
}
.cid-u1O3YLoGwL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1O3YLoGwL nav.navbar {
  position: fixed;
}
.cid-u1O3YLoGwL .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-u1O3YLoGwL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1O3YLoGwL .dropdown-item:hover,
.cid-u1O3YLoGwL .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1O3YLoGwL .dropdown-item:hover span {
  color: white;
}
.cid-u1O3YLoGwL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1O3YLoGwL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1O3YLoGwL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1O3YLoGwL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1O3YLoGwL .nav-link {
  position: relative;
}
.cid-u1O3YLoGwL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1O3YLoGwL .container {
    flex-wrap: nowrap;
  }
}
.cid-u1O3YLoGwL .navbar-caption:hover,
.cid-u1O3YLoGwL .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1O3YLoGwL .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1O3YLoGwL .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1O3YLoGwL .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1O3YLoGwL .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1O3YLoGwL .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1O3YLoGwL .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1O3YLoGwL .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1O3YLoGwL .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1O3YLoGwL .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1O3YLoGwL .dropdown-menu,
.cid-u1O3YLoGwL .navbar.opened {
  background: #ffffff !important;
}
.cid-u1O3YLoGwL .nav-item:focus,
.cid-u1O3YLoGwL .nav-link:focus {
  outline: none;
}
.cid-u1O3YLoGwL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1O3YLoGwL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1O3YLoGwL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1O3YLoGwL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1O3YLoGwL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1O3YLoGwL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1O3YLoGwL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1O3YLoGwL .navbar.opened {
  transition: all 0.3s;
}
.cid-u1O3YLoGwL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1O3YLoGwL .navbar .navbar-logo img {
  width: auto;
}
.cid-u1O3YLoGwL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1O3YLoGwL .navbar.collapsed {
  justify-content: center;
}
.cid-u1O3YLoGwL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1O3YLoGwL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1O3YLoGwL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1O3YLoGwL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1O3YLoGwL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1O3YLoGwL .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-u1O3YLoGwL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1O3YLoGwL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1O3YLoGwL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1O3YLoGwL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1O3YLoGwL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1O3YLoGwL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1O3YLoGwL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1O3YLoGwL .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-u1O3YLoGwL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1O3YLoGwL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1O3YLoGwL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1O3YLoGwL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1O3YLoGwL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1O3YLoGwL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1O3YLoGwL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1O3YLoGwL .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1O3YLoGwL .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-u1O3YLoGwL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1O3YLoGwL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1O3YLoGwL .dropdown-item.active,
.cid-u1O3YLoGwL .dropdown-item:active {
  background-color: transparent;
}
.cid-u1O3YLoGwL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1O3YLoGwL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1O3YLoGwL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1O3YLoGwL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1O3YLoGwL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1O3YLoGwL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1O3YLoGwL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1O3YLoGwL .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1O3YLoGwL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1O3YLoGwL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1O3YLoGwL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1O3YLoGwL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1O3YLoGwL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1O3YLoGwL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1O3YLoGwL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1O3YLoGwL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1O3YLoGwL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1O3YLoGwL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1O3YLoGwL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1O3YLoGwL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1O3YLoGwL .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-u1O3YLoGwL .navbar {
    height: 70px;
  }
  .cid-u1O3YLoGwL .navbar.opened {
    height: auto;
  }
  .cid-u1O3YLoGwL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1O3YLoGwL .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1O3YLoGwL .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1O3YLoGwL .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1O3YLoGwL .navbar-collapse {
    width: 100%;
  }
  .cid-u1O3YLoGwL .navbar-nav {
    width: 100%;
  }
  .cid-u1O3YLoGwL .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1O3YLUQhR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1O3YLUQhR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1O3YLUQhR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1O3YLUQhR .col-content {
    text-align: center;
  }
}
.cid-u1O3YLUQhR .label-container {
  margin-bottom: 16px;
}
.cid-u1O3YLUQhR .label-text {
  color: #ffffff;
}
.cid-u1O3YLUQhR .label-text-2 {
  color: #ffffff;
}
.cid-u1O3YLUQhR .mbr-section-title {
  color: #ffffff;
}
.cid-u1O3YLUQhR .text-container {
  margin-top: 24px;
}
.cid-u1O3YLUQhR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1O3YLUQhR .mbr-text {
  color: #b79b6c;
}
.cid-u1O3YLUQhR .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1O3YLUQhR .mbr-text,
.cid-u1O3YLUQhR .mbr-section-btn {
  color: #ffffff;
}
.cid-unfhseCAl2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5cf89;
}
.cid-unfhseCAl2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unfhseCAl2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unfhseCAl2 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-unfhseCAl2 .mbr-section-title {
  color: #24262b;
}
.cid-unfhseCAl2 .mbr-section-subtitle {
  color: #24262b;
}
.cid-unfhseCAl2 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-unfhseCAl2 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #f5cf89;
}
@media (max-width: 767px) {
  .cid-unfhseCAl2 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-unfhseCAl2 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-unfhseCAl2 .card-subtitle {
  color: #24262b;
}
.cid-unfhseCAl2 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-unfhseCAl2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-unfhseCAl2 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-unfhseCAl2 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-u1O3YN68YT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-u1O3YN68YT .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1O3YN68YT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1O3YN68YT .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1O3YN68YT .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u1O3YNEbuo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-u1O3YNEbuo .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1O3YNEbuo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1O3YNEbuo .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1O3YNEbuo .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-u1O3YOafCx {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-u1O3YOafCx .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1O3YOafCx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u1O3YOafCx .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1O3YOafCx .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u1O3YP8ecy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1O3YP8ecy .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1O3YP8ecy .mbr-text {
  color: #c1c1c1;
}
.cid-u20HNM7v3D {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u20HNM7v3D nav.navbar {
  position: fixed;
}
.cid-u20HNM7v3D .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-u20HNM7v3D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u20HNM7v3D .dropdown-item:hover,
.cid-u20HNM7v3D .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u20HNM7v3D .dropdown-item:hover span {
  color: white;
}
.cid-u20HNM7v3D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u20HNM7v3D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u20HNM7v3D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u20HNM7v3D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u20HNM7v3D .nav-link {
  position: relative;
}
.cid-u20HNM7v3D .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u20HNM7v3D .container {
    flex-wrap: nowrap;
  }
}
.cid-u20HNM7v3D .navbar-caption:hover,
.cid-u20HNM7v3D .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u20HNM7v3D .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u20HNM7v3D .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u20HNM7v3D .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u20HNM7v3D .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u20HNM7v3D .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u20HNM7v3D .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u20HNM7v3D .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u20HNM7v3D .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u20HNM7v3D .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u20HNM7v3D .dropdown-menu,
.cid-u20HNM7v3D .navbar.opened {
  background: #ffffff !important;
}
.cid-u20HNM7v3D .nav-item:focus,
.cid-u20HNM7v3D .nav-link:focus {
  outline: none;
}
.cid-u20HNM7v3D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u20HNM7v3D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u20HNM7v3D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u20HNM7v3D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u20HNM7v3D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u20HNM7v3D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u20HNM7v3D .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u20HNM7v3D .navbar.opened {
  transition: all 0.3s;
}
.cid-u20HNM7v3D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u20HNM7v3D .navbar .navbar-logo img {
  width: auto;
}
.cid-u20HNM7v3D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u20HNM7v3D .navbar.collapsed {
  justify-content: center;
}
.cid-u20HNM7v3D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u20HNM7v3D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u20HNM7v3D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u20HNM7v3D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u20HNM7v3D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u20HNM7v3D .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-u20HNM7v3D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u20HNM7v3D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u20HNM7v3D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u20HNM7v3D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u20HNM7v3D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u20HNM7v3D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u20HNM7v3D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u20HNM7v3D .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-u20HNM7v3D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u20HNM7v3D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u20HNM7v3D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u20HNM7v3D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u20HNM7v3D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u20HNM7v3D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u20HNM7v3D .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u20HNM7v3D .navbar.navbar-short {
  min-height: 70px;
}
.cid-u20HNM7v3D .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-u20HNM7v3D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u20HNM7v3D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u20HNM7v3D .dropdown-item.active,
.cid-u20HNM7v3D .dropdown-item:active {
  background-color: transparent;
}
.cid-u20HNM7v3D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u20HNM7v3D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u20HNM7v3D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u20HNM7v3D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u20HNM7v3D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u20HNM7v3D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u20HNM7v3D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u20HNM7v3D .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u20HNM7v3D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u20HNM7v3D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u20HNM7v3D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u20HNM7v3D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u20HNM7v3D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u20HNM7v3D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u20HNM7v3D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u20HNM7v3D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u20HNM7v3D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u20HNM7v3D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u20HNM7v3D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u20HNM7v3D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u20HNM7v3D .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-u20HNM7v3D .navbar {
    height: 70px;
  }
  .cid-u20HNM7v3D .navbar.opened {
    height: auto;
  }
  .cid-u20HNM7v3D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u20HNM7v3D .container-fluid {
  padding: 0 1rem !important;
}
.cid-u20HNM7v3D .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u20HNM7v3D .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u20HNM7v3D .navbar-collapse {
    width: 100%;
  }
  .cid-u20HNM7v3D .navbar-nav {
    width: 100%;
  }
  .cid-u20HNM7v3D .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u20HNMQoOE {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u20HNMQoOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u20HNMQoOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u20HNMQoOE .col-content {
    text-align: center;
  }
}
.cid-u20HNMQoOE .label-container {
  margin-bottom: 16px;
}
.cid-u20HNMQoOE .label-text {
  color: #ffffff;
}
.cid-u20HNMQoOE .label-text-2 {
  color: #ffffff;
}
.cid-u20HNMQoOE .mbr-section-title {
  color: #ffffff;
}
.cid-u20HNMQoOE .text-container {
  margin-top: 24px;
}
.cid-u20HNMQoOE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u20HNMQoOE .mbr-text {
  color: #b79b6c;
}
.cid-u20HNMQoOE .mbr-section-btn {
  margin-top: 28px;
}
.cid-u20HNMQoOE .mbr-text,
.cid-u20HNMQoOE .mbr-section-btn {
  color: #ffffff;
}
.cid-u20HNNpmio {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u20HNNpmio .mbr-section-subtitle {
  color: #767676;
}
.cid-u20HNNpmio .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u20HNNpmio .table-wrapper {
  margin: 0 auto;
}
.cid-u20HNNpmio table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u20HNNpmio table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #212529;
  color: white;
  vertical-align: middle;
}
.cid-u20HNNpmio table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-u20HNNpmio .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u20HNNpmio .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u20HNNpmio .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u20HNNpmio .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-u20HNNpmio .dataTables_wrapper {
  display: block;
}
.cid-u20HNNpmio .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u20HNNpmio .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u20HNNpmio .head-item:after,
.cid-u20HNNpmio .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-u20HNNpmio .dataTables_filter {
    text-align: center;
  }
  .cid-u20HNNpmio .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-u20HNNpmio .dataTables_filter {
    text-align: center;
  }
  .cid-u20HNNpmio .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-u20HNNpmio table th,
  .cid-u20HNNpmio table td {
    padding: .75rem;
  }
}
.cid-u20HNNpmio .mbr-fallback-image.disabled {
  display: none;
}
.cid-u20HNNpmio .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u20HNNpmio .body-item {
  text-align: left;
}
.cid-u20HNNpmio .head-item {
  text-align: left;
  color: #ffffff;
}
.cid-u20HNPVCmK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u20HNPVCmK .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u20HNPVCmK .mbr-text {
  color: #c1c1c1;
}
.cid-u0Xy0psD4H {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u0Xy0psD4H nav.navbar {
  position: fixed;
}
.cid-u0Xy0psD4H .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-u0Xy0psD4H .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0Xy0psD4H .dropdown-item:hover,
.cid-u0Xy0psD4H .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0Xy0psD4H .dropdown-item:hover span {
  color: white;
}
.cid-u0Xy0psD4H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0Xy0psD4H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0Xy0psD4H .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0Xy0psD4H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Xy0psD4H .nav-link {
  position: relative;
}
.cid-u0Xy0psD4H .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0Xy0psD4H .container {
    flex-wrap: nowrap;
  }
}
.cid-u0Xy0psD4H .navbar-caption:hover,
.cid-u0Xy0psD4H .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u0Xy0psD4H .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u0Xy0psD4H .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u0Xy0psD4H .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u0Xy0psD4H .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u0Xy0psD4H .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u0Xy0psD4H .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u0Xy0psD4H .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u0Xy0psD4H .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u0Xy0psD4H .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u0Xy0psD4H .dropdown-menu,
.cid-u0Xy0psD4H .navbar.opened {
  background: #ffffff !important;
}
.cid-u0Xy0psD4H .nav-item:focus,
.cid-u0Xy0psD4H .nav-link:focus {
  outline: none;
}
.cid-u0Xy0psD4H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0Xy0psD4H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Xy0psD4H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0Xy0psD4H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0Xy0psD4H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Xy0psD4H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Xy0psD4H .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u0Xy0psD4H .navbar.opened {
  transition: all 0.3s;
}
.cid-u0Xy0psD4H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0Xy0psD4H .navbar .navbar-logo img {
  width: auto;
}
.cid-u0Xy0psD4H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0Xy0psD4H .navbar.collapsed {
  justify-content: center;
}
.cid-u0Xy0psD4H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Xy0psD4H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0Xy0psD4H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u0Xy0psD4H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Xy0psD4H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Xy0psD4H .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-u0Xy0psD4H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Xy0psD4H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Xy0psD4H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Xy0psD4H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Xy0psD4H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Xy0psD4H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Xy0psD4H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Xy0psD4H .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-u0Xy0psD4H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0Xy0psD4H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0Xy0psD4H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0Xy0psD4H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Xy0psD4H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0Xy0psD4H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u0Xy0psD4H .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u0Xy0psD4H .navbar.navbar-short {
  min-height: 70px;
}
.cid-u0Xy0psD4H .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-u0Xy0psD4H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Xy0psD4H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Xy0psD4H .dropdown-item.active,
.cid-u0Xy0psD4H .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Xy0psD4H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Xy0psD4H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Xy0psD4H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Xy0psD4H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0Xy0psD4H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Xy0psD4H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Xy0psD4H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0Xy0psD4H .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u0Xy0psD4H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0Xy0psD4H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0Xy0psD4H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Xy0psD4H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Xy0psD4H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Xy0psD4H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Xy0psD4H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Xy0psD4H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Xy0psD4H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Xy0psD4H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Xy0psD4H .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0Xy0psD4H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0Xy0psD4H .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-u0Xy0psD4H .navbar {
    height: 70px;
  }
  .cid-u0Xy0psD4H .navbar.opened {
    height: auto;
  }
  .cid-u0Xy0psD4H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Xy0psD4H .container-fluid {
  padding: 0 1rem !important;
}
.cid-u0Xy0psD4H .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u0Xy0psD4H .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u0Xy0psD4H .navbar-collapse {
    width: 100%;
  }
  .cid-u0Xy0psD4H .navbar-nav {
    width: 100%;
  }
  .cid-u0Xy0psD4H .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u0Xy0qaveK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u0Xy0qaveK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Xy0qaveK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u0Xy0qaveK .col-content {
    text-align: center;
  }
}
.cid-u0Xy0qaveK .label-container {
  margin-bottom: 16px;
}
.cid-u0Xy0qaveK .label-text {
  color: #ffffff;
}
.cid-u0Xy0qaveK .label-text-2 {
  color: #ffffff;
}
.cid-u0Xy0qaveK .mbr-section-title {
  color: #ffffff;
}
.cid-u0Xy0qaveK .text-container {
  margin-top: 24px;
}
.cid-u0Xy0qaveK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0Xy0qaveK .mbr-text {
  color: #b79b6c;
}
.cid-u0Xy0qaveK .mbr-section-btn {
  margin-top: 28px;
}
.cid-u0Xy0qaveK .mbr-text,
.cid-u0Xy0qaveK .mbr-section-btn {
  color: #ffffff;
}
.cid-u0XySQ2bU9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u0XySQ2bU9 .mbr-section-subtitle {
  color: #767676;
}
.cid-u0XySQ2bU9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0XySQ2bU9 .table-wrapper {
  margin: 0 auto;
}
.cid-u0XySQ2bU9 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u0XySQ2bU9 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #212529;
  color: white;
  vertical-align: middle;
}
.cid-u0XySQ2bU9 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-u0XySQ2bU9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u0XySQ2bU9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u0XySQ2bU9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u0XySQ2bU9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-u0XySQ2bU9 .dataTables_wrapper {
  display: block;
}
.cid-u0XySQ2bU9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u0XySQ2bU9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u0XySQ2bU9 .head-item:after,
.cid-u0XySQ2bU9 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-u0XySQ2bU9 .dataTables_filter {
    text-align: center;
  }
  .cid-u0XySQ2bU9 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-u0XySQ2bU9 .dataTables_filter {
    text-align: center;
  }
  .cid-u0XySQ2bU9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-u0XySQ2bU9 table th,
  .cid-u0XySQ2bU9 table td {
    padding: .75rem;
  }
}
.cid-u0XySQ2bU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0XySQ2bU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0XySQ2bU9 .body-item {
  text-align: left;
}
.cid-u0XySQ2bU9 .head-item {
  text-align: left;
  color: #ffffff;
}
.cid-u0Xy0r8qvh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u0Xy0r8qvh .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u0Xy0r8qvh .mbr-text {
  color: #c1c1c1;
}
.cid-u65Lh4ORTu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u65Lh4ORTu nav.navbar {
  position: fixed;
}
.cid-u65Lh4ORTu .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-u65Lh4ORTu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u65Lh4ORTu .dropdown-item:hover,
.cid-u65Lh4ORTu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u65Lh4ORTu .dropdown-item:hover span {
  color: white;
}
.cid-u65Lh4ORTu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u65Lh4ORTu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u65Lh4ORTu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u65Lh4ORTu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u65Lh4ORTu .nav-link {
  position: relative;
}
.cid-u65Lh4ORTu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u65Lh4ORTu .container {
    flex-wrap: nowrap;
  }
}
.cid-u65Lh4ORTu .navbar-caption:hover,
.cid-u65Lh4ORTu .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u65Lh4ORTu .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u65Lh4ORTu .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u65Lh4ORTu .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u65Lh4ORTu .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u65Lh4ORTu .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u65Lh4ORTu .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u65Lh4ORTu .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u65Lh4ORTu .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u65Lh4ORTu .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u65Lh4ORTu .dropdown-menu,
.cid-u65Lh4ORTu .navbar.opened {
  background: #ffffff !important;
}
.cid-u65Lh4ORTu .nav-item:focus,
.cid-u65Lh4ORTu .nav-link:focus {
  outline: none;
}
.cid-u65Lh4ORTu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u65Lh4ORTu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u65Lh4ORTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u65Lh4ORTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u65Lh4ORTu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u65Lh4ORTu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u65Lh4ORTu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u65Lh4ORTu .navbar.opened {
  transition: all 0.3s;
}
.cid-u65Lh4ORTu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u65Lh4ORTu .navbar .navbar-logo img {
  width: auto;
}
.cid-u65Lh4ORTu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u65Lh4ORTu .navbar.collapsed {
  justify-content: center;
}
.cid-u65Lh4ORTu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u65Lh4ORTu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u65Lh4ORTu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u65Lh4ORTu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u65Lh4ORTu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u65Lh4ORTu .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-u65Lh4ORTu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u65Lh4ORTu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u65Lh4ORTu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u65Lh4ORTu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u65Lh4ORTu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u65Lh4ORTu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u65Lh4ORTu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u65Lh4ORTu .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-u65Lh4ORTu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u65Lh4ORTu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u65Lh4ORTu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u65Lh4ORTu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u65Lh4ORTu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u65Lh4ORTu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u65Lh4ORTu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u65Lh4ORTu .navbar.navbar-short {
  min-height: 70px;
}
.cid-u65Lh4ORTu .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-u65Lh4ORTu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u65Lh4ORTu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u65Lh4ORTu .dropdown-item.active,
.cid-u65Lh4ORTu .dropdown-item:active {
  background-color: transparent;
}
.cid-u65Lh4ORTu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u65Lh4ORTu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u65Lh4ORTu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u65Lh4ORTu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u65Lh4ORTu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u65Lh4ORTu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u65Lh4ORTu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u65Lh4ORTu .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u65Lh4ORTu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u65Lh4ORTu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u65Lh4ORTu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u65Lh4ORTu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u65Lh4ORTu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u65Lh4ORTu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u65Lh4ORTu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u65Lh4ORTu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u65Lh4ORTu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u65Lh4ORTu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u65Lh4ORTu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u65Lh4ORTu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u65Lh4ORTu .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-u65Lh4ORTu .navbar {
    height: 70px;
  }
  .cid-u65Lh4ORTu .navbar.opened {
    height: auto;
  }
  .cid-u65Lh4ORTu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u65Lh4ORTu .container-fluid {
  padding: 0 1rem !important;
}
.cid-u65Lh4ORTu .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u65Lh4ORTu .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u65Lh4ORTu .navbar-collapse {
    width: 100%;
  }
  .cid-u65Lh4ORTu .navbar-nav {
    width: 100%;
  }
  .cid-u65Lh4ORTu .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u65Lh5bspX {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u65Lh5bspX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u65Lh5bspX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u65Lh5bspX .col-content {
    text-align: center;
  }
}
.cid-u65Lh5bspX .label-container {
  margin-bottom: 16px;
}
.cid-u65Lh5bspX .label-text {
  color: #ffffff;
}
.cid-u65Lh5bspX .label-text-2 {
  color: #ffffff;
}
.cid-u65Lh5bspX .mbr-section-title {
  color: #ffffff;
}
.cid-u65Lh5bspX .text-container {
  margin-top: 24px;
}
.cid-u65Lh5bspX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u65Lh5bspX .mbr-text {
  color: #b79b6c;
}
.cid-u65Lh5bspX .mbr-section-btn {
  margin-top: 28px;
}
.cid-u65Lh5bspX .mbr-text,
.cid-u65Lh5bspX .mbr-section-btn {
  color: #ffffff;
}
.cid-ucdTt0I1JU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucdTt0I1JU .col-title {
    margin-bottom: 20px;
  }
}
.cid-ucdTt0I1JU .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucdTt0I1JU .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-ucdTt0I1JU .mbr-text {
  color: #000000;
}
.cid-u65QsovITg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u65QsovITg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u65QsovITg .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-u65QsovITg .container {
    padding: 0 20px;
  }
}
.cid-u65QsovITg .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-u65QsovITg .content-wrapper {
    padding: 46px 0;
  }
}
.cid-u65QsovITg .content-wrapper .content-wrap {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u65QsovITg .content-wrapper .content-wrap {
    margin-bottom: 46px;
  }
}
.cid-u65QsovITg .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 32px;
}
.cid-u65QsovITg .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u65QsovITg .content-wrapper .panel-group .card {
  border-radius: 20px !important;
  background-color: #92b5d5;
  margin-bottom: 12px;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-u65QsovITg .content-wrapper .panel-group .card {
    padding: 46px 20px;
  }
}
.cid-u65QsovITg .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-u65QsovITg .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-u65QsovITg .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u65QsovITg .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
    width: auto;
  }
}
.cid-u65QsovITg .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-u65QsovITg .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-u65QsovITg .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .cid-u65QsovITg .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-top: 46px;
  }
}
.cid-u65QsovITg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-u65QsovITg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-u65QsovITg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-u65QsovITg .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u65QsovITg .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-u65QsovITg .panel-title-edit {
  color: #000000;
}
.cid-u65QsovITg .panel-text {
  color: #000000;
}
.cid-u65Lh5M7E6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u65Lh5M7E6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u65Lh5M7E6 .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-u65Lh5M7E6 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-u65Lh5M7E6 .container {
    padding: 0 12px;
  }
}
.cid-u65Lh5M7E6 .row {
  justify-content: center;
}
.cid-u65Lh5M7E6 .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-u65Lh5M7E6 .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u65Lh5M7E6 .image-wrapper img {
    height: 350px;
  }
}
.cid-u65Lh62i3W {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u65Lh62i3W .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u65Lh62i3W .mbr-text {
  color: #c1c1c1;
}
.cid-u6hSC79wvq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u6hSC79wvq nav.navbar {
  position: fixed;
}
.cid-u6hSC79wvq .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-u6hSC79wvq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6hSC79wvq .dropdown-item:hover,
.cid-u6hSC79wvq .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u6hSC79wvq .dropdown-item:hover span {
  color: white;
}
.cid-u6hSC79wvq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6hSC79wvq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6hSC79wvq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6hSC79wvq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6hSC79wvq .nav-link {
  position: relative;
}
.cid-u6hSC79wvq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6hSC79wvq .container {
    flex-wrap: nowrap;
  }
}
.cid-u6hSC79wvq .navbar-caption:hover,
.cid-u6hSC79wvq .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u6hSC79wvq .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u6hSC79wvq .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u6hSC79wvq .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u6hSC79wvq .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u6hSC79wvq .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u6hSC79wvq .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u6hSC79wvq .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u6hSC79wvq .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u6hSC79wvq .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u6hSC79wvq .dropdown-menu,
.cid-u6hSC79wvq .navbar.opened {
  background: #ffffff !important;
}
.cid-u6hSC79wvq .nav-item:focus,
.cid-u6hSC79wvq .nav-link:focus {
  outline: none;
}
.cid-u6hSC79wvq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6hSC79wvq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6hSC79wvq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6hSC79wvq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6hSC79wvq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6hSC79wvq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6hSC79wvq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u6hSC79wvq .navbar.opened {
  transition: all 0.3s;
}
.cid-u6hSC79wvq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6hSC79wvq .navbar .navbar-logo img {
  width: auto;
}
.cid-u6hSC79wvq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6hSC79wvq .navbar.collapsed {
  justify-content: center;
}
.cid-u6hSC79wvq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6hSC79wvq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6hSC79wvq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u6hSC79wvq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6hSC79wvq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6hSC79wvq .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-u6hSC79wvq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6hSC79wvq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6hSC79wvq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6hSC79wvq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6hSC79wvq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6hSC79wvq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6hSC79wvq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6hSC79wvq .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-u6hSC79wvq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6hSC79wvq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6hSC79wvq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6hSC79wvq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6hSC79wvq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6hSC79wvq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6hSC79wvq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6hSC79wvq .navbar.navbar-short {
  min-height: 70px;
}
.cid-u6hSC79wvq .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-u6hSC79wvq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6hSC79wvq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6hSC79wvq .dropdown-item.active,
.cid-u6hSC79wvq .dropdown-item:active {
  background-color: transparent;
}
.cid-u6hSC79wvq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6hSC79wvq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6hSC79wvq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6hSC79wvq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6hSC79wvq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6hSC79wvq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6hSC79wvq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6hSC79wvq .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u6hSC79wvq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6hSC79wvq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6hSC79wvq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6hSC79wvq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6hSC79wvq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6hSC79wvq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6hSC79wvq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6hSC79wvq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6hSC79wvq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6hSC79wvq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6hSC79wvq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6hSC79wvq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6hSC79wvq .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-u6hSC79wvq .navbar {
    height: 70px;
  }
  .cid-u6hSC79wvq .navbar.opened {
    height: auto;
  }
  .cid-u6hSC79wvq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6hSC79wvq .container-fluid {
  padding: 0 1rem !important;
}
.cid-u6hSC79wvq .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u6hSC79wvq .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u6hSC79wvq .navbar-collapse {
    width: 100%;
  }
  .cid-u6hSC79wvq .navbar-nav {
    width: 100%;
  }
  .cid-u6hSC79wvq .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u6hSC7CRvv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u6hSC7CRvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6hSC7CRvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u6hSC7CRvv .col-content {
    text-align: center;
  }
}
.cid-u6hSC7CRvv .label-container {
  margin-bottom: 16px;
}
.cid-u6hSC7CRvv .label-text {
  color: #ffffff;
}
.cid-u6hSC7CRvv .label-text-2 {
  color: #ffffff;
}
.cid-u6hSC7CRvv .mbr-section-title {
  color: #ffffff;
}
.cid-u6hSC7CRvv .text-container {
  margin-top: 24px;
}
.cid-u6hSC7CRvv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6hSC7CRvv .mbr-text {
  color: #b79b6c;
}
.cid-u6hSC7CRvv .mbr-section-btn {
  margin-top: 28px;
}
.cid-u6hSC7CRvv .mbr-text,
.cid-u6hSC7CRvv .mbr-section-btn {
  color: #ffffff;
}
.cid-u6hSU3p0MX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6hSU3p0MX .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u6hSU3p0MX .mbr-section-title {
  color: #24262b;
}
.cid-u6hSU3p0MX .mbr-section-subtitle {
  color: #24262b;
}
.cid-u6hSU3p0MX .items-row {
  row-gap: 32px;
}
.cid-u6hSU3p0MX .item {
  cursor: pointer;
}
.cid-u6hSU3p0MX .item:focus,
.cid-u6hSU3p0MX span:focus {
  outline: none;
}
.cid-u6hSU3p0MX .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-u6hSU3p0MX .item-img {
  flex-shrink: 0;
  width: 100%;
}
.cid-u6hSU3p0MX img {
  width: 100%;
  aspect-ratio: calc(305 / (67 * 4));
  object-fit: cover;
}
.cid-u6hSU3p0MX .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 2rem;
  background: #efefef;
}
.cid-u6hSU3p0MX .item-title {
  color: #24262b;
}
.cid-u6hSU3p0MX .mbr-text {
  margin-top: 10px;
  color: #24262b;
}
.cid-u6hSU3p0MX .mbr-section-btn {
  margin-top: 12px !important;
}
.cid-u6hSC8d2RW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u6hSC8d2RW .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u6hSC8d2RW .mbr-text {
  color: #c1c1c1;
}
.cid-uaqxCzJvfF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uaqxCzJvfF nav.navbar {
  position: fixed;
}
.cid-uaqxCzJvfF .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-uaqxCzJvfF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaqxCzJvfF .dropdown-item:hover,
.cid-uaqxCzJvfF .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uaqxCzJvfF .dropdown-item:hover span {
  color: white;
}
.cid-uaqxCzJvfF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaqxCzJvfF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaqxCzJvfF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaqxCzJvfF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaqxCzJvfF .nav-link {
  position: relative;
}
.cid-uaqxCzJvfF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uaqxCzJvfF .container {
    flex-wrap: nowrap;
  }
}
.cid-uaqxCzJvfF .navbar-caption:hover,
.cid-uaqxCzJvfF .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uaqxCzJvfF .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uaqxCzJvfF .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uaqxCzJvfF .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uaqxCzJvfF .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uaqxCzJvfF .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uaqxCzJvfF .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uaqxCzJvfF .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uaqxCzJvfF .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uaqxCzJvfF .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uaqxCzJvfF .dropdown-menu,
.cid-uaqxCzJvfF .navbar.opened {
  background: #ffffff !important;
}
.cid-uaqxCzJvfF .nav-item:focus,
.cid-uaqxCzJvfF .nav-link:focus {
  outline: none;
}
.cid-uaqxCzJvfF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaqxCzJvfF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaqxCzJvfF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaqxCzJvfF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaqxCzJvfF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaqxCzJvfF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaqxCzJvfF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uaqxCzJvfF .navbar.opened {
  transition: all 0.3s;
}
.cid-uaqxCzJvfF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaqxCzJvfF .navbar .navbar-logo img {
  width: auto;
}
.cid-uaqxCzJvfF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaqxCzJvfF .navbar.collapsed {
  justify-content: center;
}
.cid-uaqxCzJvfF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaqxCzJvfF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaqxCzJvfF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uaqxCzJvfF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaqxCzJvfF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaqxCzJvfF .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-uaqxCzJvfF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaqxCzJvfF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaqxCzJvfF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaqxCzJvfF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaqxCzJvfF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaqxCzJvfF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaqxCzJvfF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaqxCzJvfF .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-uaqxCzJvfF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaqxCzJvfF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaqxCzJvfF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaqxCzJvfF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaqxCzJvfF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaqxCzJvfF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uaqxCzJvfF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uaqxCzJvfF .navbar.navbar-short {
  min-height: 70px;
}
.cid-uaqxCzJvfF .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-uaqxCzJvfF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaqxCzJvfF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaqxCzJvfF .dropdown-item.active,
.cid-uaqxCzJvfF .dropdown-item:active {
  background-color: transparent;
}
.cid-uaqxCzJvfF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaqxCzJvfF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaqxCzJvfF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaqxCzJvfF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uaqxCzJvfF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaqxCzJvfF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaqxCzJvfF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaqxCzJvfF .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uaqxCzJvfF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaqxCzJvfF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uaqxCzJvfF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaqxCzJvfF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaqxCzJvfF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaqxCzJvfF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaqxCzJvfF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaqxCzJvfF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaqxCzJvfF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaqxCzJvfF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaqxCzJvfF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaqxCzJvfF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaqxCzJvfF .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-uaqxCzJvfF .navbar {
    height: 70px;
  }
  .cid-uaqxCzJvfF .navbar.opened {
    height: auto;
  }
  .cid-uaqxCzJvfF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaqxCzJvfF .container-fluid {
  padding: 0 1rem !important;
}
.cid-uaqxCzJvfF .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uaqxCzJvfF .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uaqxCzJvfF .navbar-collapse {
    width: 100%;
  }
  .cid-uaqxCzJvfF .navbar-nav {
    width: 100%;
  }
  .cid-uaqxCzJvfF .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uaqxCA4yKR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uaqxCA4yKR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqxCA4yKR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uaqxCA4yKR .col-content {
    text-align: center;
  }
}
.cid-uaqxCA4yKR .label-container {
  margin-bottom: 16px;
}
.cid-uaqxCA4yKR .label-text {
  color: #ffffff;
}
.cid-uaqxCA4yKR .label-text-2 {
  color: #ffffff;
}
.cid-uaqxCA4yKR .mbr-section-title {
  color: #ffffff;
}
.cid-uaqxCA4yKR .text-container {
  margin-top: 24px;
}
.cid-uaqxCA4yKR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaqxCA4yKR .mbr-text {
  color: #b79b6c;
}
.cid-uaqxCA4yKR .mbr-section-btn {
  margin-top: 28px;
}
.cid-uaqxCA4yKR .mbr-text,
.cid-uaqxCA4yKR .mbr-section-btn {
  color: #ffffff;
}
.cid-uaqzR46YhH {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqzR46YhH .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqzR46YhH .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uaqzR46YhH .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uaqzR46YhH .mbr-text {
  color: #000000;
}
.cid-uc7XmlqNy3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uc7XmlqNy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc7XmlqNy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc7XmlqNy3 .col-title {
  margin-bottom: 32px;
}
.cid-uc7XmlqNy3 .mbr-section-title {
  color: #24262b;
}
.cid-uc7XmlqNy3 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uc7XmlqNy3 .cars-row {
  row-gap: 32px;
}
.cid-uc7XmlqNy3 .card {
  border-radius: 0;
}
.cid-uc7XmlqNy3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uc7XmlqNy3 .text-wrap {
  flex-grow: 1;
}
.cid-uc7XmlqNy3 .card-title {
  color: #24262b;
}
.cid-uc7XmlqNy3 .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uc7XmlqNy3 .mbr-section-btn {
  margin-top: 12px;
}
.cid-uaqyGnXkq2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqyGnXkq2 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqyGnXkq2 .mbr-section-title {
  color: #000000;
}
.cid-uaqyGnXkq2 .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqyGnXkq2 .mbr-text {
  color: #000000;
}
.cid-uaqyGnXkq2 .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqyGnXkq2 p {
  line-height: 1.2;
}
.cid-uaqyGnXkq2 .mbr-text1 {
  color: #000000;
}
.cid-uaqyGnXkq2 .mbr-text2 {
  color: #005241;
}
.cid-uaqyGnXkq2 .mbr-text3 {
  color: #000000;
}
.cid-uaqA3rZwUI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqA3rZwUI .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqA3rZwUI .mbr-section-title {
  color: #000000;
}
.cid-uaqA3rZwUI .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqA3rZwUI .mbr-text {
  color: #000000;
}
.cid-uaqA3rZwUI .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqA3rZwUI p {
  line-height: 1.2;
}
.cid-uaqA3rZwUI .mbr-text1 {
  color: #000000;
}
.cid-uaqA3rZwUI .mbr-text2 {
  color: #005241;
}
.cid-uaqA3rZwUI .mbr-text3 {
  color: #000000;
}
.cid-uaqAmmrSPK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaqAmmrSPK .col-title {
    margin-bottom: 20px;
  }
}
.cid-uaqAmmrSPK .mbr-section-title {
  color: #000000;
}
.cid-uaqAmmrSPK .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-uaqAmmrSPK .mbr-text {
  color: #000000;
}
.cid-uaqAmmrSPK .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uaqAmmrSPK p {
  line-height: 1.2;
}
.cid-uaqAmmrSPK .mbr-text1 {
  color: #000000;
}
.cid-uaqAmmrSPK .mbr-text2 {
  color: #005241;
}
.cid-uaqAmmrSPK .mbr-text3 {
  color: #000000;
}
.cid-uc7VJmWKfN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uc7VJmWKfN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc7VJmWKfN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc7VJmWKfN .col-title {
  margin-bottom: 32px;
}
.cid-uc7VJmWKfN .mbr-section-title {
  color: #24262b;
}
.cid-uc7VJmWKfN .mbr-section-subtitle {
  color: #24262b;
}
.cid-uc7VJmWKfN .cars-row {
  row-gap: 32px;
}
.cid-uc7VJmWKfN .card {
  border-radius: 0;
}
.cid-uc7VJmWKfN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uc7VJmWKfN .text-wrap {
  flex-grow: 1;
}
.cid-uc7VJmWKfN .card-title {
  color: #24262b;
}
.cid-uc7VJmWKfN .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uc7VJmWKfN .mbr-section-btn {
  margin-top: 12px;
}
.cid-uaqyvhTHEf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uaqyvhTHEf .container-fluid {
  padding: 0 3rem;
}
.cid-uaqyvhTHEf .mbr-section-subtitle {
  color: #767676;
}
.cid-uaqyvhTHEf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uaqyvhTHEf .table-wrapper {
  margin: 0 auto;
}
.cid-uaqyvhTHEf table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uaqyvhTHEf table thead tr {
  border: none !important;
}
.cid-uaqyvhTHEf table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-uaqyvhTHEf table tr td {
  border-color: #eceeef;
}
.cid-uaqyvhTHEf table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-uaqyvhTHEf tr:hover {
  background-color: #c1c1c1 !important;
}
.cid-uaqyvhTHEf th:after,
.cid-uaqyvhTHEf th:before {
  display: none !important;
}
.cid-uaqyvhTHEf .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-uaqyvhTHEf .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-uaqyvhTHEf table th,
  .cid-uaqyvhTHEf table td {
    padding: .75rem;
  }
}
.cid-uaqyvhTHEf .body-item {
  text-align: left;
}
.cid-uaqyvhTHEf .mbr-text {
  color: #767676;
}
.cid-uaqyvhTHEf .head-item {
  color: #232323;
}
.cid-uaqyvhTHEf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-uaqyvhTHEf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqyvhTHEf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqxCFXgYA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uaqxCFXgYA .container-fluid {
  padding: 0 3rem;
}
.cid-uaqxCFXgYA .mbr-section-subtitle {
  color: #767676;
}
.cid-uaqxCFXgYA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uaqxCFXgYA .table-wrapper {
  margin: 0 auto;
}
.cid-uaqxCFXgYA table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uaqxCFXgYA table thead tr {
  border: none !important;
}
.cid-uaqxCFXgYA table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-uaqxCFXgYA table tr td {
  border-color: #eceeef;
}
.cid-uaqxCFXgYA table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-uaqxCFXgYA tr:hover {
  background-color: #c1c1c1 !important;
}
.cid-uaqxCFXgYA th:after,
.cid-uaqxCFXgYA th:before {
  display: none !important;
}
.cid-uaqxCFXgYA .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-uaqxCFXgYA .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-uaqxCFXgYA table th,
  .cid-uaqxCFXgYA table td {
    padding: .75rem;
  }
}
.cid-uaqxCFXgYA .body-item {
  text-align: left;
}
.cid-uaqxCFXgYA .mbr-text {
  color: #767676;
}
.cid-uaqxCFXgYA .head-item {
  color: #232323;
}
.cid-uaqxCFXgYA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-uaqxCFXgYA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaqxCFXgYA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaqxCGRkAl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uaqxCGRkAl .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uaqxCGRkAl .mbr-text {
  color: #c1c1c1;
}
.cid-ub2EmHy6UC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-ub2EmHy6UC nav.navbar {
  position: fixed;
}
.cid-ub2EmHy6UC .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-ub2EmHy6UC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ub2EmHy6UC .dropdown-item:hover,
.cid-ub2EmHy6UC .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-ub2EmHy6UC .dropdown-item:hover span {
  color: white;
}
.cid-ub2EmHy6UC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ub2EmHy6UC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ub2EmHy6UC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ub2EmHy6UC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ub2EmHy6UC .nav-link {
  position: relative;
}
.cid-ub2EmHy6UC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ub2EmHy6UC .container {
    flex-wrap: nowrap;
  }
}
.cid-ub2EmHy6UC .navbar-caption:hover,
.cid-ub2EmHy6UC .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-ub2EmHy6UC .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-ub2EmHy6UC .navbar-nav .nav-item {
  color: #24262b;
}
.cid-ub2EmHy6UC .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-ub2EmHy6UC .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-ub2EmHy6UC .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-ub2EmHy6UC .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-ub2EmHy6UC .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-ub2EmHy6UC .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-ub2EmHy6UC .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-ub2EmHy6UC .dropdown-menu,
.cid-ub2EmHy6UC .navbar.opened {
  background: #ffffff !important;
}
.cid-ub2EmHy6UC .nav-item:focus,
.cid-ub2EmHy6UC .nav-link:focus {
  outline: none;
}
.cid-ub2EmHy6UC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ub2EmHy6UC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ub2EmHy6UC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ub2EmHy6UC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ub2EmHy6UC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ub2EmHy6UC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ub2EmHy6UC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-ub2EmHy6UC .navbar.opened {
  transition: all 0.3s;
}
.cid-ub2EmHy6UC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ub2EmHy6UC .navbar .navbar-logo img {
  width: auto;
}
.cid-ub2EmHy6UC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ub2EmHy6UC .navbar.collapsed {
  justify-content: center;
}
.cid-ub2EmHy6UC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ub2EmHy6UC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ub2EmHy6UC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-ub2EmHy6UC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ub2EmHy6UC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ub2EmHy6UC .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-ub2EmHy6UC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ub2EmHy6UC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ub2EmHy6UC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ub2EmHy6UC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ub2EmHy6UC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ub2EmHy6UC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ub2EmHy6UC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ub2EmHy6UC .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-ub2EmHy6UC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ub2EmHy6UC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ub2EmHy6UC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ub2EmHy6UC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ub2EmHy6UC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ub2EmHy6UC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ub2EmHy6UC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ub2EmHy6UC .navbar.navbar-short {
  min-height: 70px;
}
.cid-ub2EmHy6UC .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-ub2EmHy6UC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ub2EmHy6UC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ub2EmHy6UC .dropdown-item.active,
.cid-ub2EmHy6UC .dropdown-item:active {
  background-color: transparent;
}
.cid-ub2EmHy6UC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ub2EmHy6UC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ub2EmHy6UC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ub2EmHy6UC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ub2EmHy6UC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ub2EmHy6UC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ub2EmHy6UC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ub2EmHy6UC .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-ub2EmHy6UC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ub2EmHy6UC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ub2EmHy6UC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ub2EmHy6UC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub2EmHy6UC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub2EmHy6UC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ub2EmHy6UC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub2EmHy6UC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ub2EmHy6UC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ub2EmHy6UC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub2EmHy6UC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ub2EmHy6UC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ub2EmHy6UC .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-ub2EmHy6UC .navbar {
    height: 70px;
  }
  .cid-ub2EmHy6UC .navbar.opened {
    height: auto;
  }
  .cid-ub2EmHy6UC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ub2EmHy6UC .container-fluid {
  padding: 0 1rem !important;
}
.cid-ub2EmHy6UC .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-ub2EmHy6UC .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-ub2EmHy6UC .navbar-collapse {
    width: 100%;
  }
  .cid-ub2EmHy6UC .navbar-nav {
    width: 100%;
  }
  .cid-ub2EmHy6UC .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-ub2EmI2sMV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-ub2EmI2sMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub2EmI2sMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ub2EmI2sMV .col-content {
    text-align: center;
  }
}
.cid-ub2EmI2sMV .label-container {
  margin-bottom: 16px;
}
.cid-ub2EmI2sMV .label-text {
  color: #ffffff;
}
.cid-ub2EmI2sMV .label-text-2 {
  color: #ffffff;
}
.cid-ub2EmI2sMV .mbr-section-title {
  color: #ffffff;
}
.cid-ub2EmI2sMV .text-container {
  margin-top: 24px;
}
.cid-ub2EmI2sMV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub2EmI2sMV .mbr-text {
  color: #b79b6c;
}
.cid-ub2EmI2sMV .mbr-section-btn {
  margin-top: 28px;
}
.cid-ub2EmI2sMV .mbr-text,
.cid-ub2EmI2sMV .mbr-section-btn {
  color: #ffffff;
}
.cid-udIHxoAzT5 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #c1c1c1;
}
.cid-udIHxoAzT5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udIHxoAzT5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udIHxoAzT5 .mbr-section-title {
  color: #24262b;
}
.cid-udIHxoAzT5 .mbr-section-subtitle {
  color: #24262b;
}
.cid-udIHxoAzT5 .mbr-section-btn {
  margin-top: 16px;
}
.cid-ub2EmJKRdF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-ub2EmJKRdF .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-ub2EmJKRdF .mbr-text {
  color: #c1c1c1;
}
.cid-ubTo3N7Orx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-ubTo3N7Orx nav.navbar {
  position: fixed;
}
.cid-ubTo3N7Orx .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-ubTo3N7Orx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubTo3N7Orx .dropdown-item:hover,
.cid-ubTo3N7Orx .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-ubTo3N7Orx .dropdown-item:hover span {
  color: white;
}
.cid-ubTo3N7Orx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubTo3N7Orx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubTo3N7Orx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubTo3N7Orx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubTo3N7Orx .nav-link {
  position: relative;
}
.cid-ubTo3N7Orx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubTo3N7Orx .container {
    flex-wrap: nowrap;
  }
}
.cid-ubTo3N7Orx .navbar-caption:hover,
.cid-ubTo3N7Orx .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-ubTo3N7Orx .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-ubTo3N7Orx .navbar-nav .nav-item {
  color: #24262b;
}
.cid-ubTo3N7Orx .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-ubTo3N7Orx .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-ubTo3N7Orx .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-ubTo3N7Orx .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-ubTo3N7Orx .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-ubTo3N7Orx .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-ubTo3N7Orx .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-ubTo3N7Orx .dropdown-menu,
.cid-ubTo3N7Orx .navbar.opened {
  background: #ffffff !important;
}
.cid-ubTo3N7Orx .nav-item:focus,
.cid-ubTo3N7Orx .nav-link:focus {
  outline: none;
}
.cid-ubTo3N7Orx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubTo3N7Orx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubTo3N7Orx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubTo3N7Orx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubTo3N7Orx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubTo3N7Orx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubTo3N7Orx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-ubTo3N7Orx .navbar.opened {
  transition: all 0.3s;
}
.cid-ubTo3N7Orx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubTo3N7Orx .navbar .navbar-logo img {
  width: auto;
}
.cid-ubTo3N7Orx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubTo3N7Orx .navbar.collapsed {
  justify-content: center;
}
.cid-ubTo3N7Orx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubTo3N7Orx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubTo3N7Orx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-ubTo3N7Orx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubTo3N7Orx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubTo3N7Orx .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-ubTo3N7Orx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubTo3N7Orx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubTo3N7Orx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubTo3N7Orx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubTo3N7Orx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubTo3N7Orx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubTo3N7Orx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubTo3N7Orx .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-ubTo3N7Orx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubTo3N7Orx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubTo3N7Orx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubTo3N7Orx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubTo3N7Orx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubTo3N7Orx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ubTo3N7Orx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ubTo3N7Orx .navbar.navbar-short {
  min-height: 70px;
}
.cid-ubTo3N7Orx .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-ubTo3N7Orx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubTo3N7Orx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubTo3N7Orx .dropdown-item.active,
.cid-ubTo3N7Orx .dropdown-item:active {
  background-color: transparent;
}
.cid-ubTo3N7Orx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubTo3N7Orx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubTo3N7Orx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubTo3N7Orx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ubTo3N7Orx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubTo3N7Orx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubTo3N7Orx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubTo3N7Orx .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-ubTo3N7Orx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubTo3N7Orx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ubTo3N7Orx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubTo3N7Orx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubTo3N7Orx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubTo3N7Orx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubTo3N7Orx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubTo3N7Orx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubTo3N7Orx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubTo3N7Orx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubTo3N7Orx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubTo3N7Orx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubTo3N7Orx .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-ubTo3N7Orx .navbar {
    height: 70px;
  }
  .cid-ubTo3N7Orx .navbar.opened {
    height: auto;
  }
  .cid-ubTo3N7Orx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubTo3N7Orx .container-fluid {
  padding: 0 1rem !important;
}
.cid-ubTo3N7Orx .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-ubTo3N7Orx .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-ubTo3N7Orx .navbar-collapse {
    width: 100%;
  }
  .cid-ubTo3N7Orx .navbar-nav {
    width: 100%;
  }
  .cid-ubTo3N7Orx .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-ubTo3NyyAZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-ubTo3NyyAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTo3NyyAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ubTo3NyyAZ .col-content {
    text-align: center;
  }
}
.cid-ubTo3NyyAZ .label-container {
  margin-bottom: 16px;
}
.cid-ubTo3NyyAZ .label-text {
  color: #ffffff;
}
.cid-ubTo3NyyAZ .label-text-2 {
  color: #ffffff;
}
.cid-ubTo3NyyAZ .mbr-section-title {
  color: #ffffff;
}
.cid-ubTo3NyyAZ .text-container {
  margin-top: 24px;
}
.cid-ubTo3NyyAZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ubTo3NyyAZ .mbr-text {
  color: #b79b6c;
}
.cid-ubTo3NyyAZ .mbr-section-btn {
  margin-top: 28px;
}
.cid-ubTo3NyyAZ .mbr-text,
.cid-ubTo3NyyAZ .mbr-section-btn {
  color: #ffffff;
}
.cid-ubTo3O7IgO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ubTo3O7IgO .col-title {
    margin-bottom: 20px;
  }
}
.cid-ubTo3O7IgO .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ubTo3O7IgO .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-ubTo3O7IgO .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ubTo3OCDYb {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ubTo3OCDYb .col-title {
    margin-bottom: 20px;
  }
}
.cid-ubTo3OCDYb .mbr-section-title {
  color: #f90505;
  text-align: center;
}
.cid-ubTo3OCDYb .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-ubTo3OCDYb .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-ubTo3P6Eze {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ubTo3P6Eze .col-title {
    margin-bottom: 20px;
  }
}
.cid-ubTo3P6Eze .mbr-section-title {
  color: #000000;
}
.cid-ubTo3P6Eze .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-ubTo3P6Eze .mbr-text {
  color: #000000;
}
.cid-ubTo3P6Eze .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-ubTo3P6Eze p {
  line-height: 1.2;
}
.cid-ubTo3P6Eze .mbr-text1 {
  color: #000000;
}
.cid-ubTo3P6Eze .mbr-text2 {
  color: #005241;
}
.cid-ubTo3P6Eze .mbr-text3 {
  color: #000000;
}
.cid-ubTo3POuiG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ubTo3POuiG .col-title {
    margin-bottom: 20px;
  }
}
.cid-ubTo3POuiG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ubTo3POuiG .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-ubTo3POuiG .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ubTo3Qmia7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ubTo3Qmia7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ubTo3R1VmT {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ubTo3R1VmT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ubTo3Rwpf9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-ubTo3Rwpf9 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-ubTo3Rwpf9 .mbr-text {
  color: #c1c1c1;
}
.cid-uc70QHNVnu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uc70QHNVnu nav.navbar {
  position: fixed;
}
.cid-uc70QHNVnu .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-uc70QHNVnu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uc70QHNVnu .dropdown-item:hover,
.cid-uc70QHNVnu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uc70QHNVnu .dropdown-item:hover span {
  color: white;
}
.cid-uc70QHNVnu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uc70QHNVnu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uc70QHNVnu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uc70QHNVnu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uc70QHNVnu .nav-link {
  position: relative;
}
.cid-uc70QHNVnu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uc70QHNVnu .container {
    flex-wrap: nowrap;
  }
}
.cid-uc70QHNVnu .navbar-caption:hover,
.cid-uc70QHNVnu .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uc70QHNVnu .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uc70QHNVnu .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uc70QHNVnu .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uc70QHNVnu .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uc70QHNVnu .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uc70QHNVnu .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uc70QHNVnu .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uc70QHNVnu .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uc70QHNVnu .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uc70QHNVnu .dropdown-menu,
.cid-uc70QHNVnu .navbar.opened {
  background: #ffffff !important;
}
.cid-uc70QHNVnu .nav-item:focus,
.cid-uc70QHNVnu .nav-link:focus {
  outline: none;
}
.cid-uc70QHNVnu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uc70QHNVnu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uc70QHNVnu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uc70QHNVnu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uc70QHNVnu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uc70QHNVnu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uc70QHNVnu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uc70QHNVnu .navbar.opened {
  transition: all 0.3s;
}
.cid-uc70QHNVnu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uc70QHNVnu .navbar .navbar-logo img {
  width: auto;
}
.cid-uc70QHNVnu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uc70QHNVnu .navbar.collapsed {
  justify-content: center;
}
.cid-uc70QHNVnu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uc70QHNVnu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uc70QHNVnu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uc70QHNVnu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uc70QHNVnu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uc70QHNVnu .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-uc70QHNVnu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uc70QHNVnu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uc70QHNVnu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uc70QHNVnu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uc70QHNVnu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uc70QHNVnu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uc70QHNVnu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uc70QHNVnu .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-uc70QHNVnu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uc70QHNVnu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uc70QHNVnu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uc70QHNVnu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uc70QHNVnu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uc70QHNVnu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uc70QHNVnu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uc70QHNVnu .navbar.navbar-short {
  min-height: 70px;
}
.cid-uc70QHNVnu .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-uc70QHNVnu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uc70QHNVnu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uc70QHNVnu .dropdown-item.active,
.cid-uc70QHNVnu .dropdown-item:active {
  background-color: transparent;
}
.cid-uc70QHNVnu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uc70QHNVnu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uc70QHNVnu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uc70QHNVnu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uc70QHNVnu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uc70QHNVnu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uc70QHNVnu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uc70QHNVnu .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uc70QHNVnu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uc70QHNVnu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uc70QHNVnu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uc70QHNVnu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc70QHNVnu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc70QHNVnu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uc70QHNVnu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc70QHNVnu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uc70QHNVnu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uc70QHNVnu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc70QHNVnu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uc70QHNVnu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uc70QHNVnu .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-uc70QHNVnu .navbar {
    height: 70px;
  }
  .cid-uc70QHNVnu .navbar.opened {
    height: auto;
  }
  .cid-uc70QHNVnu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uc70QHNVnu .container-fluid {
  padding: 0 1rem !important;
}
.cid-uc70QHNVnu .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uc70QHNVnu .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uc70QHNVnu .navbar-collapse {
    width: 100%;
  }
  .cid-uc70QHNVnu .navbar-nav {
    width: 100%;
  }
  .cid-uc70QHNVnu .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uc70QIHh2C {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uc70QIHh2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc70QIHh2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uc70QIHh2C .col-content {
    text-align: center;
  }
}
.cid-uc70QIHh2C .label-container {
  margin-bottom: 16px;
}
.cid-uc70QIHh2C .label-text {
  color: #ffffff;
}
.cid-uc70QIHh2C .label-text-2 {
  color: #ffffff;
}
.cid-uc70QIHh2C .mbr-section-title {
  color: #ffffff;
}
.cid-uc70QIHh2C .text-container {
  margin-top: 24px;
}
.cid-uc70QIHh2C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uc70QIHh2C .mbr-text {
  color: #b79b6c;
}
.cid-uc70QIHh2C .mbr-section-btn {
  margin-top: 28px;
}
.cid-uc70QIHh2C .mbr-text,
.cid-uc70QIHh2C .mbr-section-btn {
  color: #ffffff;
}
.cid-uc70QJixJO {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
.cid-uc70QJixJO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc70QJixJO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc70QJixJO .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uc70QJixJO .mbr-section-title {
  color: #24262b;
}
.cid-uc70QJixJO .mbr-section-subtitle {
  color: #24262b;
}
.cid-uc70QJixJO .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uc70QJixJO .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #92b5d5;
}
@media (max-width: 767px) {
  .cid-uc70QJixJO .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uc70QJixJO .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uc70QJixJO .card-subtitle {
  color: #24262b;
}
.cid-uc70QJixJO .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uc70QJixJO .mbr-section-btn {
  margin-top: 20px;
}
.cid-uc70QJixJO .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uc70QJixJO .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uc70QL0VgZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uc70QL0VgZ .col-title {
    margin-bottom: 20px;
  }
}
.cid-uc70QL0VgZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uc70QL0VgZ .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uc70QL0VgZ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uc70QLNIla {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uc70QLNIla .col-title {
    margin-bottom: 20px;
  }
}
.cid-uc70QLNIla .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uc70QLNIla .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uc70QLNIla .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-uc70QMegwj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uc70QMegwj .col-title {
    margin-bottom: 20px;
  }
}
.cid-uc70QMegwj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uc70QMegwj .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uc70QMegwj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uc70QMM0bS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uc70QMM0bS .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uc70QMM0bS .mbr-text {
  color: #c1c1c1;
}
.cid-ucdTRj3qGh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-ucdTRj3qGh nav.navbar {
  position: fixed;
}
.cid-ucdTRj3qGh .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-ucdTRj3qGh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucdTRj3qGh .dropdown-item:hover,
.cid-ucdTRj3qGh .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-ucdTRj3qGh .dropdown-item:hover span {
  color: white;
}
.cid-ucdTRj3qGh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucdTRj3qGh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucdTRj3qGh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucdTRj3qGh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucdTRj3qGh .nav-link {
  position: relative;
}
.cid-ucdTRj3qGh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucdTRj3qGh .container {
    flex-wrap: nowrap;
  }
}
.cid-ucdTRj3qGh .navbar-caption:hover,
.cid-ucdTRj3qGh .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-ucdTRj3qGh .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-ucdTRj3qGh .navbar-nav .nav-item {
  color: #24262b;
}
.cid-ucdTRj3qGh .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-ucdTRj3qGh .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-ucdTRj3qGh .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-ucdTRj3qGh .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-ucdTRj3qGh .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-ucdTRj3qGh .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-ucdTRj3qGh .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-ucdTRj3qGh .dropdown-menu,
.cid-ucdTRj3qGh .navbar.opened {
  background: #ffffff !important;
}
.cid-ucdTRj3qGh .nav-item:focus,
.cid-ucdTRj3qGh .nav-link:focus {
  outline: none;
}
.cid-ucdTRj3qGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucdTRj3qGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucdTRj3qGh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucdTRj3qGh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucdTRj3qGh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucdTRj3qGh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucdTRj3qGh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-ucdTRj3qGh .navbar.opened {
  transition: all 0.3s;
}
.cid-ucdTRj3qGh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucdTRj3qGh .navbar .navbar-logo img {
  width: auto;
}
.cid-ucdTRj3qGh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucdTRj3qGh .navbar.collapsed {
  justify-content: center;
}
.cid-ucdTRj3qGh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucdTRj3qGh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucdTRj3qGh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-ucdTRj3qGh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucdTRj3qGh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucdTRj3qGh .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-ucdTRj3qGh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucdTRj3qGh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucdTRj3qGh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucdTRj3qGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucdTRj3qGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucdTRj3qGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucdTRj3qGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucdTRj3qGh .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-ucdTRj3qGh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucdTRj3qGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucdTRj3qGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucdTRj3qGh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucdTRj3qGh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucdTRj3qGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucdTRj3qGh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucdTRj3qGh .navbar.navbar-short {
  min-height: 70px;
}
.cid-ucdTRj3qGh .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-ucdTRj3qGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucdTRj3qGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucdTRj3qGh .dropdown-item.active,
.cid-ucdTRj3qGh .dropdown-item:active {
  background-color: transparent;
}
.cid-ucdTRj3qGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucdTRj3qGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucdTRj3qGh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucdTRj3qGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucdTRj3qGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucdTRj3qGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucdTRj3qGh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucdTRj3qGh .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-ucdTRj3qGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucdTRj3qGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucdTRj3qGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucdTRj3qGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucdTRj3qGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucdTRj3qGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucdTRj3qGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucdTRj3qGh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucdTRj3qGh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucdTRj3qGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucdTRj3qGh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucdTRj3qGh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucdTRj3qGh .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-ucdTRj3qGh .navbar {
    height: 70px;
  }
  .cid-ucdTRj3qGh .navbar.opened {
    height: auto;
  }
  .cid-ucdTRj3qGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucdTRj3qGh .container-fluid {
  padding: 0 1rem !important;
}
.cid-ucdTRj3qGh .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-ucdTRj3qGh .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-ucdTRj3qGh .navbar-collapse {
    width: 100%;
  }
  .cid-ucdTRj3qGh .navbar-nav {
    width: 100%;
  }
  .cid-ucdTRj3qGh .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-ucdTRjGdfF {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-ucdTRjGdfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucdTRjGdfF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ucdTRjGdfF .col-content {
    text-align: center;
  }
}
.cid-ucdTRjGdfF .label-container {
  margin-bottom: 16px;
}
.cid-ucdTRjGdfF .label-text {
  color: #ffffff;
}
.cid-ucdTRjGdfF .label-text-2 {
  color: #ffffff;
}
.cid-ucdTRjGdfF .mbr-section-title {
  color: #ffffff;
}
.cid-ucdTRjGdfF .text-container {
  margin-top: 24px;
}
.cid-ucdTRjGdfF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucdTRjGdfF .mbr-text {
  color: #b79b6c;
}
.cid-ucdTRjGdfF .mbr-section-btn {
  margin-top: 28px;
}
.cid-ucdTRjGdfF .mbr-text,
.cid-ucdTRjGdfF .mbr-section-btn {
  color: #ffffff;
}
.cid-ucdTRjYcmQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucdTRjYcmQ .col-title {
    margin-bottom: 20px;
  }
}
.cid-ucdTRjYcmQ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucdTRjYcmQ .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-ucdTRjYcmQ .mbr-text {
  color: #000000;
}
.cid-ucxT14M7Y9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucxT14M7Y9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucxT14M7Y9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucxT14M7Y9 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucxT14M7Y9 .mbr-section-title {
  color: #24262b;
}
.cid-ucxT14M7Y9 .mbr-section-subtitle {
  color: #24262b;
}
.cid-ucxT14M7Y9 .items-row {
  row-gap: 32px;
}
.cid-ucxT14M7Y9 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucxT14M7Y9 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucxT14M7Y9 .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-ucxT14M7Y9 .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-ucxT14M7Y9 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucxT14M7Y9 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucxT14M7Y9 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucxT14M7Y9 .mbr-item-subtitle {
  color: #24262b;
}
.cid-ucxT14M7Y9 .carousel-control,
.cid-ucxT14M7Y9 .close {
  background: #1b1b1b;
}
.cid-ucxT14M7Y9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucxT14M7Y9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucxT14M7Y9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucxT14M7Y9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucxT14M7Y9 .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-ucxT14M7Y9 .close::before {
  content: '\e91a';
}
.cid-ucxT14M7Y9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucxT14M7Y9 .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-ucxT14M7Y9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucxT14M7Y9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucxT14M7Y9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucxT14M7Y9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucxT14M7Y9 .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-ucxT14M7Y9 .carousel-indicators li.active,
.cid-ucxT14M7Y9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucxT14M7Y9 .carousel-indicators li::after,
.cid-ucxT14M7Y9 .carousel-indicators li::before {
  content: none;
}
.cid-ucxT14M7Y9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucxT14M7Y9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucxT14M7Y9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucxT14M7Y9 .carousel-indicators {
    display: none;
  }
}
.cid-ucxT14M7Y9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucxT14M7Y9 .carousel-inner > .active {
  display: block;
}
.cid-ucxT14M7Y9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucxT14M7Y9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucxT14M7Y9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucxT14M7Y9 .carousel-control,
  .cid-ucxT14M7Y9 .carousel-indicators,
  .cid-ucxT14M7Y9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucxT14M7Y9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucxT14M7Y9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucxT14M7Y9 .carousel-indicators .active,
.cid-ucxT14M7Y9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucxT14M7Y9 .carousel-indicators .active {
  background: #fff;
}
.cid-ucxT14M7Y9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucxT14M7Y9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucxT14M7Y9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucxT14M7Y9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucxT14M7Y9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucxT14M7Y9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucxT14M7Y9 .carousel {
  width: 100%;
}
.cid-ucxT14M7Y9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucxT14M7Y9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucxT14M7Y9 .modal.fade .modal-dialog,
.cid-ucxT14M7Y9 .modal.in .modal-dialog {
  transform: none;
}
.cid-ucxT14M7Y9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucxT14M7Y9 H6 {
  text-align: center;
}
.cid-ucdYzDTAW3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucdYzDTAW3 .col-title {
    margin-bottom: 20px;
  }
}
.cid-ucdYzDTAW3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucdYzDTAW3 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-ucdYzDTAW3 .mbr-text {
  color: #000000;
}
.cid-ucDBZJrjAw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucDBZJrjAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucDBZJrjAw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucDBZJrjAw .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucDBZJrjAw .mbr-section-title {
  color: #24262b;
}
.cid-ucDBZJrjAw .mbr-section-subtitle {
  color: #24262b;
}
.cid-ucDBZJrjAw .items-row {
  row-gap: 32px;
}
.cid-ucDBZJrjAw .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucDBZJrjAw .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucDBZJrjAw .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-ucDBZJrjAw .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-ucDBZJrjAw .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucDBZJrjAw .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucDBZJrjAw .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucDBZJrjAw .mbr-item-subtitle {
  color: #24262b;
}
.cid-ucDBZJrjAw .carousel-control,
.cid-ucDBZJrjAw .close {
  background: #1b1b1b;
}
.cid-ucDBZJrjAw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucDBZJrjAw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucDBZJrjAw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucDBZJrjAw .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucDBZJrjAw .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-ucDBZJrjAw .close::before {
  content: '\e91a';
}
.cid-ucDBZJrjAw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucDBZJrjAw .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-ucDBZJrjAw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucDBZJrjAw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucDBZJrjAw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucDBZJrjAw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucDBZJrjAw .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-ucDBZJrjAw .carousel-indicators li.active,
.cid-ucDBZJrjAw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucDBZJrjAw .carousel-indicators li::after,
.cid-ucDBZJrjAw .carousel-indicators li::before {
  content: none;
}
.cid-ucDBZJrjAw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucDBZJrjAw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucDBZJrjAw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucDBZJrjAw .carousel-indicators {
    display: none;
  }
}
.cid-ucDBZJrjAw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucDBZJrjAw .carousel-inner > .active {
  display: block;
}
.cid-ucDBZJrjAw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucDBZJrjAw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucDBZJrjAw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucDBZJrjAw .carousel-control,
  .cid-ucDBZJrjAw .carousel-indicators,
  .cid-ucDBZJrjAw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucDBZJrjAw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucDBZJrjAw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucDBZJrjAw .carousel-indicators .active,
.cid-ucDBZJrjAw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucDBZJrjAw .carousel-indicators .active {
  background: #fff;
}
.cid-ucDBZJrjAw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucDBZJrjAw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucDBZJrjAw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucDBZJrjAw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucDBZJrjAw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucDBZJrjAw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucDBZJrjAw .carousel {
  width: 100%;
}
.cid-ucDBZJrjAw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucDBZJrjAw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucDBZJrjAw .modal.fade .modal-dialog,
.cid-ucDBZJrjAw .modal.in .modal-dialog {
  transform: none;
}
.cid-ucDBZJrjAw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucDBZJrjAw H6 {
  text-align: center;
}
.cid-ucdTRkoCR5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-ucdTRkoCR5 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-ucdTRkoCR5 .mbr-text {
  color: #c1c1c1;
}
.cid-udMLQu2ruq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-udMLQu2ruq nav.navbar {
  position: fixed;
}
.cid-udMLQu2ruq .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-udMLQu2ruq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udMLQu2ruq .dropdown-item:hover,
.cid-udMLQu2ruq .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-udMLQu2ruq .dropdown-item:hover span {
  color: white;
}
.cid-udMLQu2ruq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udMLQu2ruq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udMLQu2ruq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udMLQu2ruq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udMLQu2ruq .nav-link {
  position: relative;
}
.cid-udMLQu2ruq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udMLQu2ruq .container {
    flex-wrap: nowrap;
  }
}
.cid-udMLQu2ruq .navbar-caption:hover,
.cid-udMLQu2ruq .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-udMLQu2ruq .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-udMLQu2ruq .navbar-nav .nav-item {
  color: #24262b;
}
.cid-udMLQu2ruq .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-udMLQu2ruq .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-udMLQu2ruq .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-udMLQu2ruq .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-udMLQu2ruq .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-udMLQu2ruq .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-udMLQu2ruq .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-udMLQu2ruq .dropdown-menu,
.cid-udMLQu2ruq .navbar.opened {
  background: #ffffff !important;
}
.cid-udMLQu2ruq .nav-item:focus,
.cid-udMLQu2ruq .nav-link:focus {
  outline: none;
}
.cid-udMLQu2ruq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udMLQu2ruq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udMLQu2ruq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udMLQu2ruq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udMLQu2ruq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udMLQu2ruq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udMLQu2ruq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-udMLQu2ruq .navbar.opened {
  transition: all 0.3s;
}
.cid-udMLQu2ruq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udMLQu2ruq .navbar .navbar-logo img {
  width: auto;
}
.cid-udMLQu2ruq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udMLQu2ruq .navbar.collapsed {
  justify-content: center;
}
.cid-udMLQu2ruq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udMLQu2ruq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udMLQu2ruq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-udMLQu2ruq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udMLQu2ruq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udMLQu2ruq .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-udMLQu2ruq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udMLQu2ruq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udMLQu2ruq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udMLQu2ruq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udMLQu2ruq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udMLQu2ruq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udMLQu2ruq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udMLQu2ruq .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-udMLQu2ruq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udMLQu2ruq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udMLQu2ruq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udMLQu2ruq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udMLQu2ruq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udMLQu2ruq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udMLQu2ruq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udMLQu2ruq .navbar.navbar-short {
  min-height: 70px;
}
.cid-udMLQu2ruq .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-udMLQu2ruq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udMLQu2ruq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udMLQu2ruq .dropdown-item.active,
.cid-udMLQu2ruq .dropdown-item:active {
  background-color: transparent;
}
.cid-udMLQu2ruq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udMLQu2ruq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udMLQu2ruq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udMLQu2ruq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-udMLQu2ruq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udMLQu2ruq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udMLQu2ruq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udMLQu2ruq .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-udMLQu2ruq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udMLQu2ruq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-udMLQu2ruq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udMLQu2ruq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udMLQu2ruq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udMLQu2ruq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udMLQu2ruq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udMLQu2ruq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udMLQu2ruq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udMLQu2ruq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udMLQu2ruq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-udMLQu2ruq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udMLQu2ruq .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-udMLQu2ruq .navbar {
    height: 70px;
  }
  .cid-udMLQu2ruq .navbar.opened {
    height: auto;
  }
  .cid-udMLQu2ruq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udMLQu2ruq .container-fluid {
  padding: 0 1rem !important;
}
.cid-udMLQu2ruq .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-udMLQu2ruq .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-udMLQu2ruq .navbar-collapse {
    width: 100%;
  }
  .cid-udMLQu2ruq .navbar-nav {
    width: 100%;
  }
  .cid-udMLQu2ruq .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-udMLQuIo2J {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-udMLQuIo2J .mbr-fallback-image.disabled {
  display: none;
}
.cid-udMLQuIo2J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-udMLQuIo2J .col-content {
    text-align: center;
  }
}
.cid-udMLQuIo2J .label-container {
  margin-bottom: 16px;
}
.cid-udMLQuIo2J .label-text {
  color: #ffffff;
}
.cid-udMLQuIo2J .label-text-2 {
  color: #ffffff;
}
.cid-udMLQuIo2J .mbr-section-title {
  color: #ffffff;
}
.cid-udMLQuIo2J .text-container {
  margin-top: 24px;
}
.cid-udMLQuIo2J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udMLQuIo2J .mbr-text {
  color: #b79b6c;
}
.cid-udMLQuIo2J .mbr-section-btn {
  margin-top: 28px;
}
.cid-udMLQuIo2J .mbr-text,
.cid-udMLQuIo2J .mbr-section-btn {
  color: #ffffff;
}
.cid-udMLQvQGNI {
  padding-top: 5rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-udMLQvQGNI .mbr-fallback-image.disabled {
  display: none;
}
.cid-udMLQvQGNI .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-udMLQvQGNI .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-udMLQvQGNI .container {
    padding: 0 12px;
  }
}
.cid-udMLQvQGNI .row {
  justify-content: center;
}
.cid-udMLQvQGNI .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-udMLQvQGNI .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-udMLQvQGNI .image-wrapper img {
    height: 350px;
  }
}
.cid-udMLQw9B1b {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-udMLQw9B1b .col-title {
    margin-bottom: 20px;
  }
}
.cid-udMLQw9B1b .mbr-section-title {
  color: #000000;
}
.cid-udMLQw9B1b .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-udMLQw9B1b .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-udMLQyV5YW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-udMLQyV5YW .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-udMLQyV5YW .mbr-text {
  color: #c1c1c1;
}
.cid-umgtWnCNxz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-umgtWnCNxz nav.navbar {
  position: fixed;
}
.cid-umgtWnCNxz .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-umgtWnCNxz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgtWnCNxz .dropdown-item:hover,
.cid-umgtWnCNxz .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umgtWnCNxz .dropdown-item:hover span {
  color: white;
}
.cid-umgtWnCNxz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgtWnCNxz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgtWnCNxz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgtWnCNxz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgtWnCNxz .nav-link {
  position: relative;
}
.cid-umgtWnCNxz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgtWnCNxz .container {
    flex-wrap: nowrap;
  }
}
.cid-umgtWnCNxz .navbar-caption:hover,
.cid-umgtWnCNxz .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-umgtWnCNxz .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-umgtWnCNxz .navbar-nav .nav-item {
  color: #24262b;
}
.cid-umgtWnCNxz .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-umgtWnCNxz .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-umgtWnCNxz .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-umgtWnCNxz .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-umgtWnCNxz .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-umgtWnCNxz .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-umgtWnCNxz .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umgtWnCNxz .dropdown-menu,
.cid-umgtWnCNxz .navbar.opened {
  background: #ffffff !important;
}
.cid-umgtWnCNxz .nav-item:focus,
.cid-umgtWnCNxz .nav-link:focus {
  outline: none;
}
.cid-umgtWnCNxz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgtWnCNxz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgtWnCNxz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgtWnCNxz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgtWnCNxz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgtWnCNxz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgtWnCNxz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-umgtWnCNxz .navbar.opened {
  transition: all 0.3s;
}
.cid-umgtWnCNxz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgtWnCNxz .navbar .navbar-logo img {
  width: auto;
}
.cid-umgtWnCNxz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgtWnCNxz .navbar.collapsed {
  justify-content: center;
}
.cid-umgtWnCNxz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgtWnCNxz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgtWnCNxz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-umgtWnCNxz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgtWnCNxz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgtWnCNxz .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-umgtWnCNxz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgtWnCNxz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgtWnCNxz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgtWnCNxz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgtWnCNxz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgtWnCNxz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgtWnCNxz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgtWnCNxz .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-umgtWnCNxz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgtWnCNxz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgtWnCNxz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgtWnCNxz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgtWnCNxz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgtWnCNxz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgtWnCNxz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgtWnCNxz .navbar.navbar-short {
  min-height: 70px;
}
.cid-umgtWnCNxz .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-umgtWnCNxz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgtWnCNxz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgtWnCNxz .dropdown-item.active,
.cid-umgtWnCNxz .dropdown-item:active {
  background-color: transparent;
}
.cid-umgtWnCNxz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgtWnCNxz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgtWnCNxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgtWnCNxz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umgtWnCNxz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgtWnCNxz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgtWnCNxz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgtWnCNxz .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-umgtWnCNxz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umgtWnCNxz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umgtWnCNxz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umgtWnCNxz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umgtWnCNxz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umgtWnCNxz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umgtWnCNxz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umgtWnCNxz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umgtWnCNxz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgtWnCNxz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umgtWnCNxz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgtWnCNxz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgtWnCNxz .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-umgtWnCNxz .navbar {
    height: 70px;
  }
  .cid-umgtWnCNxz .navbar.opened {
    height: auto;
  }
  .cid-umgtWnCNxz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgtWnCNxz .container-fluid {
  padding: 0 1rem !important;
}
.cid-umgtWnCNxz .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-umgtWnCNxz .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-umgtWnCNxz .navbar-collapse {
    width: 100%;
  }
  .cid-umgtWnCNxz .navbar-nav {
    width: 100%;
  }
  .cid-umgtWnCNxz .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-umgtWowLiC {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-umgtWowLiC .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgtWowLiC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-umgtWowLiC .col-content {
    text-align: center;
  }
}
.cid-umgtWowLiC .label-container {
  margin-bottom: 16px;
}
.cid-umgtWowLiC .label-text {
  color: #ffffff;
}
.cid-umgtWowLiC .label-text-2 {
  color: #ffffff;
}
.cid-umgtWowLiC .mbr-section-title {
  color: #ffffff;
}
.cid-umgtWowLiC .text-container {
  margin-top: 24px;
}
.cid-umgtWowLiC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umgtWowLiC .mbr-text {
  color: #b79b6c;
}
.cid-umgtWowLiC .mbr-section-btn {
  margin-top: 28px;
}
.cid-umgtWowLiC .mbr-text,
.cid-umgtWowLiC .mbr-section-btn {
  color: #ffffff;
}
.cid-umgtWpiMQn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umgtWpiMQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgtWpiMQn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgtWpiMQn .mbr-section-head {
  margin-bottom: 32px;
}
.cid-umgtWpiMQn .mbr-section-title {
  color: #24262b;
}
.cid-umgtWpiMQn .mbr-section-subtitle {
  color: #24262b;
}
.cid-umgtWpiMQn .items-row {
  row-gap: 32px;
}
.cid-umgtWpiMQn .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-umgtWpiMQn .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-umgtWpiMQn .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-umgtWpiMQn .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-umgtWpiMQn .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-umgtWpiMQn .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-umgtWpiMQn .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-umgtWpiMQn .mbr-item-subtitle {
  color: #24262b;
}
.cid-umgtWpiMQn .carousel-control,
.cid-umgtWpiMQn .close {
  background: #1b1b1b;
}
.cid-umgtWpiMQn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-umgtWpiMQn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-umgtWpiMQn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-umgtWpiMQn .carousel-control-next span {
  margin-left: 5px;
}
.cid-umgtWpiMQn .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-umgtWpiMQn .close::before {
  content: '\e91a';
}
.cid-umgtWpiMQn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-umgtWpiMQn .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-umgtWpiMQn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umgtWpiMQn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umgtWpiMQn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umgtWpiMQn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-umgtWpiMQn .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-umgtWpiMQn .carousel-indicators li.active,
.cid-umgtWpiMQn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umgtWpiMQn .carousel-indicators li::after,
.cid-umgtWpiMQn .carousel-indicators li::before {
  content: none;
}
.cid-umgtWpiMQn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umgtWpiMQn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-umgtWpiMQn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-umgtWpiMQn .carousel-indicators {
    display: none;
  }
}
.cid-umgtWpiMQn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-umgtWpiMQn .carousel-inner > .active {
  display: block;
}
.cid-umgtWpiMQn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umgtWpiMQn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umgtWpiMQn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-umgtWpiMQn .carousel-control,
  .cid-umgtWpiMQn .carousel-indicators,
  .cid-umgtWpiMQn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-umgtWpiMQn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-umgtWpiMQn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-umgtWpiMQn .carousel-indicators .active,
.cid-umgtWpiMQn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-umgtWpiMQn .carousel-indicators .active {
  background: #fff;
}
.cid-umgtWpiMQn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-umgtWpiMQn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-umgtWpiMQn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-umgtWpiMQn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-umgtWpiMQn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-umgtWpiMQn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-umgtWpiMQn .carousel {
  width: 100%;
}
.cid-umgtWpiMQn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-umgtWpiMQn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-umgtWpiMQn .modal.fade .modal-dialog,
.cid-umgtWpiMQn .modal.in .modal-dialog {
  transform: none;
}
.cid-umgtWpiMQn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-umgtWpiMQn H6 {
  text-align: center;
}
.cid-umgtWrmO2M {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-umgtWrmO2M .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-umgtWrmO2M .mbr-text {
  color: #c1c1c1;
}
.cid-umgsa1ZE3l {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-umgsa1ZE3l nav.navbar {
  position: fixed;
}
.cid-umgsa1ZE3l .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-umgsa1ZE3l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgsa1ZE3l .dropdown-item:hover,
.cid-umgsa1ZE3l .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umgsa1ZE3l .dropdown-item:hover span {
  color: white;
}
.cid-umgsa1ZE3l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgsa1ZE3l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgsa1ZE3l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgsa1ZE3l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgsa1ZE3l .nav-link {
  position: relative;
}
.cid-umgsa1ZE3l .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgsa1ZE3l .container {
    flex-wrap: nowrap;
  }
}
.cid-umgsa1ZE3l .navbar-caption:hover,
.cid-umgsa1ZE3l .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-umgsa1ZE3l .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-umgsa1ZE3l .navbar-nav .nav-item {
  color: #24262b;
}
.cid-umgsa1ZE3l .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-umgsa1ZE3l .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-umgsa1ZE3l .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-umgsa1ZE3l .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-umgsa1ZE3l .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-umgsa1ZE3l .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-umgsa1ZE3l .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umgsa1ZE3l .dropdown-menu,
.cid-umgsa1ZE3l .navbar.opened {
  background: #ffffff !important;
}
.cid-umgsa1ZE3l .nav-item:focus,
.cid-umgsa1ZE3l .nav-link:focus {
  outline: none;
}
.cid-umgsa1ZE3l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgsa1ZE3l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgsa1ZE3l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgsa1ZE3l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgsa1ZE3l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgsa1ZE3l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgsa1ZE3l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-umgsa1ZE3l .navbar.opened {
  transition: all 0.3s;
}
.cid-umgsa1ZE3l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgsa1ZE3l .navbar .navbar-logo img {
  width: auto;
}
.cid-umgsa1ZE3l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgsa1ZE3l .navbar.collapsed {
  justify-content: center;
}
.cid-umgsa1ZE3l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgsa1ZE3l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgsa1ZE3l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-umgsa1ZE3l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgsa1ZE3l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgsa1ZE3l .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-umgsa1ZE3l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgsa1ZE3l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgsa1ZE3l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgsa1ZE3l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgsa1ZE3l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgsa1ZE3l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgsa1ZE3l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgsa1ZE3l .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-umgsa1ZE3l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgsa1ZE3l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgsa1ZE3l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgsa1ZE3l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgsa1ZE3l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgsa1ZE3l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgsa1ZE3l .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgsa1ZE3l .navbar.navbar-short {
  min-height: 70px;
}
.cid-umgsa1ZE3l .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-umgsa1ZE3l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgsa1ZE3l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgsa1ZE3l .dropdown-item.active,
.cid-umgsa1ZE3l .dropdown-item:active {
  background-color: transparent;
}
.cid-umgsa1ZE3l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgsa1ZE3l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgsa1ZE3l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgsa1ZE3l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umgsa1ZE3l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgsa1ZE3l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgsa1ZE3l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgsa1ZE3l .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-umgsa1ZE3l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umgsa1ZE3l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umgsa1ZE3l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umgsa1ZE3l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umgsa1ZE3l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umgsa1ZE3l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umgsa1ZE3l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umgsa1ZE3l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umgsa1ZE3l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgsa1ZE3l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umgsa1ZE3l .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgsa1ZE3l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgsa1ZE3l .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-umgsa1ZE3l .navbar {
    height: 70px;
  }
  .cid-umgsa1ZE3l .navbar.opened {
    height: auto;
  }
  .cid-umgsa1ZE3l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgsa1ZE3l .container-fluid {
  padding: 0 1rem !important;
}
.cid-umgsa1ZE3l .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-umgsa1ZE3l .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-umgsa1ZE3l .navbar-collapse {
    width: 100%;
  }
  .cid-umgsa1ZE3l .navbar-nav {
    width: 100%;
  }
  .cid-umgsa1ZE3l .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-umgsa2y0vJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-umgsa2y0vJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgsa2y0vJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-umgsa2y0vJ .col-content {
    text-align: center;
  }
}
.cid-umgsa2y0vJ .label-container {
  margin-bottom: 16px;
}
.cid-umgsa2y0vJ .label-text {
  color: #ffffff;
}
.cid-umgsa2y0vJ .label-text-2 {
  color: #ffffff;
}
.cid-umgsa2y0vJ .mbr-section-title {
  color: #ffffff;
}
.cid-umgsa2y0vJ .text-container {
  margin-top: 24px;
}
.cid-umgsa2y0vJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umgsa2y0vJ .mbr-text {
  color: #b79b6c;
}
.cid-umgsa2y0vJ .mbr-section-btn {
  margin-top: 28px;
}
.cid-umgsa2y0vJ .mbr-text,
.cid-umgsa2y0vJ .mbr-section-btn {
  color: #ffffff;
}
.cid-umgsa36a8F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umgsa36a8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgsa36a8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgsa36a8F .mbr-section-head {
  margin-bottom: 32px;
}
.cid-umgsa36a8F .mbr-section-title {
  color: #24262b;
}
.cid-umgsa36a8F .mbr-section-subtitle {
  color: #24262b;
}
.cid-umgsa36a8F .items-row {
  row-gap: 32px;
}
.cid-umgsa36a8F .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-umgsa36a8F .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-umgsa36a8F .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-umgsa36a8F .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-umgsa36a8F .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-umgsa36a8F .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-umgsa36a8F .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-umgsa36a8F .mbr-item-subtitle {
  color: #24262b;
}
.cid-umgsa36a8F .carousel-control,
.cid-umgsa36a8F .close {
  background: #1b1b1b;
}
.cid-umgsa36a8F .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-umgsa36a8F .carousel-control-prev span {
  margin-right: 5px;
}
.cid-umgsa36a8F .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-umgsa36a8F .carousel-control-next span {
  margin-left: 5px;
}
.cid-umgsa36a8F .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-umgsa36a8F .close::before {
  content: '\e91a';
}
.cid-umgsa36a8F .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-umgsa36a8F .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-umgsa36a8F .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umgsa36a8F .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umgsa36a8F .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umgsa36a8F .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-umgsa36a8F .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-umgsa36a8F .carousel-indicators li.active,
.cid-umgsa36a8F .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umgsa36a8F .carousel-indicators li::after,
.cid-umgsa36a8F .carousel-indicators li::before {
  content: none;
}
.cid-umgsa36a8F .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umgsa36a8F .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-umgsa36a8F .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-umgsa36a8F .carousel-indicators {
    display: none;
  }
}
.cid-umgsa36a8F .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-umgsa36a8F .carousel-inner > .active {
  display: block;
}
.cid-umgsa36a8F .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umgsa36a8F .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umgsa36a8F .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-umgsa36a8F .carousel-control,
  .cid-umgsa36a8F .carousel-indicators,
  .cid-umgsa36a8F .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-umgsa36a8F .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-umgsa36a8F .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-umgsa36a8F .carousel-indicators .active,
.cid-umgsa36a8F .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-umgsa36a8F .carousel-indicators .active {
  background: #fff;
}
.cid-umgsa36a8F .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-umgsa36a8F .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-umgsa36a8F .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-umgsa36a8F .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-umgsa36a8F .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-umgsa36a8F .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-umgsa36a8F .carousel {
  width: 100%;
}
.cid-umgsa36a8F .modal-backdrop.in {
  opacity: 0.8;
}
.cid-umgsa36a8F .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-umgsa36a8F .modal.fade .modal-dialog,
.cid-umgsa36a8F .modal.in .modal-dialog {
  transform: none;
}
.cid-umgsa36a8F .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-umgsa36a8F H6 {
  text-align: center;
}
.cid-umgsa41XfQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-umgsa41XfQ .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-umgsa41XfQ .mbr-text {
  color: #c1c1c1;
}
.cid-umgp5ZiolL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-umgp5ZiolL nav.navbar {
  position: fixed;
}
.cid-umgp5ZiolL .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-umgp5ZiolL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgp5ZiolL .dropdown-item:hover,
.cid-umgp5ZiolL .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umgp5ZiolL .dropdown-item:hover span {
  color: white;
}
.cid-umgp5ZiolL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgp5ZiolL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgp5ZiolL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgp5ZiolL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgp5ZiolL .nav-link {
  position: relative;
}
.cid-umgp5ZiolL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgp5ZiolL .container {
    flex-wrap: nowrap;
  }
}
.cid-umgp5ZiolL .navbar-caption:hover,
.cid-umgp5ZiolL .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-umgp5ZiolL .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-umgp5ZiolL .navbar-nav .nav-item {
  color: #24262b;
}
.cid-umgp5ZiolL .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-umgp5ZiolL .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-umgp5ZiolL .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-umgp5ZiolL .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-umgp5ZiolL .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-umgp5ZiolL .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-umgp5ZiolL .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umgp5ZiolL .dropdown-menu,
.cid-umgp5ZiolL .navbar.opened {
  background: #ffffff !important;
}
.cid-umgp5ZiolL .nav-item:focus,
.cid-umgp5ZiolL .nav-link:focus {
  outline: none;
}
.cid-umgp5ZiolL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgp5ZiolL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgp5ZiolL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgp5ZiolL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgp5ZiolL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgp5ZiolL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgp5ZiolL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-umgp5ZiolL .navbar.opened {
  transition: all 0.3s;
}
.cid-umgp5ZiolL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgp5ZiolL .navbar .navbar-logo img {
  width: auto;
}
.cid-umgp5ZiolL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgp5ZiolL .navbar.collapsed {
  justify-content: center;
}
.cid-umgp5ZiolL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgp5ZiolL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgp5ZiolL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-umgp5ZiolL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgp5ZiolL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgp5ZiolL .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-umgp5ZiolL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgp5ZiolL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgp5ZiolL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgp5ZiolL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgp5ZiolL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgp5ZiolL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgp5ZiolL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgp5ZiolL .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-umgp5ZiolL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgp5ZiolL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgp5ZiolL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgp5ZiolL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgp5ZiolL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgp5ZiolL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgp5ZiolL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgp5ZiolL .navbar.navbar-short {
  min-height: 70px;
}
.cid-umgp5ZiolL .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-umgp5ZiolL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgp5ZiolL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgp5ZiolL .dropdown-item.active,
.cid-umgp5ZiolL .dropdown-item:active {
  background-color: transparent;
}
.cid-umgp5ZiolL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgp5ZiolL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgp5ZiolL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgp5ZiolL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umgp5ZiolL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgp5ZiolL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgp5ZiolL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgp5ZiolL .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-umgp5ZiolL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umgp5ZiolL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umgp5ZiolL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umgp5ZiolL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umgp5ZiolL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umgp5ZiolL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umgp5ZiolL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umgp5ZiolL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umgp5ZiolL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgp5ZiolL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umgp5ZiolL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgp5ZiolL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgp5ZiolL .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-umgp5ZiolL .navbar {
    height: 70px;
  }
  .cid-umgp5ZiolL .navbar.opened {
    height: auto;
  }
  .cid-umgp5ZiolL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgp5ZiolL .container-fluid {
  padding: 0 1rem !important;
}
.cid-umgp5ZiolL .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-umgp5ZiolL .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-umgp5ZiolL .navbar-collapse {
    width: 100%;
  }
  .cid-umgp5ZiolL .navbar-nav {
    width: 100%;
  }
  .cid-umgp5ZiolL .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-umgp5ZL9Hx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-umgp5ZL9Hx .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgp5ZL9Hx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-umgp5ZL9Hx .col-content {
    text-align: center;
  }
}
.cid-umgp5ZL9Hx .label-container {
  margin-bottom: 16px;
}
.cid-umgp5ZL9Hx .label-text {
  color: #ffffff;
}
.cid-umgp5ZL9Hx .label-text-2 {
  color: #ffffff;
}
.cid-umgp5ZL9Hx .mbr-section-title {
  color: #ffffff;
}
.cid-umgp5ZL9Hx .text-container {
  margin-top: 24px;
}
.cid-umgp5ZL9Hx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umgp5ZL9Hx .mbr-text {
  color: #b79b6c;
}
.cid-umgp5ZL9Hx .mbr-section-btn {
  margin-top: 28px;
}
.cid-umgp5ZL9Hx .mbr-text,
.cid-umgp5ZL9Hx .mbr-section-btn {
  color: #ffffff;
}
.cid-umgpl2YdfU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umgpl2YdfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgpl2YdfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgpl2YdfU .mbr-section-head {
  margin-bottom: 32px;
}
.cid-umgpl2YdfU .mbr-section-title {
  color: #24262b;
}
.cid-umgpl2YdfU .mbr-section-subtitle {
  color: #24262b;
}
.cid-umgpl2YdfU .items-row {
  row-gap: 32px;
}
.cid-umgpl2YdfU .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-umgpl2YdfU .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-umgpl2YdfU .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-umgpl2YdfU .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-umgpl2YdfU .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-umgpl2YdfU .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-umgpl2YdfU .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-umgpl2YdfU .mbr-item-subtitle {
  color: #24262b;
}
.cid-umgpl2YdfU .carousel-control,
.cid-umgpl2YdfU .close {
  background: #1b1b1b;
}
.cid-umgpl2YdfU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-umgpl2YdfU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-umgpl2YdfU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-umgpl2YdfU .carousel-control-next span {
  margin-left: 5px;
}
.cid-umgpl2YdfU .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-umgpl2YdfU .close::before {
  content: '\e91a';
}
.cid-umgpl2YdfU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-umgpl2YdfU .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-umgpl2YdfU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umgpl2YdfU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umgpl2YdfU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umgpl2YdfU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-umgpl2YdfU .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-umgpl2YdfU .carousel-indicators li.active,
.cid-umgpl2YdfU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umgpl2YdfU .carousel-indicators li::after,
.cid-umgpl2YdfU .carousel-indicators li::before {
  content: none;
}
.cid-umgpl2YdfU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umgpl2YdfU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-umgpl2YdfU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-umgpl2YdfU .carousel-indicators {
    display: none;
  }
}
.cid-umgpl2YdfU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-umgpl2YdfU .carousel-inner > .active {
  display: block;
}
.cid-umgpl2YdfU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umgpl2YdfU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umgpl2YdfU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-umgpl2YdfU .carousel-control,
  .cid-umgpl2YdfU .carousel-indicators,
  .cid-umgpl2YdfU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-umgpl2YdfU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-umgpl2YdfU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-umgpl2YdfU .carousel-indicators .active,
.cid-umgpl2YdfU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-umgpl2YdfU .carousel-indicators .active {
  background: #fff;
}
.cid-umgpl2YdfU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-umgpl2YdfU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-umgpl2YdfU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-umgpl2YdfU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-umgpl2YdfU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-umgpl2YdfU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-umgpl2YdfU .carousel {
  width: 100%;
}
.cid-umgpl2YdfU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-umgpl2YdfU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-umgpl2YdfU .modal.fade .modal-dialog,
.cid-umgpl2YdfU .modal.in .modal-dialog {
  transform: none;
}
.cid-umgpl2YdfU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-umgpl2YdfU H6 {
  text-align: center;
}
.cid-umgp61vFHo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-umgp61vFHo .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-umgp61vFHo .mbr-text {
  color: #c1c1c1;
}
.cid-umguV3QAiX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-umguV3QAiX nav.navbar {
  position: fixed;
}
.cid-umguV3QAiX .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-umguV3QAiX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umguV3QAiX .dropdown-item:hover,
.cid-umguV3QAiX .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umguV3QAiX .dropdown-item:hover span {
  color: white;
}
.cid-umguV3QAiX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umguV3QAiX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umguV3QAiX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umguV3QAiX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umguV3QAiX .nav-link {
  position: relative;
}
.cid-umguV3QAiX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umguV3QAiX .container {
    flex-wrap: nowrap;
  }
}
.cid-umguV3QAiX .navbar-caption:hover,
.cid-umguV3QAiX .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-umguV3QAiX .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-umguV3QAiX .navbar-nav .nav-item {
  color: #24262b;
}
.cid-umguV3QAiX .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-umguV3QAiX .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-umguV3QAiX .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-umguV3QAiX .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-umguV3QAiX .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-umguV3QAiX .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-umguV3QAiX .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-umguV3QAiX .dropdown-menu,
.cid-umguV3QAiX .navbar.opened {
  background: #ffffff !important;
}
.cid-umguV3QAiX .nav-item:focus,
.cid-umguV3QAiX .nav-link:focus {
  outline: none;
}
.cid-umguV3QAiX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umguV3QAiX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umguV3QAiX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umguV3QAiX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umguV3QAiX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umguV3QAiX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umguV3QAiX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-umguV3QAiX .navbar.opened {
  transition: all 0.3s;
}
.cid-umguV3QAiX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umguV3QAiX .navbar .navbar-logo img {
  width: auto;
}
.cid-umguV3QAiX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umguV3QAiX .navbar.collapsed {
  justify-content: center;
}
.cid-umguV3QAiX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umguV3QAiX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umguV3QAiX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-umguV3QAiX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umguV3QAiX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umguV3QAiX .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-umguV3QAiX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umguV3QAiX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umguV3QAiX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umguV3QAiX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umguV3QAiX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umguV3QAiX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umguV3QAiX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umguV3QAiX .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-umguV3QAiX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umguV3QAiX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umguV3QAiX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umguV3QAiX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umguV3QAiX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umguV3QAiX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umguV3QAiX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umguV3QAiX .navbar.navbar-short {
  min-height: 70px;
}
.cid-umguV3QAiX .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-umguV3QAiX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umguV3QAiX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umguV3QAiX .dropdown-item.active,
.cid-umguV3QAiX .dropdown-item:active {
  background-color: transparent;
}
.cid-umguV3QAiX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umguV3QAiX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umguV3QAiX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umguV3QAiX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umguV3QAiX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umguV3QAiX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umguV3QAiX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umguV3QAiX .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-umguV3QAiX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umguV3QAiX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umguV3QAiX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umguV3QAiX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umguV3QAiX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umguV3QAiX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umguV3QAiX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umguV3QAiX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umguV3QAiX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umguV3QAiX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umguV3QAiX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umguV3QAiX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umguV3QAiX .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-umguV3QAiX .navbar {
    height: 70px;
  }
  .cid-umguV3QAiX .navbar.opened {
    height: auto;
  }
  .cid-umguV3QAiX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umguV3QAiX .container-fluid {
  padding: 0 1rem !important;
}
.cid-umguV3QAiX .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-umguV3QAiX .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-umguV3QAiX .navbar-collapse {
    width: 100%;
  }
  .cid-umguV3QAiX .navbar-nav {
    width: 100%;
  }
  .cid-umguV3QAiX .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-umguV4w00a {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-umguV4w00a .mbr-fallback-image.disabled {
  display: none;
}
.cid-umguV4w00a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-umguV4w00a .col-content {
    text-align: center;
  }
}
.cid-umguV4w00a .label-container {
  margin-bottom: 16px;
}
.cid-umguV4w00a .label-text {
  color: #ffffff;
}
.cid-umguV4w00a .label-text-2 {
  color: #ffffff;
}
.cid-umguV4w00a .mbr-section-title {
  color: #ffffff;
}
.cid-umguV4w00a .text-container {
  margin-top: 24px;
}
.cid-umguV4w00a .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umguV4w00a .mbr-text {
  color: #b79b6c;
}
.cid-umguV4w00a .mbr-section-btn {
  margin-top: 28px;
}
.cid-umguV4w00a .mbr-text,
.cid-umguV4w00a .mbr-section-btn {
  color: #ffffff;
}
.cid-umgv6rCwgI {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umgv6rCwgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgv6rCwgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgv6rCwgI .mbr-section-title {
  color: #24262b;
}
.cid-umgv6rCwgI .mbr-section-subtitle {
  color: #24262b;
}
.cid-umgv6rCwgI .mbr-section-btn {
  margin-top: 16px;
}
#custom-html-cr {
  /* Type valid CSS here */
}
#custom-html-cr div {
  padding: 30px 0;
  color: #777;
  text-align: center;
}
#custom-html-cr p {
  font-size: 60px;
  color: #111;
}
.cid-umguV5OoDb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-umguV5OoDb .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-umguV5OoDb .mbr-text {
  color: #c1c1c1;
}
.cid-uo3VqPOBWS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uo3VqPOBWS nav.navbar {
  position: fixed;
}
.cid-uo3VqPOBWS .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-uo3VqPOBWS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uo3VqPOBWS .dropdown-item:hover,
.cid-uo3VqPOBWS .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uo3VqPOBWS .dropdown-item:hover span {
  color: white;
}
.cid-uo3VqPOBWS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uo3VqPOBWS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uo3VqPOBWS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uo3VqPOBWS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uo3VqPOBWS .nav-link {
  position: relative;
}
.cid-uo3VqPOBWS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uo3VqPOBWS .container {
    flex-wrap: nowrap;
  }
}
.cid-uo3VqPOBWS .navbar-caption:hover,
.cid-uo3VqPOBWS .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uo3VqPOBWS .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uo3VqPOBWS .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uo3VqPOBWS .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uo3VqPOBWS .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uo3VqPOBWS .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uo3VqPOBWS .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uo3VqPOBWS .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uo3VqPOBWS .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uo3VqPOBWS .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uo3VqPOBWS .dropdown-menu,
.cid-uo3VqPOBWS .navbar.opened {
  background: #ffffff !important;
}
.cid-uo3VqPOBWS .nav-item:focus,
.cid-uo3VqPOBWS .nav-link:focus {
  outline: none;
}
.cid-uo3VqPOBWS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uo3VqPOBWS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uo3VqPOBWS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uo3VqPOBWS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uo3VqPOBWS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uo3VqPOBWS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uo3VqPOBWS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uo3VqPOBWS .navbar.opened {
  transition: all 0.3s;
}
.cid-uo3VqPOBWS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uo3VqPOBWS .navbar .navbar-logo img {
  width: auto;
}
.cid-uo3VqPOBWS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uo3VqPOBWS .navbar.collapsed {
  justify-content: center;
}
.cid-uo3VqPOBWS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uo3VqPOBWS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uo3VqPOBWS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uo3VqPOBWS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uo3VqPOBWS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uo3VqPOBWS .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-uo3VqPOBWS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uo3VqPOBWS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uo3VqPOBWS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uo3VqPOBWS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uo3VqPOBWS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uo3VqPOBWS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uo3VqPOBWS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uo3VqPOBWS .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-uo3VqPOBWS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uo3VqPOBWS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uo3VqPOBWS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uo3VqPOBWS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uo3VqPOBWS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uo3VqPOBWS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uo3VqPOBWS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uo3VqPOBWS .navbar.navbar-short {
  min-height: 70px;
}
.cid-uo3VqPOBWS .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-uo3VqPOBWS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uo3VqPOBWS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uo3VqPOBWS .dropdown-item.active,
.cid-uo3VqPOBWS .dropdown-item:active {
  background-color: transparent;
}
.cid-uo3VqPOBWS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uo3VqPOBWS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uo3VqPOBWS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uo3VqPOBWS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uo3VqPOBWS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uo3VqPOBWS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uo3VqPOBWS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uo3VqPOBWS .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uo3VqPOBWS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uo3VqPOBWS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uo3VqPOBWS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uo3VqPOBWS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo3VqPOBWS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo3VqPOBWS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uo3VqPOBWS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo3VqPOBWS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uo3VqPOBWS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uo3VqPOBWS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo3VqPOBWS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uo3VqPOBWS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uo3VqPOBWS .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-uo3VqPOBWS .navbar {
    height: 70px;
  }
  .cid-uo3VqPOBWS .navbar.opened {
    height: auto;
  }
  .cid-uo3VqPOBWS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uo3VqPOBWS .container-fluid {
  padding: 0 1rem !important;
}
.cid-uo3VqPOBWS .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uo3VqPOBWS .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uo3VqPOBWS .navbar-collapse {
    width: 100%;
  }
  .cid-uo3VqPOBWS .navbar-nav {
    width: 100%;
  }
  .cid-uo3VqPOBWS .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uo3VqQoEFZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uo3VqQoEFZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo3VqQoEFZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uo3VqQoEFZ .col-content {
    text-align: center;
  }
}
.cid-uo3VqQoEFZ .label-container {
  margin-bottom: 16px;
}
.cid-uo3VqQoEFZ .label-text {
  color: #ffffff;
}
.cid-uo3VqQoEFZ .label-text-2 {
  color: #ffffff;
}
.cid-uo3VqQoEFZ .mbr-section-title {
  color: #ffffff;
}
.cid-uo3VqQoEFZ .text-container {
  margin-top: 24px;
}
.cid-uo3VqQoEFZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uo3VqQoEFZ .mbr-text {
  color: #b79b6c;
}
.cid-uo3VqQoEFZ .mbr-section-btn {
  margin-top: 28px;
}
.cid-uo3VqQoEFZ .mbr-text,
.cid-uo3VqQoEFZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uobkkKGRtU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uobkkKGRtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uobkkKGRtU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uobkkKGRtU .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uobkkKGRtU .mbr-section-title {
  color: #24262b;
}
.cid-uobkkKGRtU .mbr-section-subtitle {
  color: #24262b;
}
.cid-uobkkKGRtU .items-row {
  row-gap: 32px;
}
.cid-uobkkKGRtU .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uobkkKGRtU .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uobkkKGRtU .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-uobkkKGRtU .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-uobkkKGRtU .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uobkkKGRtU .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uobkkKGRtU .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uobkkKGRtU .mbr-item-subtitle {
  color: #24262b;
}
.cid-uobkkKGRtU .carousel-control,
.cid-uobkkKGRtU .close {
  background: #1b1b1b;
}
.cid-uobkkKGRtU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uobkkKGRtU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uobkkKGRtU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uobkkKGRtU .carousel-control-next span {
  margin-left: 5px;
}
.cid-uobkkKGRtU .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-uobkkKGRtU .close::before {
  content: '\e91a';
}
.cid-uobkkKGRtU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uobkkKGRtU .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-uobkkKGRtU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uobkkKGRtU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uobkkKGRtU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uobkkKGRtU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uobkkKGRtU .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-uobkkKGRtU .carousel-indicators li.active,
.cid-uobkkKGRtU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uobkkKGRtU .carousel-indicators li::after,
.cid-uobkkKGRtU .carousel-indicators li::before {
  content: none;
}
.cid-uobkkKGRtU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uobkkKGRtU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uobkkKGRtU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uobkkKGRtU .carousel-indicators {
    display: none;
  }
}
.cid-uobkkKGRtU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uobkkKGRtU .carousel-inner > .active {
  display: block;
}
.cid-uobkkKGRtU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uobkkKGRtU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uobkkKGRtU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uobkkKGRtU .carousel-control,
  .cid-uobkkKGRtU .carousel-indicators,
  .cid-uobkkKGRtU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uobkkKGRtU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uobkkKGRtU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uobkkKGRtU .carousel-indicators .active,
.cid-uobkkKGRtU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uobkkKGRtU .carousel-indicators .active {
  background: #fff;
}
.cid-uobkkKGRtU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uobkkKGRtU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uobkkKGRtU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uobkkKGRtU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uobkkKGRtU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uobkkKGRtU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uobkkKGRtU .carousel {
  width: 100%;
}
.cid-uobkkKGRtU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uobkkKGRtU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uobkkKGRtU .modal.fade .modal-dialog,
.cid-uobkkKGRtU .modal.in .modal-dialog {
  transform: none;
}
.cid-uobkkKGRtU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uobkkKGRtU H6 {
  text-align: center;
}
.cid-uo3VqQOY02 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uo3VqQOY02 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uo3VqQOY02 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uo3VqQOY02 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uo3VqQOY02 .mbr-text {
  color: #000000;
}
.cid-uo3VqRj3si {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo3VqRj3si .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo3VqRj3si .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo3VqRj3si .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uo3VqRj3si .mbr-section-title {
  color: #24262b;
}
.cid-uo3VqRj3si .mbr-section-subtitle {
  color: #24262b;
}
.cid-uo3VqRj3si .items-row {
  row-gap: 32px;
}
.cid-uo3VqRj3si .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uo3VqRj3si .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uo3VqRj3si .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-uo3VqRj3si .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-uo3VqRj3si .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uo3VqRj3si .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uo3VqRj3si .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uo3VqRj3si .mbr-item-subtitle {
  color: #24262b;
}
.cid-uo3VqRj3si .carousel-control,
.cid-uo3VqRj3si .close {
  background: #1b1b1b;
}
.cid-uo3VqRj3si .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uo3VqRj3si .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uo3VqRj3si .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uo3VqRj3si .carousel-control-next span {
  margin-left: 5px;
}
.cid-uo3VqRj3si .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-uo3VqRj3si .close::before {
  content: '\e91a';
}
.cid-uo3VqRj3si .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uo3VqRj3si .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-uo3VqRj3si .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uo3VqRj3si .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uo3VqRj3si .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uo3VqRj3si .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uo3VqRj3si .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-uo3VqRj3si .carousel-indicators li.active,
.cid-uo3VqRj3si .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uo3VqRj3si .carousel-indicators li::after,
.cid-uo3VqRj3si .carousel-indicators li::before {
  content: none;
}
.cid-uo3VqRj3si .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uo3VqRj3si .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uo3VqRj3si .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uo3VqRj3si .carousel-indicators {
    display: none;
  }
}
.cid-uo3VqRj3si .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uo3VqRj3si .carousel-inner > .active {
  display: block;
}
.cid-uo3VqRj3si .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uo3VqRj3si .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uo3VqRj3si .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uo3VqRj3si .carousel-control,
  .cid-uo3VqRj3si .carousel-indicators,
  .cid-uo3VqRj3si .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uo3VqRj3si .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uo3VqRj3si .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uo3VqRj3si .carousel-indicators .active,
.cid-uo3VqRj3si .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uo3VqRj3si .carousel-indicators .active {
  background: #fff;
}
.cid-uo3VqRj3si .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uo3VqRj3si .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uo3VqRj3si .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uo3VqRj3si .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uo3VqRj3si .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uo3VqRj3si .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uo3VqRj3si .carousel {
  width: 100%;
}
.cid-uo3VqRj3si .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uo3VqRj3si .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uo3VqRj3si .modal.fade .modal-dialog,
.cid-uo3VqRj3si .modal.in .modal-dialog {
  transform: none;
}
.cid-uo3VqRj3si .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uo3VqRj3si H6 {
  text-align: center;
}
.cid-uo3VqS41Kb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uo3VqS41Kb .col-title {
    margin-bottom: 20px;
  }
}
.cid-uo3VqS41Kb .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uo3VqS41Kb .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uo3VqS41Kb .mbr-text {
  color: #000000;
}
.cid-uo3VqSBzbN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo3VqSBzbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo3VqSBzbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo3VqSBzbN .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uo3VqSBzbN .mbr-section-title {
  color: #24262b;
}
.cid-uo3VqSBzbN .mbr-section-subtitle {
  color: #24262b;
}
.cid-uo3VqSBzbN .items-row {
  row-gap: 32px;
}
.cid-uo3VqSBzbN .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uo3VqSBzbN .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uo3VqSBzbN .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-uo3VqSBzbN .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-uo3VqSBzbN .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uo3VqSBzbN .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uo3VqSBzbN .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uo3VqSBzbN .mbr-item-subtitle {
  color: #24262b;
}
.cid-uo3VqSBzbN .carousel-control,
.cid-uo3VqSBzbN .close {
  background: #1b1b1b;
}
.cid-uo3VqSBzbN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uo3VqSBzbN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uo3VqSBzbN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uo3VqSBzbN .carousel-control-next span {
  margin-left: 5px;
}
.cid-uo3VqSBzbN .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-uo3VqSBzbN .close::before {
  content: '\e91a';
}
.cid-uo3VqSBzbN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uo3VqSBzbN .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-uo3VqSBzbN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uo3VqSBzbN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uo3VqSBzbN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uo3VqSBzbN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uo3VqSBzbN .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-uo3VqSBzbN .carousel-indicators li.active,
.cid-uo3VqSBzbN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uo3VqSBzbN .carousel-indicators li::after,
.cid-uo3VqSBzbN .carousel-indicators li::before {
  content: none;
}
.cid-uo3VqSBzbN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uo3VqSBzbN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uo3VqSBzbN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uo3VqSBzbN .carousel-indicators {
    display: none;
  }
}
.cid-uo3VqSBzbN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uo3VqSBzbN .carousel-inner > .active {
  display: block;
}
.cid-uo3VqSBzbN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uo3VqSBzbN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uo3VqSBzbN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uo3VqSBzbN .carousel-control,
  .cid-uo3VqSBzbN .carousel-indicators,
  .cid-uo3VqSBzbN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uo3VqSBzbN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uo3VqSBzbN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uo3VqSBzbN .carousel-indicators .active,
.cid-uo3VqSBzbN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uo3VqSBzbN .carousel-indicators .active {
  background: #fff;
}
.cid-uo3VqSBzbN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uo3VqSBzbN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uo3VqSBzbN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uo3VqSBzbN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uo3VqSBzbN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uo3VqSBzbN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uo3VqSBzbN .carousel {
  width: 100%;
}
.cid-uo3VqSBzbN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uo3VqSBzbN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uo3VqSBzbN .modal.fade .modal-dialog,
.cid-uo3VqSBzbN .modal.in .modal-dialog {
  transform: none;
}
.cid-uo3VqSBzbN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uo3VqSBzbN H6 {
  text-align: center;
}
.cid-uo3VqTacQf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uo3VqTacQf .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uo3VqTacQf .mbr-text {
  color: #c1c1c1;
}
.cid-utXcfGID7Z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-utXcfGID7Z nav.navbar {
  position: fixed;
}
.cid-utXcfGID7Z .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-utXcfGID7Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utXcfGID7Z .dropdown-item:hover,
.cid-utXcfGID7Z .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-utXcfGID7Z .dropdown-item:hover span {
  color: white;
}
.cid-utXcfGID7Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utXcfGID7Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utXcfGID7Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utXcfGID7Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utXcfGID7Z .nav-link {
  position: relative;
}
.cid-utXcfGID7Z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utXcfGID7Z .container {
    flex-wrap: nowrap;
  }
}
.cid-utXcfGID7Z .navbar-caption:hover,
.cid-utXcfGID7Z .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-utXcfGID7Z .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-utXcfGID7Z .navbar-nav .nav-item {
  color: #24262b;
}
.cid-utXcfGID7Z .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-utXcfGID7Z .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-utXcfGID7Z .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-utXcfGID7Z .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-utXcfGID7Z .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-utXcfGID7Z .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-utXcfGID7Z .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-utXcfGID7Z .dropdown-menu,
.cid-utXcfGID7Z .navbar.opened {
  background: #ffffff !important;
}
.cid-utXcfGID7Z .nav-item:focus,
.cid-utXcfGID7Z .nav-link:focus {
  outline: none;
}
.cid-utXcfGID7Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utXcfGID7Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utXcfGID7Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utXcfGID7Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utXcfGID7Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utXcfGID7Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utXcfGID7Z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-utXcfGID7Z .navbar.opened {
  transition: all 0.3s;
}
.cid-utXcfGID7Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utXcfGID7Z .navbar .navbar-logo img {
  width: auto;
}
.cid-utXcfGID7Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utXcfGID7Z .navbar.collapsed {
  justify-content: center;
}
.cid-utXcfGID7Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utXcfGID7Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utXcfGID7Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-utXcfGID7Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utXcfGID7Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utXcfGID7Z .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-utXcfGID7Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utXcfGID7Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utXcfGID7Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utXcfGID7Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utXcfGID7Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utXcfGID7Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utXcfGID7Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utXcfGID7Z .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-utXcfGID7Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utXcfGID7Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utXcfGID7Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utXcfGID7Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utXcfGID7Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utXcfGID7Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-utXcfGID7Z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-utXcfGID7Z .navbar.navbar-short {
  min-height: 70px;
}
.cid-utXcfGID7Z .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-utXcfGID7Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utXcfGID7Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utXcfGID7Z .dropdown-item.active,
.cid-utXcfGID7Z .dropdown-item:active {
  background-color: transparent;
}
.cid-utXcfGID7Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utXcfGID7Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utXcfGID7Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utXcfGID7Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-utXcfGID7Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utXcfGID7Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utXcfGID7Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utXcfGID7Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-utXcfGID7Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utXcfGID7Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-utXcfGID7Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utXcfGID7Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utXcfGID7Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utXcfGID7Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utXcfGID7Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utXcfGID7Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utXcfGID7Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utXcfGID7Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utXcfGID7Z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utXcfGID7Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utXcfGID7Z .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-utXcfGID7Z .navbar {
    height: 70px;
  }
  .cid-utXcfGID7Z .navbar.opened {
    height: auto;
  }
  .cid-utXcfGID7Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utXcfGID7Z .container-fluid {
  padding: 0 1rem !important;
}
.cid-utXcfGID7Z .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-utXcfGID7Z .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-utXcfGID7Z .navbar-collapse {
    width: 100%;
  }
  .cid-utXcfGID7Z .navbar-nav {
    width: 100%;
  }
  .cid-utXcfGID7Z .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-utXcfH4iKA {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-utXcfH4iKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-utXcfH4iKA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-utXcfH4iKA .col-content {
    text-align: center;
  }
}
.cid-utXcfH4iKA .label-container {
  margin-bottom: 16px;
}
.cid-utXcfH4iKA .label-text {
  color: #ffffff;
}
.cid-utXcfH4iKA .label-text-2 {
  color: #ffffff;
}
.cid-utXcfH4iKA .mbr-section-title {
  color: #ffffff;
}
.cid-utXcfH4iKA .text-container {
  margin-top: 24px;
}
.cid-utXcfH4iKA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-utXcfH4iKA .mbr-text {
  color: #b79b6c;
}
.cid-utXcfH4iKA .mbr-section-btn {
  margin-top: 28px;
}
.cid-utXcfH4iKA .mbr-text,
.cid-utXcfH4iKA .mbr-section-btn {
  color: #ffffff;
}
.cid-utXcfIgwPC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-utXcfIgwPC .col-title {
    margin-bottom: 20px;
  }
}
.cid-utXcfIgwPC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-utXcfIgwPC .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-utXcfIgwPC .mbr-text {
  color: #000000;
}
.cid-utXcfIYKpA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utXcfIYKpA .mbr-fallback-image.disabled {
  display: none;
}
.cid-utXcfIYKpA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utXcfIYKpA .mbr-section-head {
  margin-bottom: 32px;
}
.cid-utXcfIYKpA .mbr-section-title {
  color: #24262b;
}
.cid-utXcfIYKpA .mbr-section-subtitle {
  color: #24262b;
}
.cid-utXcfIYKpA .items-row {
  row-gap: 32px;
}
.cid-utXcfIYKpA .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-utXcfIYKpA .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-utXcfIYKpA .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-utXcfIYKpA .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-utXcfIYKpA .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-utXcfIYKpA .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-utXcfIYKpA .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-utXcfIYKpA .mbr-item-subtitle {
  color: #24262b;
}
.cid-utXcfIYKpA .carousel-control,
.cid-utXcfIYKpA .close {
  background: #1b1b1b;
}
.cid-utXcfIYKpA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-utXcfIYKpA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-utXcfIYKpA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-utXcfIYKpA .carousel-control-next span {
  margin-left: 5px;
}
.cid-utXcfIYKpA .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-utXcfIYKpA .close::before {
  content: '\e91a';
}
.cid-utXcfIYKpA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-utXcfIYKpA .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-utXcfIYKpA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utXcfIYKpA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-utXcfIYKpA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-utXcfIYKpA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-utXcfIYKpA .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-utXcfIYKpA .carousel-indicators li.active,
.cid-utXcfIYKpA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-utXcfIYKpA .carousel-indicators li::after,
.cid-utXcfIYKpA .carousel-indicators li::before {
  content: none;
}
.cid-utXcfIYKpA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-utXcfIYKpA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-utXcfIYKpA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utXcfIYKpA .carousel-indicators {
    display: none;
  }
}
.cid-utXcfIYKpA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-utXcfIYKpA .carousel-inner > .active {
  display: block;
}
.cid-utXcfIYKpA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utXcfIYKpA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-utXcfIYKpA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-utXcfIYKpA .carousel-control,
  .cid-utXcfIYKpA .carousel-indicators,
  .cid-utXcfIYKpA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-utXcfIYKpA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-utXcfIYKpA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-utXcfIYKpA .carousel-indicators .active,
.cid-utXcfIYKpA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-utXcfIYKpA .carousel-indicators .active {
  background: #fff;
}
.cid-utXcfIYKpA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-utXcfIYKpA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-utXcfIYKpA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-utXcfIYKpA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-utXcfIYKpA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-utXcfIYKpA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-utXcfIYKpA .carousel {
  width: 100%;
}
.cid-utXcfIYKpA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-utXcfIYKpA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-utXcfIYKpA .modal.fade .modal-dialog,
.cid-utXcfIYKpA .modal.in .modal-dialog {
  transform: none;
}
.cid-utXcfIYKpA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-utXcfIYKpA H6 {
  text-align: center;
}
.cid-utXcfM7YGO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-utXcfM7YGO .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-utXcfM7YGO .mbr-text {
  color: #c1c1c1;
}
.cid-unfh2PZLGH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-unfh2PZLGH nav.navbar {
  position: fixed;
}
.cid-unfh2PZLGH .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-unfh2PZLGH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unfh2PZLGH .dropdown-item:hover,
.cid-unfh2PZLGH .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-unfh2PZLGH .dropdown-item:hover span {
  color: white;
}
.cid-unfh2PZLGH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unfh2PZLGH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unfh2PZLGH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unfh2PZLGH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unfh2PZLGH .nav-link {
  position: relative;
}
.cid-unfh2PZLGH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-unfh2PZLGH .container {
    flex-wrap: nowrap;
  }
}
.cid-unfh2PZLGH .navbar-caption:hover,
.cid-unfh2PZLGH .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-unfh2PZLGH .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-unfh2PZLGH .navbar-nav .nav-item {
  color: #24262b;
}
.cid-unfh2PZLGH .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-unfh2PZLGH .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-unfh2PZLGH .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-unfh2PZLGH .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-unfh2PZLGH .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-unfh2PZLGH .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-unfh2PZLGH .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-unfh2PZLGH .dropdown-menu,
.cid-unfh2PZLGH .navbar.opened {
  background: #ffffff !important;
}
.cid-unfh2PZLGH .nav-item:focus,
.cid-unfh2PZLGH .nav-link:focus {
  outline: none;
}
.cid-unfh2PZLGH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unfh2PZLGH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unfh2PZLGH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unfh2PZLGH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unfh2PZLGH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unfh2PZLGH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unfh2PZLGH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-unfh2PZLGH .navbar.opened {
  transition: all 0.3s;
}
.cid-unfh2PZLGH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unfh2PZLGH .navbar .navbar-logo img {
  width: auto;
}
.cid-unfh2PZLGH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unfh2PZLGH .navbar.collapsed {
  justify-content: center;
}
.cid-unfh2PZLGH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unfh2PZLGH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unfh2PZLGH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-unfh2PZLGH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unfh2PZLGH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unfh2PZLGH .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-unfh2PZLGH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unfh2PZLGH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unfh2PZLGH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unfh2PZLGH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unfh2PZLGH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unfh2PZLGH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unfh2PZLGH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unfh2PZLGH .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-unfh2PZLGH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unfh2PZLGH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unfh2PZLGH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unfh2PZLGH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unfh2PZLGH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unfh2PZLGH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-unfh2PZLGH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-unfh2PZLGH .navbar.navbar-short {
  min-height: 70px;
}
.cid-unfh2PZLGH .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-unfh2PZLGH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unfh2PZLGH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unfh2PZLGH .dropdown-item.active,
.cid-unfh2PZLGH .dropdown-item:active {
  background-color: transparent;
}
.cid-unfh2PZLGH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unfh2PZLGH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unfh2PZLGH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unfh2PZLGH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unfh2PZLGH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unfh2PZLGH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unfh2PZLGH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unfh2PZLGH .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-unfh2PZLGH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unfh2PZLGH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-unfh2PZLGH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unfh2PZLGH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unfh2PZLGH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unfh2PZLGH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unfh2PZLGH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unfh2PZLGH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unfh2PZLGH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unfh2PZLGH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unfh2PZLGH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unfh2PZLGH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unfh2PZLGH .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-unfh2PZLGH .navbar {
    height: 70px;
  }
  .cid-unfh2PZLGH .navbar.opened {
    height: auto;
  }
  .cid-unfh2PZLGH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unfh2PZLGH .container-fluid {
  padding: 0 1rem !important;
}
.cid-unfh2PZLGH .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-unfh2PZLGH .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-unfh2PZLGH .navbar-collapse {
    width: 100%;
  }
  .cid-unfh2PZLGH .navbar-nav {
    width: 100%;
  }
  .cid-unfh2PZLGH .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-unfh2QVTCN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-unfh2QVTCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-unfh2QVTCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-unfh2QVTCN .col-content {
    text-align: center;
  }
}
.cid-unfh2QVTCN .label-container {
  margin-bottom: 16px;
}
.cid-unfh2QVTCN .label-text {
  color: #ffffff;
}
.cid-unfh2QVTCN .label-text-2 {
  color: #ffffff;
}
.cid-unfh2QVTCN .mbr-section-title {
  color: #ffffff;
}
.cid-unfh2QVTCN .text-container {
  margin-top: 24px;
}
.cid-unfh2QVTCN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-unfh2QVTCN .mbr-text {
  color: #b79b6c;
}
.cid-unfh2QVTCN .mbr-section-btn {
  margin-top: 28px;
}
.cid-unfh2QVTCN .mbr-text,
.cid-unfh2QVTCN .mbr-section-btn {
  color: #ffffff;
}
.cid-unfh2RyyKX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f5cf89;
}
.cid-unfh2RyyKX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-unfh2SHLPK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-unfh2SHLPK .col-title {
    margin-bottom: 20px;
  }
}
.cid-unfh2SHLPK .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-unfh2SHLPK .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-unfh2SHLPK .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-unfh2TrywL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-unfh2TrywL .col-title {
    margin-bottom: 20px;
  }
}
.cid-unfh2TrywL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-unfh2TrywL .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-unfh2TrywL .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-unfh2Ud1OX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-unfh2Ud1OX .col-title {
    margin-bottom: 20px;
  }
}
.cid-unfh2Ud1OX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-unfh2Ud1OX .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-unfh2Ud1OX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-unfh2V4PQV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-unfh2V4PQV .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-unfh2V4PQV .mbr-text {
  color: #c1c1c1;
}
.cid-uAxtaurkVL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uAxtaurkVL nav.navbar {
  position: fixed;
}
.cid-uAxtaurkVL .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-uAxtaurkVL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAxtaurkVL .dropdown-item:hover,
.cid-uAxtaurkVL .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uAxtaurkVL .dropdown-item:hover span {
  color: white;
}
.cid-uAxtaurkVL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAxtaurkVL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAxtaurkVL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAxtaurkVL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAxtaurkVL .nav-link {
  position: relative;
}
.cid-uAxtaurkVL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uAxtaurkVL .container {
    flex-wrap: nowrap;
  }
}
.cid-uAxtaurkVL .navbar-caption:hover,
.cid-uAxtaurkVL .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uAxtaurkVL .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uAxtaurkVL .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uAxtaurkVL .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uAxtaurkVL .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uAxtaurkVL .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uAxtaurkVL .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uAxtaurkVL .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uAxtaurkVL .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uAxtaurkVL .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uAxtaurkVL .dropdown-menu,
.cid-uAxtaurkVL .navbar.opened {
  background: #ffffff !important;
}
.cid-uAxtaurkVL .nav-item:focus,
.cid-uAxtaurkVL .nav-link:focus {
  outline: none;
}
.cid-uAxtaurkVL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAxtaurkVL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAxtaurkVL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAxtaurkVL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAxtaurkVL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAxtaurkVL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAxtaurkVL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uAxtaurkVL .navbar.opened {
  transition: all 0.3s;
}
.cid-uAxtaurkVL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAxtaurkVL .navbar .navbar-logo img {
  width: auto;
}
.cid-uAxtaurkVL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAxtaurkVL .navbar.collapsed {
  justify-content: center;
}
.cid-uAxtaurkVL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAxtaurkVL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAxtaurkVL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uAxtaurkVL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAxtaurkVL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAxtaurkVL .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-uAxtaurkVL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAxtaurkVL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAxtaurkVL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAxtaurkVL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAxtaurkVL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAxtaurkVL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAxtaurkVL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAxtaurkVL .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-uAxtaurkVL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAxtaurkVL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAxtaurkVL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAxtaurkVL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAxtaurkVL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAxtaurkVL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uAxtaurkVL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uAxtaurkVL .navbar.navbar-short {
  min-height: 70px;
}
.cid-uAxtaurkVL .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-uAxtaurkVL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAxtaurkVL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAxtaurkVL .dropdown-item.active,
.cid-uAxtaurkVL .dropdown-item:active {
  background-color: transparent;
}
.cid-uAxtaurkVL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAxtaurkVL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAxtaurkVL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAxtaurkVL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAxtaurkVL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAxtaurkVL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAxtaurkVL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAxtaurkVL .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uAxtaurkVL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAxtaurkVL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAxtaurkVL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAxtaurkVL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAxtaurkVL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAxtaurkVL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAxtaurkVL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAxtaurkVL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAxtaurkVL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAxtaurkVL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAxtaurkVL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAxtaurkVL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAxtaurkVL .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-uAxtaurkVL .navbar {
    height: 70px;
  }
  .cid-uAxtaurkVL .navbar.opened {
    height: auto;
  }
  .cid-uAxtaurkVL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAxtaurkVL .container-fluid {
  padding: 0 1rem !important;
}
.cid-uAxtaurkVL .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uAxtaurkVL .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uAxtaurkVL .navbar-collapse {
    width: 100%;
  }
  .cid-uAxtaurkVL .navbar-nav {
    width: 100%;
  }
  .cid-uAxtaurkVL .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uAxtauNg6S {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uAxtauNg6S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxtauNg6S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uAxtauNg6S .col-content {
    text-align: center;
  }
}
.cid-uAxtauNg6S .label-container {
  margin-bottom: 16px;
}
.cid-uAxtauNg6S .label-text {
  color: #ffffff;
}
.cid-uAxtauNg6S .label-text-2 {
  color: #ffffff;
}
.cid-uAxtauNg6S .mbr-section-title {
  color: #ffffff;
}
.cid-uAxtauNg6S .text-container {
  margin-top: 24px;
}
.cid-uAxtauNg6S .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAxtauNg6S .mbr-text {
  color: #b79b6c;
}
.cid-uAxtauNg6S .mbr-section-btn {
  margin-top: 28px;
}
.cid-uAxtauNg6S .mbr-text,
.cid-uAxtauNg6S .mbr-section-btn {
  color: #ffffff;
}
.cid-uKgaNSpfmt {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
.cid-uKgaNSpfmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKgaNSpfmt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKgaNSpfmt .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKgaNSpfmt .mbr-section-title {
  color: #24262b;
}
.cid-uKgaNSpfmt .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKgaNSpfmt .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uKgaNSpfmt .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #92b5d5;
}
@media (max-width: 767px) {
  .cid-uKgaNSpfmt .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uKgaNSpfmt .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uKgaNSpfmt .card-subtitle {
  color: #24262b;
}
.cid-uKgaNSpfmt .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uKgaNSpfmt .mbr-section-btn {
  margin-top: 20px;
}
.cid-uKgaNSpfmt .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uKgaNSpfmt .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uAxtavr4pa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uAxtavr4pa .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAxtavr4pa .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAxtavr4pa .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uAxtavr4pa .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uAxtavE7vV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uAxtavE7vV .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAxtavE7vV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAxtavE7vV .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uAxtavE7vV .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-uAxtavSKKG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uAxtavSKKG .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAxtavSKKG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uAxtavSKKG .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uAxtavSKKG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uAxtaw8Mhi {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uAxtaw8Mhi .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uAxtaw8Mhi .mbr-text {
  color: #c1c1c1;
}
.cid-uAxvMFjSoj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uAxvMFjSoj nav.navbar {
  position: fixed;
}
.cid-uAxvMFjSoj .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-uAxvMFjSoj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAxvMFjSoj .dropdown-item:hover,
.cid-uAxvMFjSoj .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uAxvMFjSoj .dropdown-item:hover span {
  color: white;
}
.cid-uAxvMFjSoj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAxvMFjSoj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAxvMFjSoj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAxvMFjSoj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAxvMFjSoj .nav-link {
  position: relative;
}
.cid-uAxvMFjSoj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uAxvMFjSoj .container {
    flex-wrap: nowrap;
  }
}
.cid-uAxvMFjSoj .navbar-caption:hover,
.cid-uAxvMFjSoj .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uAxvMFjSoj .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uAxvMFjSoj .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uAxvMFjSoj .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uAxvMFjSoj .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uAxvMFjSoj .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uAxvMFjSoj .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uAxvMFjSoj .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uAxvMFjSoj .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uAxvMFjSoj .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uAxvMFjSoj .dropdown-menu,
.cid-uAxvMFjSoj .navbar.opened {
  background: #ffffff !important;
}
.cid-uAxvMFjSoj .nav-item:focus,
.cid-uAxvMFjSoj .nav-link:focus {
  outline: none;
}
.cid-uAxvMFjSoj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAxvMFjSoj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAxvMFjSoj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAxvMFjSoj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAxvMFjSoj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAxvMFjSoj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAxvMFjSoj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uAxvMFjSoj .navbar.opened {
  transition: all 0.3s;
}
.cid-uAxvMFjSoj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAxvMFjSoj .navbar .navbar-logo img {
  width: auto;
}
.cid-uAxvMFjSoj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAxvMFjSoj .navbar.collapsed {
  justify-content: center;
}
.cid-uAxvMFjSoj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAxvMFjSoj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAxvMFjSoj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uAxvMFjSoj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAxvMFjSoj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAxvMFjSoj .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-uAxvMFjSoj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAxvMFjSoj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAxvMFjSoj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAxvMFjSoj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAxvMFjSoj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAxvMFjSoj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAxvMFjSoj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAxvMFjSoj .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-uAxvMFjSoj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAxvMFjSoj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAxvMFjSoj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAxvMFjSoj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAxvMFjSoj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAxvMFjSoj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uAxvMFjSoj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uAxvMFjSoj .navbar.navbar-short {
  min-height: 70px;
}
.cid-uAxvMFjSoj .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-uAxvMFjSoj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAxvMFjSoj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAxvMFjSoj .dropdown-item.active,
.cid-uAxvMFjSoj .dropdown-item:active {
  background-color: transparent;
}
.cid-uAxvMFjSoj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAxvMFjSoj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAxvMFjSoj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAxvMFjSoj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAxvMFjSoj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAxvMFjSoj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAxvMFjSoj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAxvMFjSoj .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uAxvMFjSoj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAxvMFjSoj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAxvMFjSoj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAxvMFjSoj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAxvMFjSoj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAxvMFjSoj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAxvMFjSoj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAxvMFjSoj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAxvMFjSoj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAxvMFjSoj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAxvMFjSoj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAxvMFjSoj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAxvMFjSoj .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-uAxvMFjSoj .navbar {
    height: 70px;
  }
  .cid-uAxvMFjSoj .navbar.opened {
    height: auto;
  }
  .cid-uAxvMFjSoj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAxvMFjSoj .container-fluid {
  padding: 0 1rem !important;
}
.cid-uAxvMFjSoj .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uAxvMFjSoj .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uAxvMFjSoj .navbar-collapse {
    width: 100%;
  }
  .cid-uAxvMFjSoj .navbar-nav {
    width: 100%;
  }
  .cid-uAxvMFjSoj .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uAxvMFBcSq {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uAxvMFBcSq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxvMFBcSq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uAxvMFBcSq .col-content {
    text-align: center;
  }
}
.cid-uAxvMFBcSq .label-container {
  margin-bottom: 16px;
}
.cid-uAxvMFBcSq .label-text {
  color: #ffffff;
}
.cid-uAxvMFBcSq .label-text-2 {
  color: #ffffff;
}
.cid-uAxvMFBcSq .mbr-section-title {
  color: #ffffff;
}
.cid-uAxvMFBcSq .text-container {
  margin-top: 24px;
}
.cid-uAxvMFBcSq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAxvMFBcSq .mbr-text {
  color: #b79b6c;
}
.cid-uAxvMFBcSq .mbr-section-btn {
  margin-top: 28px;
}
.cid-uAxvMFBcSq .mbr-text,
.cid-uAxvMFBcSq .mbr-section-btn {
  color: #ffffff;
}
.cid-uVx5tgDay5 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5cf89;
}
.cid-uVx5tgDay5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVx5tgDay5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVx5tgDay5 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uVx5tgDay5 .mbr-section-title {
  color: #24262b;
}
.cid-uVx5tgDay5 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uVx5tgDay5 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uVx5tgDay5 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #f5cf89;
}
@media (max-width: 767px) {
  .cid-uVx5tgDay5 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uVx5tgDay5 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uVx5tgDay5 .card-subtitle {
  color: #24262b;
}
.cid-uVx5tgDay5 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uVx5tgDay5 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uVx5tgDay5 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uVx5tgDay5 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uAxvMGghUj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-uAxvMGghUj .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAxvMGghUj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAxvMGghUj .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uAxvMGghUj .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uAxvMGs1Wf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-uAxvMGs1Wf .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAxvMGs1Wf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAxvMGs1Wf .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uAxvMGs1Wf .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-uAxvMGF8tl {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-uAxvMGF8tl .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAxvMGF8tl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uAxvMGF8tl .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uAxvMGF8tl .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uAxvMGWt1G {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uAxvMGWt1G .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uAxvMGWt1G .mbr-text {
  color: #c1c1c1;
}
.cid-uBm81bSVOC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uBm81bSVOC nav.navbar {
  position: fixed;
}
.cid-uBm81bSVOC .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-uBm81bSVOC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBm81bSVOC .dropdown-item:hover,
.cid-uBm81bSVOC .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uBm81bSVOC .dropdown-item:hover span {
  color: white;
}
.cid-uBm81bSVOC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBm81bSVOC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBm81bSVOC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBm81bSVOC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBm81bSVOC .nav-link {
  position: relative;
}
.cid-uBm81bSVOC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBm81bSVOC .container {
    flex-wrap: nowrap;
  }
}
.cid-uBm81bSVOC .navbar-caption:hover,
.cid-uBm81bSVOC .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uBm81bSVOC .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uBm81bSVOC .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uBm81bSVOC .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uBm81bSVOC .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uBm81bSVOC .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uBm81bSVOC .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uBm81bSVOC .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uBm81bSVOC .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uBm81bSVOC .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uBm81bSVOC .dropdown-menu,
.cid-uBm81bSVOC .navbar.opened {
  background: #ffffff !important;
}
.cid-uBm81bSVOC .nav-item:focus,
.cid-uBm81bSVOC .nav-link:focus {
  outline: none;
}
.cid-uBm81bSVOC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBm81bSVOC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBm81bSVOC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBm81bSVOC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBm81bSVOC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBm81bSVOC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBm81bSVOC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uBm81bSVOC .navbar.opened {
  transition: all 0.3s;
}
.cid-uBm81bSVOC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBm81bSVOC .navbar .navbar-logo img {
  width: auto;
}
.cid-uBm81bSVOC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBm81bSVOC .navbar.collapsed {
  justify-content: center;
}
.cid-uBm81bSVOC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBm81bSVOC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBm81bSVOC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uBm81bSVOC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBm81bSVOC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBm81bSVOC .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-uBm81bSVOC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBm81bSVOC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBm81bSVOC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBm81bSVOC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBm81bSVOC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBm81bSVOC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBm81bSVOC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBm81bSVOC .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-uBm81bSVOC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBm81bSVOC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBm81bSVOC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBm81bSVOC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBm81bSVOC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBm81bSVOC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uBm81bSVOC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uBm81bSVOC .navbar.navbar-short {
  min-height: 70px;
}
.cid-uBm81bSVOC .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-uBm81bSVOC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBm81bSVOC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBm81bSVOC .dropdown-item.active,
.cid-uBm81bSVOC .dropdown-item:active {
  background-color: transparent;
}
.cid-uBm81bSVOC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBm81bSVOC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBm81bSVOC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBm81bSVOC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBm81bSVOC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBm81bSVOC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBm81bSVOC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBm81bSVOC .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uBm81bSVOC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBm81bSVOC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBm81bSVOC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBm81bSVOC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBm81bSVOC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBm81bSVOC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBm81bSVOC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBm81bSVOC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBm81bSVOC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBm81bSVOC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBm81bSVOC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBm81bSVOC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBm81bSVOC .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-uBm81bSVOC .navbar {
    height: 70px;
  }
  .cid-uBm81bSVOC .navbar.opened {
    height: auto;
  }
  .cid-uBm81bSVOC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBm81bSVOC .container-fluid {
  padding: 0 1rem !important;
}
.cid-uBm81bSVOC .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uBm81bSVOC .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uBm81bSVOC .navbar-collapse {
    width: 100%;
  }
  .cid-uBm81bSVOC .navbar-nav {
    width: 100%;
  }
  .cid-uBm81bSVOC .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uBm81cN6a9 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81cN6a9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81cN6a9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81cN6a9 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81cN6a9 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81cN6a9 .mbr-section-btn {
  margin-top: 16px;
}
.cid-uBm81ea663 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81ea663 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81ea663 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81ea663 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81ea663 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81ea663 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81ea663 .cards-row {
  row-gap: 32px;
}
.cid-uBm81ea663 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81ea663 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81ea663 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81ea663 .card-subtitle {
  color: #24262b;
}
.cid-uBm81ea663 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81ea663 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81ea663 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81ea663 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81eAglf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81eAglf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81eAglf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81eAglf .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81eAglf .mbr-section-title {
  color: #24262b;
}
.cid-uBm81eAglf .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81eAglf .cards-row {
  row-gap: 32px;
}
.cid-uBm81eAglf .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81eAglf .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81eAglf .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81eAglf .card-subtitle {
  color: #24262b;
}
.cid-uBm81eAglf .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81eAglf .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81eAglf .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81eAglf .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81eZdGV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81eZdGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81eZdGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81eZdGV .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81eZdGV .mbr-section-title {
  color: #24262b;
}
.cid-uBm81eZdGV .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81eZdGV .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uBm81eZdGV .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBm81eZdGV .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81eZdGV .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81eZdGV .card-subtitle {
  color: #24262b;
}
.cid-uBm81eZdGV .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81eZdGV .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81eZdGV .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81eZdGV .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81fp3Ck {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81fp3Ck .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81fp3Ck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81fp3Ck .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81fp3Ck .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81fp3Ck .mbr-text,
.cid-uBm81fp3Ck .mbr-section-btn {
  color: #232323;
}
.cid-uBm81fp3Ck .mbr-section-title,
.cid-uBm81fp3Ck .line {
  color: #232323;
}
.cid-uBm81fp3Ck h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81fp3Ck h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81fp3Ck .mbr-section-subtitle,
.cid-uBm81fp3Ck .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81fNCNj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81fNCNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81fNCNj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81fNCNj .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81fNCNj .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81fNCNj .mbr-text,
.cid-uBm81fNCNj .mbr-section-btn {
  color: #232323;
}
.cid-uBm81fNCNj .mbr-section-title,
.cid-uBm81fNCNj .line {
  color: #232323;
}
.cid-uBm81fNCNj h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81fNCNj h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81fNCNj .mbr-section-subtitle,
.cid-uBm81fNCNj .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81gbqGH {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81gbqGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81gbqGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81gbqGH .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81gbqGH .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81gbqGH .mbr-text,
.cid-uBm81gbqGH .mbr-section-btn {
  color: #232323;
}
.cid-uBm81gbqGH .mbr-section-title,
.cid-uBm81gbqGH .line {
  color: #232323;
}
.cid-uBm81gbqGH h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81gbqGH h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81gbqGH .mbr-section-subtitle,
.cid-uBm81gbqGH .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81gBHd6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81gBHd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81gBHd6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81gBHd6 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81gBHd6 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81gBHd6 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81gBHd6 .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uBm81gBHd6 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBm81gBHd6 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81gBHd6 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81gBHd6 .card-subtitle {
  color: #24262b;
}
.cid-uBm81gBHd6 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81gBHd6 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81gBHd6 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81gBHd6 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81gZRPa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81gZRPa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81gZRPa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81gZRPa .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81gZRPa .mbr-section-title {
  color: #24262b;
}
.cid-uBm81gZRPa .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81gZRPa .cards-row {
  row-gap: 32px;
}
.cid-uBm81gZRPa .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81gZRPa .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81gZRPa .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81gZRPa .card-subtitle {
  color: #24262b;
}
.cid-uBm81gZRPa .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81gZRPa .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81gZRPa .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81gZRPa .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81hrPnF {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBm81hrPnF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81hrPnF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81hrPnF .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81hrPnF .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81hrPnF .mbr-text,
.cid-uBm81hrPnF .mbr-section-btn {
  color: #232323;
}
.cid-uBm81hrPnF .mbr-section-title,
.cid-uBm81hrPnF .line {
  color: #232323;
}
.cid-uBm81hrPnF h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81hrPnF h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81hrPnF .mbr-section-subtitle,
.cid-uBm81hrPnF .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81hSSb6 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBm81hSSb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81hSSb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81hSSb6 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81hSSb6 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81hSSb6 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81hSSb6 .items-row {
  row-gap: 32px;
}
.cid-uBm81hSSb6 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uBm81hSSb6 .item-wrapper img {
  width: 100%;
  height: calc(50px * 5);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uBm81hSSb6 .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-uBm81hSSb6 .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-uBm81hSSb6 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uBm81hSSb6 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uBm81hSSb6 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uBm81hSSb6 .carousel-control,
.cid-uBm81hSSb6 .close {
  background: #1b1b1b;
}
.cid-uBm81hSSb6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBm81hSSb6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBm81hSSb6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBm81hSSb6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBm81hSSb6 .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-uBm81hSSb6 .close::before {
  content: '\e91a';
}
.cid-uBm81hSSb6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBm81hSSb6 .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-uBm81hSSb6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBm81hSSb6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBm81hSSb6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBm81hSSb6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBm81hSSb6 .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-uBm81hSSb6 .carousel-indicators li.active,
.cid-uBm81hSSb6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBm81hSSb6 .carousel-indicators li::after,
.cid-uBm81hSSb6 .carousel-indicators li::before {
  content: none;
}
.cid-uBm81hSSb6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBm81hSSb6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBm81hSSb6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBm81hSSb6 .carousel-indicators {
    display: none;
  }
}
.cid-uBm81hSSb6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBm81hSSb6 .carousel-inner > .active {
  display: block;
}
.cid-uBm81hSSb6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBm81hSSb6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBm81hSSb6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBm81hSSb6 .carousel-control,
  .cid-uBm81hSSb6 .carousel-indicators,
  .cid-uBm81hSSb6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBm81hSSb6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBm81hSSb6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBm81hSSb6 .carousel-indicators .active,
.cid-uBm81hSSb6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBm81hSSb6 .carousel-indicators .active {
  background: #fff;
}
.cid-uBm81hSSb6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBm81hSSb6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBm81hSSb6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBm81hSSb6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBm81hSSb6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBm81hSSb6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBm81hSSb6 .carousel {
  width: 100%;
}
.cid-uBm81hSSb6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBm81hSSb6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBm81hSSb6 .modal.fade .modal-dialog,
.cid-uBm81hSSb6 .modal.in .modal-dialog {
  transform: none;
}
.cid-uBm81hSSb6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBm81hSSb6 H6 {
  text-align: center;
}
.cid-uBm81irA3C {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81irA3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81irA3C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81irA3C .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81irA3C .mbr-section-title {
  color: #24262b;
}
.cid-uBm81irA3C .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81irA3C .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uBm81irA3C .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBm81irA3C .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81irA3C .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81irA3C .card-subtitle {
  color: #24262b;
}
.cid-uBm81irA3C .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81irA3C .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81irA3C .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81irA3C .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81iS5YA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81iS5YA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81iS5YA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81iS5YA .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81iS5YA .mbr-section-title {
  color: #24262b;
}
.cid-uBm81iS5YA .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81iS5YA .cards-row {
  row-gap: 32px;
}
.cid-uBm81iS5YA .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81iS5YA .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81iS5YA .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81iS5YA .card-subtitle {
  color: #24262b;
}
.cid-uBm81iS5YA .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81iS5YA .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81iS5YA .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81iS5YA .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81jkQp0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81jkQp0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81jkQp0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81jkQp0 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81jkQp0 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81jkQp0 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81jkQp0 .cards-row {
  row-gap: 32px;
}
.cid-uBm81jkQp0 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81jkQp0 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81jkQp0 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81jkQp0 .card-subtitle {
  color: #24262b;
}
.cid-uBm81jkQp0 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81jkQp0 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81jkQp0 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81jkQp0 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81jMUAz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81jMUAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81jMUAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81jMUAz .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81jMUAz .mbr-section-title {
  color: #24262b;
}
.cid-uBm81jMUAz .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81jMUAz .cards-row {
  row-gap: 32px;
}
.cid-uBm81jMUAz .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81jMUAz .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81jMUAz .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81jMUAz .card-subtitle {
  color: #24262b;
}
.cid-uBm81jMUAz .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81jMUAz .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81jMUAz .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81jMUAz .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81knftI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81knftI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81knftI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81knftI .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81knftI .mbr-section-title {
  color: #24262b;
}
.cid-uBm81knftI .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81knftI .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uBm81knftI .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBm81knftI .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81knftI .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81knftI .card-subtitle {
  color: #24262b;
}
.cid-uBm81knftI .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81knftI .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81knftI .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81knftI .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81kPKbJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81kPKbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81kPKbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81kPKbJ .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81kPKbJ .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81kPKbJ .mbr-text,
.cid-uBm81kPKbJ .mbr-section-btn {
  color: #232323;
}
.cid-uBm81kPKbJ .mbr-section-title,
.cid-uBm81kPKbJ .line {
  color: #232323;
}
.cid-uBm81kPKbJ h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81kPKbJ h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81kPKbJ .mbr-section-subtitle,
.cid-uBm81kPKbJ .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81lf9Ow {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81lf9Ow .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81lf9Ow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81lf9Ow .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81lf9Ow .mbr-section-title {
  color: #24262b;
}
.cid-uBm81lf9Ow .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81lf9Ow .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-uBm81lf9Ow .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBm81lf9Ow .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81lf9Ow .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81lf9Ow .card-subtitle {
  color: #24262b;
}
.cid-uBm81lf9Ow .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81lf9Ow .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81lf9Ow .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81lf9Ow .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81lIy0m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81lIy0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81lIy0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81lIy0m .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81lIy0m .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81lIy0m .mbr-text,
.cid-uBm81lIy0m .mbr-section-btn {
  color: #232323;
}
.cid-uBm81lIy0m .mbr-section-title,
.cid-uBm81lIy0m .line {
  color: #232323;
}
.cid-uBm81lIy0m h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81lIy0m h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81lIy0m .mbr-section-subtitle,
.cid-uBm81lIy0m .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81m9o0T {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81m9o0T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81m9o0T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81m9o0T .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81m9o0T .mbr-section-title {
  color: #24262b;
}
.cid-uBm81m9o0T .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81m9o0T .cards-row {
  row-gap: 32px;
}
.cid-uBm81m9o0T .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81m9o0T .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81m9o0T .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81m9o0T .card-subtitle {
  color: #24262b;
}
.cid-uBm81m9o0T .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81m9o0T .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81m9o0T .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81m9o0T .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81mGNXr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81mGNXr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81mGNXr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81mGNXr .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81mGNXr .mbr-section-title {
  color: #24262b;
}
.cid-uBm81mGNXr .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81mGNXr .cards-row {
  row-gap: 32px;
}
.cid-uBm81mGNXr .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81mGNXr .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81mGNXr .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81mGNXr .card-subtitle {
  color: #24262b;
}
.cid-uBm81mGNXr .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81mGNXr .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81mGNXr .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81mGNXr .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81nar0q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81nar0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81nar0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81nar0q .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81nar0q .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81nar0q .mbr-text,
.cid-uBm81nar0q .mbr-section-btn {
  color: #232323;
}
.cid-uBm81nar0q .mbr-section-title,
.cid-uBm81nar0q .line {
  color: #232323;
}
.cid-uBm81nar0q h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81nar0q h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81nar0q .mbr-section-subtitle,
.cid-uBm81nar0q .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81nFev7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81nFev7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81nFev7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81nFev7 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81nFev7 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81nFev7 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81nFev7 .cards-row {
  row-gap: 32px;
}
.cid-uBm81nFev7 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81nFev7 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81nFev7 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81nFev7 .card-subtitle {
  color: #24262b;
}
.cid-uBm81nFev7 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81nFev7 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81nFev7 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81nFev7 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81oa0fw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81oa0fw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81oa0fw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81oa0fw .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81oa0fw .mbr-section-title {
  color: #24262b;
}
.cid-uBm81oa0fw .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81oa0fw .cards-row {
  row-gap: 32px;
}
.cid-uBm81oa0fw .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81oa0fw .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81oa0fw .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81oa0fw .card-subtitle {
  color: #24262b;
}
.cid-uBm81oa0fw .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81oa0fw .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81oa0fw .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81oa0fw .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81oHwWL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81oHwWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81oHwWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81oHwWL .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81oHwWL .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81oHwWL .mbr-text,
.cid-uBm81oHwWL .mbr-section-btn {
  color: #232323;
}
.cid-uBm81oHwWL .mbr-section-title,
.cid-uBm81oHwWL .line {
  color: #232323;
}
.cid-uBm81oHwWL h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81oHwWL h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81oHwWL .mbr-section-subtitle,
.cid-uBm81oHwWL .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81pbVhQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81pbVhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81pbVhQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81pbVhQ .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81pbVhQ .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81pbVhQ .mbr-text,
.cid-uBm81pbVhQ .mbr-section-btn {
  color: #232323;
}
.cid-uBm81pbVhQ .mbr-section-title,
.cid-uBm81pbVhQ .line {
  color: #232323;
}
.cid-uBm81pbVhQ h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81pbVhQ h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81pbVhQ .mbr-section-subtitle,
.cid-uBm81pbVhQ .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81pOfK6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81pOfK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81pOfK6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81pOfK6 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81pOfK6 .mbr-section-title {
  color: #24262b;
}
.cid-uBm81pOfK6 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81pOfK6 .cards-row {
  row-gap: 32px;
}
.cid-uBm81pOfK6 .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81pOfK6 .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81pOfK6 .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81pOfK6 .card-subtitle {
  color: #24262b;
}
.cid-uBm81pOfK6 .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81pOfK6 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81pOfK6 .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81pOfK6 .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81ql2Os {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81ql2Os .img-container {
  position: relative;
}
.cid-uBm81ql2Os .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-uBm81ql2Os .image-wrapper img {
  width: 100%;
  height: 32vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-uBm81ql2Os .image-wrapper img {
    height: auto;
  }
}
.cid-uBm81ql2Os .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-uBm81ql2Os .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBm81ql2Os .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-uBm81qSglM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81qSglM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81qSglM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81qSglM .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81qSglM .mbr-section-title {
  color: #24262b;
}
.cid-uBm81qSglM .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81qSglM .cards-row {
  row-gap: 32px;
}
.cid-uBm81qSglM .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81qSglM .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81qSglM .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81qSglM .card-subtitle {
  color: #24262b;
}
.cid-uBm81qSglM .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81qSglM .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81qSglM .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81qSglM .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81rqMDg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBm81rqMDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81rqMDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81rqMDg .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uBm81rqMDg .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uBm81rqMDg .mbr-text,
.cid-uBm81rqMDg .mbr-section-btn {
  color: #232323;
}
.cid-uBm81rqMDg .mbr-section-title,
.cid-uBm81rqMDg .line {
  color: #232323;
}
.cid-uBm81rqMDg h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uBm81rqMDg h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uBm81rqMDg .mbr-section-subtitle,
.cid-uBm81rqMDg .align {
  text-align: left;
  color: #232323;
}
.cid-uBm81rVb9V {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBm81rVb9V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBm81rVb9V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBm81rVb9V .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBm81rVb9V .mbr-section-title {
  color: #24262b;
}
.cid-uBm81rVb9V .mbr-section-subtitle {
  color: #24262b;
}
.cid-uBm81rVb9V .cards-row {
  row-gap: 32px;
}
.cid-uBm81rVb9V .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-uBm81rVb9V .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-uBm81rVb9V .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uBm81rVb9V .card-subtitle {
  color: #24262b;
}
.cid-uBm81rVb9V .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-uBm81rVb9V .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBm81rVb9V .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.cid-uBm81rVb9V .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
}
.cid-uBm81v1ULU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uBm81v1ULU .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uBm81v1ULU .mbr-text {
  color: #c1c1c1;
}
.cid-u1UddtYvFj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1UddtYvFj nav.navbar {
  position: fixed;
}
.cid-u1UddtYvFj .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-u1UddtYvFj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1UddtYvFj .dropdown-item:hover,
.cid-u1UddtYvFj .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1UddtYvFj .dropdown-item:hover span {
  color: white;
}
.cid-u1UddtYvFj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1UddtYvFj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1UddtYvFj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1UddtYvFj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1UddtYvFj .nav-link {
  position: relative;
}
.cid-u1UddtYvFj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1UddtYvFj .container {
    flex-wrap: nowrap;
  }
}
.cid-u1UddtYvFj .navbar-caption:hover,
.cid-u1UddtYvFj .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1UddtYvFj .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1UddtYvFj .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1UddtYvFj .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1UddtYvFj .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1UddtYvFj .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1UddtYvFj .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1UddtYvFj .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1UddtYvFj .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1UddtYvFj .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1UddtYvFj .dropdown-menu,
.cid-u1UddtYvFj .navbar.opened {
  background: #ffffff !important;
}
.cid-u1UddtYvFj .nav-item:focus,
.cid-u1UddtYvFj .nav-link:focus {
  outline: none;
}
.cid-u1UddtYvFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1UddtYvFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1UddtYvFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1UddtYvFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1UddtYvFj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1UddtYvFj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1UddtYvFj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1UddtYvFj .navbar.opened {
  transition: all 0.3s;
}
.cid-u1UddtYvFj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1UddtYvFj .navbar .navbar-logo img {
  width: auto;
}
.cid-u1UddtYvFj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1UddtYvFj .navbar.collapsed {
  justify-content: center;
}
.cid-u1UddtYvFj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1UddtYvFj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1UddtYvFj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1UddtYvFj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1UddtYvFj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1UddtYvFj .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-u1UddtYvFj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1UddtYvFj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1UddtYvFj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1UddtYvFj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1UddtYvFj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1UddtYvFj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1UddtYvFj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1UddtYvFj .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-u1UddtYvFj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1UddtYvFj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1UddtYvFj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1UddtYvFj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1UddtYvFj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1UddtYvFj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1UddtYvFj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1UddtYvFj .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1UddtYvFj .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-u1UddtYvFj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1UddtYvFj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1UddtYvFj .dropdown-item.active,
.cid-u1UddtYvFj .dropdown-item:active {
  background-color: transparent;
}
.cid-u1UddtYvFj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1UddtYvFj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1UddtYvFj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1UddtYvFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1UddtYvFj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1UddtYvFj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1UddtYvFj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1UddtYvFj .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1UddtYvFj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1UddtYvFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1UddtYvFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1UddtYvFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1UddtYvFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1UddtYvFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1UddtYvFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1UddtYvFj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1UddtYvFj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1UddtYvFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1UddtYvFj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1UddtYvFj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1UddtYvFj .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-u1UddtYvFj .navbar {
    height: 70px;
  }
  .cid-u1UddtYvFj .navbar.opened {
    height: auto;
  }
  .cid-u1UddtYvFj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1UddtYvFj .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1UddtYvFj .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1UddtYvFj .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1UddtYvFj .navbar-collapse {
    width: 100%;
  }
  .cid-u1UddtYvFj .navbar-nav {
    width: 100%;
  }
  .cid-u1UddtYvFj .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1UdduJ2rs {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1UdduJ2rs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1UdduJ2rs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1UdduJ2rs .col-content {
    text-align: center;
  }
}
.cid-u1UdduJ2rs .label-container {
  margin-bottom: 16px;
}
.cid-u1UdduJ2rs .label-text {
  color: #ffffff;
}
.cid-u1UdduJ2rs .label-text-2 {
  color: #ffffff;
}
.cid-u1UdduJ2rs .mbr-section-title {
  color: #ffffff;
}
.cid-u1UdduJ2rs .text-container {
  margin-top: 24px;
}
.cid-u1UdduJ2rs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1UdduJ2rs .mbr-text {
  color: #b79b6c;
}
.cid-u1UdduJ2rs .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1UdduJ2rs .mbr-text,
.cid-u1UdduJ2rs .mbr-section-btn {
  color: #ffffff;
}
.cid-u1UddvhJMi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1UddvhJMi .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1UddvhJMi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1UddvhJMi .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1UddvhJMi .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u1Uen0UTho {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1Uen0UTho .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1Uen0UTho .mbr-section-title {
  color: #f90505;
  text-align: center;
}
.cid-u1Uen0UTho .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1Uen0UTho .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-u1UeO9NIzH {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1UeO9NIzH .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1UeO9NIzH .mbr-section-title {
  color: #000000;
}
.cid-u1UeO9NIzH .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u1UeO9NIzH .mbr-text {
  color: #000000;
}
.cid-u1UeO9NIzH .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u1UeO9NIzH p {
  line-height: 1.2;
}
.cid-u1UeO9NIzH .mbr-text1 {
  color: #000000;
}
.cid-u1UeO9NIzH .mbr-text2 {
  color: #005241;
}
.cid-u1UeO9NIzH .mbr-text3 {
  color: #000000;
}
.cid-u1Wz1CqCCv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1Wz1CqCCv .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1Wz1CqCCv .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1Wz1CqCCv .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1Wz1CqCCv .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u1WzH3oezx {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u1WzH3oezx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u1WCmtOie0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u1WCmtOie0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u1UddvN5s4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1UddvN5s4 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1UddvN5s4 .mbr-text {
  color: #c1c1c1;
}
.cid-uB4w215pOq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uB4w215pOq nav.navbar {
  position: fixed;
}
.cid-uB4w215pOq .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-uB4w215pOq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uB4w215pOq .dropdown-item:hover,
.cid-uB4w215pOq .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uB4w215pOq .dropdown-item:hover span {
  color: white;
}
.cid-uB4w215pOq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uB4w215pOq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uB4w215pOq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uB4w215pOq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uB4w215pOq .nav-link {
  position: relative;
}
.cid-uB4w215pOq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uB4w215pOq .container {
    flex-wrap: nowrap;
  }
}
.cid-uB4w215pOq .navbar-caption:hover,
.cid-uB4w215pOq .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uB4w215pOq .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uB4w215pOq .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uB4w215pOq .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uB4w215pOq .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uB4w215pOq .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uB4w215pOq .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uB4w215pOq .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uB4w215pOq .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uB4w215pOq .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uB4w215pOq .dropdown-menu,
.cid-uB4w215pOq .navbar.opened {
  background: #ffffff !important;
}
.cid-uB4w215pOq .nav-item:focus,
.cid-uB4w215pOq .nav-link:focus {
  outline: none;
}
.cid-uB4w215pOq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uB4w215pOq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uB4w215pOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uB4w215pOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uB4w215pOq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uB4w215pOq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uB4w215pOq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uB4w215pOq .navbar.opened {
  transition: all 0.3s;
}
.cid-uB4w215pOq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uB4w215pOq .navbar .navbar-logo img {
  width: auto;
}
.cid-uB4w215pOq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uB4w215pOq .navbar.collapsed {
  justify-content: center;
}
.cid-uB4w215pOq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uB4w215pOq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uB4w215pOq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uB4w215pOq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uB4w215pOq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uB4w215pOq .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-uB4w215pOq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uB4w215pOq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uB4w215pOq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uB4w215pOq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uB4w215pOq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uB4w215pOq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uB4w215pOq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uB4w215pOq .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-uB4w215pOq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uB4w215pOq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uB4w215pOq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uB4w215pOq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uB4w215pOq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uB4w215pOq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uB4w215pOq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uB4w215pOq .navbar.navbar-short {
  min-height: 70px;
}
.cid-uB4w215pOq .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-uB4w215pOq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uB4w215pOq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uB4w215pOq .dropdown-item.active,
.cid-uB4w215pOq .dropdown-item:active {
  background-color: transparent;
}
.cid-uB4w215pOq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uB4w215pOq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uB4w215pOq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uB4w215pOq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uB4w215pOq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uB4w215pOq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uB4w215pOq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uB4w215pOq .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uB4w215pOq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uB4w215pOq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uB4w215pOq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uB4w215pOq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uB4w215pOq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uB4w215pOq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uB4w215pOq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uB4w215pOq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uB4w215pOq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uB4w215pOq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uB4w215pOq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uB4w215pOq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uB4w215pOq .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-uB4w215pOq .navbar {
    height: 70px;
  }
  .cid-uB4w215pOq .navbar.opened {
    height: auto;
  }
  .cid-uB4w215pOq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uB4w215pOq .container-fluid {
  padding: 0 1rem !important;
}
.cid-uB4w215pOq .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uB4w215pOq .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uB4w215pOq .navbar-collapse {
    width: 100%;
  }
  .cid-uB4w215pOq .navbar-nav {
    width: 100%;
  }
  .cid-uB4w215pOq .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uB4w21sPXh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uB4w21sPXh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB4w21sPXh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uB4w21sPXh .col-content {
    text-align: center;
  }
}
.cid-uB4w21sPXh .label-container {
  margin-bottom: 16px;
}
.cid-uB4w21sPXh .label-text {
  color: #ffffff;
}
.cid-uB4w21sPXh .label-text-2 {
  color: #ffffff;
}
.cid-uB4w21sPXh .mbr-section-title {
  color: #ffffff;
}
.cid-uB4w21sPXh .text-container {
  margin-top: 24px;
}
.cid-uB4w21sPXh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uB4w21sPXh .mbr-text {
  color: #b79b6c;
}
.cid-uB4w21sPXh .mbr-section-btn {
  margin-top: 28px;
}
.cid-uB4w21sPXh .mbr-text,
.cid-uB4w21sPXh .mbr-section-btn {
  color: #ffffff;
}
.cid-uB4w21Oo74 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uB4w21Oo74 .container-fluid {
  padding: 0 3rem;
}
.cid-uB4w21Oo74 .mbr-section-subtitle {
  color: #212529;
  text-align: left;
}
.cid-uB4w21Oo74 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uB4w21Oo74 .table-wrapper {
  margin: 0 auto;
}
.cid-uB4w21Oo74 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uB4w21Oo74 table thead tr {
  border: none !important;
}
.cid-uB4w21Oo74 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid #424242;
  color: black;
  vertical-align: middle;
}
.cid-uB4w21Oo74 table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-uB4w21Oo74 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-uB4w21Oo74 tr:hover {
  background-color: #ffff99 !important;
}
.cid-uB4w21Oo74 .head-item:after,
.cid-uB4w21Oo74 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-uB4w21Oo74 table th,
  .cid-uB4w21Oo74 table td {
    padding: .75rem;
  }
}
.cid-uB4w21Oo74 .body-item {
  text-align: left;
}
.cid-uB4w21Oo74 .head-item {
  text-align: left;
}
.cid-uB4w21Oo74 .mbr-text {
  color: #767676;
}
.cid-uB4w21Oo74 .mbr-section-title,
.cid-uB4w21Oo74 .underline {
  text-align: left;
}
.cid-uB4w21Oo74 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB4w21Oo74 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB4w21Oo74 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uB4w22sGgv {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uB4w22sGgv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB4w22sGgv .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-uB4w22sGgv .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uB4w22sGgv .container {
    padding: 0 12px;
  }
}
.cid-uB4w22sGgv .row {
  justify-content: center;
}
.cid-uB4w22sGgv .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-uB4w22sGgv .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uB4w22sGgv .image-wrapper img {
    height: 350px;
  }
}
.cid-uB4w22NPag {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uB4w22NPag .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uB4w22NPag .mbr-text {
  color: #c1c1c1;
}
.cid-u1WEaTjKLf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-u1WEaTjKLf nav.navbar {
  position: fixed;
}
.cid-u1WEaTjKLf .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-u1WEaTjKLf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1WEaTjKLf .dropdown-item:hover,
.cid-u1WEaTjKLf .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1WEaTjKLf .dropdown-item:hover span {
  color: white;
}
.cid-u1WEaTjKLf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1WEaTjKLf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1WEaTjKLf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1WEaTjKLf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1WEaTjKLf .nav-link {
  position: relative;
}
.cid-u1WEaTjKLf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u1WEaTjKLf .container {
    flex-wrap: nowrap;
  }
}
.cid-u1WEaTjKLf .navbar-caption:hover,
.cid-u1WEaTjKLf .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-u1WEaTjKLf .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-u1WEaTjKLf .navbar-nav .nav-item {
  color: #24262b;
}
.cid-u1WEaTjKLf .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-u1WEaTjKLf .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-u1WEaTjKLf .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-u1WEaTjKLf .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-u1WEaTjKLf .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-u1WEaTjKLf .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-u1WEaTjKLf .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-u1WEaTjKLf .dropdown-menu,
.cid-u1WEaTjKLf .navbar.opened {
  background: #ffffff !important;
}
.cid-u1WEaTjKLf .nav-item:focus,
.cid-u1WEaTjKLf .nav-link:focus {
  outline: none;
}
.cid-u1WEaTjKLf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1WEaTjKLf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1WEaTjKLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1WEaTjKLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1WEaTjKLf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1WEaTjKLf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1WEaTjKLf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-u1WEaTjKLf .navbar.opened {
  transition: all 0.3s;
}
.cid-u1WEaTjKLf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1WEaTjKLf .navbar .navbar-logo img {
  width: auto;
}
.cid-u1WEaTjKLf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1WEaTjKLf .navbar.collapsed {
  justify-content: center;
}
.cid-u1WEaTjKLf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1WEaTjKLf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1WEaTjKLf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-u1WEaTjKLf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1WEaTjKLf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1WEaTjKLf .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-u1WEaTjKLf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1WEaTjKLf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1WEaTjKLf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1WEaTjKLf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1WEaTjKLf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1WEaTjKLf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1WEaTjKLf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1WEaTjKLf .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-u1WEaTjKLf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1WEaTjKLf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1WEaTjKLf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1WEaTjKLf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1WEaTjKLf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1WEaTjKLf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1WEaTjKLf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1WEaTjKLf .navbar.navbar-short {
  min-height: 70px;
}
.cid-u1WEaTjKLf .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-u1WEaTjKLf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1WEaTjKLf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1WEaTjKLf .dropdown-item.active,
.cid-u1WEaTjKLf .dropdown-item:active {
  background-color: transparent;
}
.cid-u1WEaTjKLf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1WEaTjKLf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1WEaTjKLf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1WEaTjKLf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1WEaTjKLf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1WEaTjKLf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1WEaTjKLf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1WEaTjKLf .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-u1WEaTjKLf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1WEaTjKLf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1WEaTjKLf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1WEaTjKLf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1WEaTjKLf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1WEaTjKLf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1WEaTjKLf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1WEaTjKLf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1WEaTjKLf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1WEaTjKLf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1WEaTjKLf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1WEaTjKLf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1WEaTjKLf .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-u1WEaTjKLf .navbar {
    height: 70px;
  }
  .cid-u1WEaTjKLf .navbar.opened {
    height: auto;
  }
  .cid-u1WEaTjKLf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1WEaTjKLf .container-fluid {
  padding: 0 1rem !important;
}
.cid-u1WEaTjKLf .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-u1WEaTjKLf .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-u1WEaTjKLf .navbar-collapse {
    width: 100%;
  }
  .cid-u1WEaTjKLf .navbar-nav {
    width: 100%;
  }
  .cid-u1WEaTjKLf .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-u1WEaTXvvj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-u1WEaTXvvj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1WEaTXvvj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u1WEaTXvvj .col-content {
    text-align: center;
  }
}
.cid-u1WEaTXvvj .label-container {
  margin-bottom: 16px;
}
.cid-u1WEaTXvvj .label-text {
  color: #ffffff;
}
.cid-u1WEaTXvvj .label-text-2 {
  color: #ffffff;
}
.cid-u1WEaTXvvj .mbr-section-title {
  color: #ffffff;
}
.cid-u1WEaTXvvj .text-container {
  margin-top: 24px;
}
.cid-u1WEaTXvvj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1WEaTXvvj .mbr-text {
  color: #b79b6c;
}
.cid-u1WEaTXvvj .mbr-section-btn {
  margin-top: 28px;
}
.cid-u1WEaTXvvj .mbr-text,
.cid-u1WEaTXvvj .mbr-section-btn {
  color: #ffffff;
}
.cid-u1WEaUCGlC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1WEaUCGlC .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1WEaUCGlC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1WEaUCGlC .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1WEaUCGlC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u1WEaV6bbj {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1WEaV6bbj .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1WEaV6bbj .mbr-section-title {
  color: #f90505;
  text-align: center;
}
.cid-u1WEaV6bbj .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1WEaV6bbj .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-u1WEaVzVeP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1WEaVzVeP .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1WEaVzVeP .mbr-section-title {
  color: #000000;
}
.cid-u1WEaVzVeP .mbr-section-subtitle {
  color: #000000;
  margin-top: 24px;
}
.cid-u1WEaVzVeP .mbr-text {
  color: #000000;
}
.cid-u1WEaVzVeP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u1WEaVzVeP p {
  line-height: 1.2;
}
.cid-u1WEaVzVeP .mbr-text1 {
  color: #000000;
}
.cid-u1WEaVzVeP .mbr-text2 {
  color: #212529;
}
.cid-u1WEaVzVeP .mbr-text3 {
  color: #000000;
}
.cid-u1WEaW9fvA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1WEaW9fvA .col-title {
    margin-bottom: 20px;
  }
}
.cid-u1WEaW9fvA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1WEaW9fvA .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-u1WEaW9fvA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u1WFd5ps1P {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u1WFd5ps1P .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u1WFd5ps1P P {
  color: #212529;
}
.cid-u1WFdK06PH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u1WFdK06PH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u1WEaXZDUW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-u1WEaXZDUW .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-u1WEaXZDUW .mbr-text {
  color: #c1c1c1;
}
.cid-uJMBOrly9y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uJMBOrly9y nav.navbar {
  position: fixed;
}
.cid-uJMBOrly9y .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-uJMBOrly9y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJMBOrly9y .dropdown-item:hover,
.cid-uJMBOrly9y .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uJMBOrly9y .dropdown-item:hover span {
  color: white;
}
.cid-uJMBOrly9y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJMBOrly9y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJMBOrly9y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJMBOrly9y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJMBOrly9y .nav-link {
  position: relative;
}
.cid-uJMBOrly9y .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJMBOrly9y .container {
    flex-wrap: nowrap;
  }
}
.cid-uJMBOrly9y .navbar-caption:hover,
.cid-uJMBOrly9y .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uJMBOrly9y .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uJMBOrly9y .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uJMBOrly9y .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uJMBOrly9y .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uJMBOrly9y .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uJMBOrly9y .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uJMBOrly9y .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uJMBOrly9y .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uJMBOrly9y .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uJMBOrly9y .dropdown-menu,
.cid-uJMBOrly9y .navbar.opened {
  background: #ffffff !important;
}
.cid-uJMBOrly9y .nav-item:focus,
.cid-uJMBOrly9y .nav-link:focus {
  outline: none;
}
.cid-uJMBOrly9y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJMBOrly9y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJMBOrly9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJMBOrly9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJMBOrly9y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJMBOrly9y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJMBOrly9y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uJMBOrly9y .navbar.opened {
  transition: all 0.3s;
}
.cid-uJMBOrly9y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJMBOrly9y .navbar .navbar-logo img {
  width: auto;
}
.cid-uJMBOrly9y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJMBOrly9y .navbar.collapsed {
  justify-content: center;
}
.cid-uJMBOrly9y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJMBOrly9y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJMBOrly9y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uJMBOrly9y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJMBOrly9y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJMBOrly9y .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-uJMBOrly9y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJMBOrly9y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJMBOrly9y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJMBOrly9y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJMBOrly9y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJMBOrly9y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJMBOrly9y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJMBOrly9y .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-uJMBOrly9y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJMBOrly9y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJMBOrly9y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJMBOrly9y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJMBOrly9y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJMBOrly9y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJMBOrly9y .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJMBOrly9y .navbar.navbar-short {
  min-height: 70px;
}
.cid-uJMBOrly9y .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-uJMBOrly9y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJMBOrly9y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJMBOrly9y .dropdown-item.active,
.cid-uJMBOrly9y .dropdown-item:active {
  background-color: transparent;
}
.cid-uJMBOrly9y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJMBOrly9y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJMBOrly9y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJMBOrly9y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJMBOrly9y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJMBOrly9y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJMBOrly9y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJMBOrly9y .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uJMBOrly9y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJMBOrly9y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJMBOrly9y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJMBOrly9y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJMBOrly9y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJMBOrly9y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJMBOrly9y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJMBOrly9y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJMBOrly9y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJMBOrly9y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJMBOrly9y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJMBOrly9y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJMBOrly9y .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-uJMBOrly9y .navbar {
    height: 70px;
  }
  .cid-uJMBOrly9y .navbar.opened {
    height: auto;
  }
  .cid-uJMBOrly9y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJMBOrly9y .container-fluid {
  padding: 0 1rem !important;
}
.cid-uJMBOrly9y .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uJMBOrly9y .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uJMBOrly9y .navbar-collapse {
    width: 100%;
  }
  .cid-uJMBOrly9y .navbar-nav {
    width: 100%;
  }
  .cid-uJMBOrly9y .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uJMBOrEhCK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uJMBOrEhCK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJMBOrEhCK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uJMBOrEhCK .col-content {
    text-align: center;
  }
}
.cid-uJMBOrEhCK .label-container {
  margin-bottom: 16px;
}
.cid-uJMBOrEhCK .label-text {
  color: #ffffff;
}
.cid-uJMBOrEhCK .label-text-2 {
  color: #ffffff;
}
.cid-uJMBOrEhCK .mbr-section-title {
  color: #ffffff;
}
.cid-uJMBOrEhCK .text-container {
  margin-top: 24px;
}
.cid-uJMBOrEhCK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJMBOrEhCK .mbr-text {
  color: #b79b6c;
}
.cid-uJMBOrEhCK .mbr-section-btn {
  margin-top: 28px;
}
.cid-uJMBOrEhCK .mbr-text,
.cid-uJMBOrEhCK .mbr-section-btn {
  color: #ffffff;
}
.cid-uJMBOrRnaR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJMBOrRnaR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJMBOrRnaR .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-uJMBOrRnaR .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uJMBOrRnaR .container {
    padding: 0 12px;
  }
}
.cid-uJMBOrRnaR .row {
  justify-content: center;
}
.cid-uJMBOrRnaR .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-uJMBOrRnaR .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uJMBOrRnaR .image-wrapper img {
    height: 350px;
  }
}
.cid-uJMBOs18xT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJMBOs18xT .col-title {
    margin-bottom: 20px;
  }
}
.cid-uJMBOs18xT .mbr-section-title {
  color: #000000;
}
.cid-uJMBOs18xT .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uJMBOs18xT .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uJMBOscoH9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uJMBOscoH9 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uJMBOscoH9 .mbr-text {
  color: #c1c1c1;
}
.cid-uKgabkR3Pn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uKgabkR3Pn nav.navbar {
  position: fixed;
}
.cid-uKgabkR3Pn .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-uKgabkR3Pn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKgabkR3Pn .dropdown-item:hover,
.cid-uKgabkR3Pn .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uKgabkR3Pn .dropdown-item:hover span {
  color: white;
}
.cid-uKgabkR3Pn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKgabkR3Pn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKgabkR3Pn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKgabkR3Pn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKgabkR3Pn .nav-link {
  position: relative;
}
.cid-uKgabkR3Pn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uKgabkR3Pn .container {
    flex-wrap: nowrap;
  }
}
.cid-uKgabkR3Pn .navbar-caption:hover,
.cid-uKgabkR3Pn .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uKgabkR3Pn .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uKgabkR3Pn .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uKgabkR3Pn .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uKgabkR3Pn .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uKgabkR3Pn .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uKgabkR3Pn .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uKgabkR3Pn .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uKgabkR3Pn .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uKgabkR3Pn .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uKgabkR3Pn .dropdown-menu,
.cid-uKgabkR3Pn .navbar.opened {
  background: #ffffff !important;
}
.cid-uKgabkR3Pn .nav-item:focus,
.cid-uKgabkR3Pn .nav-link:focus {
  outline: none;
}
.cid-uKgabkR3Pn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKgabkR3Pn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKgabkR3Pn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKgabkR3Pn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKgabkR3Pn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKgabkR3Pn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKgabkR3Pn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uKgabkR3Pn .navbar.opened {
  transition: all 0.3s;
}
.cid-uKgabkR3Pn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKgabkR3Pn .navbar .navbar-logo img {
  width: auto;
}
.cid-uKgabkR3Pn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKgabkR3Pn .navbar.collapsed {
  justify-content: center;
}
.cid-uKgabkR3Pn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKgabkR3Pn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKgabkR3Pn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uKgabkR3Pn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKgabkR3Pn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKgabkR3Pn .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-uKgabkR3Pn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKgabkR3Pn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKgabkR3Pn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKgabkR3Pn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKgabkR3Pn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKgabkR3Pn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKgabkR3Pn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKgabkR3Pn .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-uKgabkR3Pn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKgabkR3Pn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKgabkR3Pn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKgabkR3Pn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKgabkR3Pn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKgabkR3Pn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKgabkR3Pn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKgabkR3Pn .navbar.navbar-short {
  min-height: 70px;
}
.cid-uKgabkR3Pn .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-uKgabkR3Pn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKgabkR3Pn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKgabkR3Pn .dropdown-item.active,
.cid-uKgabkR3Pn .dropdown-item:active {
  background-color: transparent;
}
.cid-uKgabkR3Pn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKgabkR3Pn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKgabkR3Pn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKgabkR3Pn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKgabkR3Pn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKgabkR3Pn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKgabkR3Pn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKgabkR3Pn .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uKgabkR3Pn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKgabkR3Pn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKgabkR3Pn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKgabkR3Pn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKgabkR3Pn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKgabkR3Pn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKgabkR3Pn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKgabkR3Pn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKgabkR3Pn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKgabkR3Pn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKgabkR3Pn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKgabkR3Pn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKgabkR3Pn .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-uKgabkR3Pn .navbar {
    height: 70px;
  }
  .cid-uKgabkR3Pn .navbar.opened {
    height: auto;
  }
  .cid-uKgabkR3Pn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKgabkR3Pn .container-fluid {
  padding: 0 1rem !important;
}
.cid-uKgabkR3Pn .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uKgabkR3Pn .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uKgabkR3Pn .navbar-collapse {
    width: 100%;
  }
  .cid-uKgabkR3Pn .navbar-nav {
    width: 100%;
  }
  .cid-uKgabkR3Pn .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uKgablatPc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uKgablatPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKgablatPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uKgablatPc .col-content {
    text-align: center;
  }
}
.cid-uKgablatPc .label-container {
  margin-bottom: 16px;
}
.cid-uKgablatPc .label-text {
  color: #ffffff;
}
.cid-uKgablatPc .label-text-2 {
  color: #ffffff;
}
.cid-uKgablatPc .mbr-section-title {
  color: #ffffff;
}
.cid-uKgablatPc .text-container {
  margin-top: 24px;
}
.cid-uKgablatPc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKgablatPc .mbr-text {
  color: #b79b6c;
}
.cid-uKgablatPc .mbr-section-btn {
  margin-top: 28px;
}
.cid-uKgablatPc .mbr-text,
.cid-uKgablatPc .mbr-section-btn {
  color: #ffffff;
}
.cid-uKgabloPNi {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #92b5d5;
}
.cid-uKgabloPNi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKgablL5Mk {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uKgablL5Mk .col-title {
    margin-bottom: 20px;
  }
}
.cid-uKgablL5Mk .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uKgablL5Mk .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uKgablL5Mk .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uKgablWV10 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uKgablWV10 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uKgablWV10 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uKgablWV10 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uKgablWV10 .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-uKgabm8mBu {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #92b5d5;
}
@media (max-width: 991px) {
  .cid-uKgabm8mBu .col-title {
    margin-bottom: 20px;
  }
}
.cid-uKgabm8mBu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uKgabm8mBu .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uKgabm8mBu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uKgabmm7wj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uKgabmm7wj .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uKgabmm7wj .mbr-text {
  color: #c1c1c1;
}
.cid-uQgIDs2PNe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uQgIDs2PNe nav.navbar {
  position: fixed;
}
.cid-uQgIDs2PNe .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-uQgIDs2PNe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQgIDs2PNe .dropdown-item:hover,
.cid-uQgIDs2PNe .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uQgIDs2PNe .dropdown-item:hover span {
  color: white;
}
.cid-uQgIDs2PNe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQgIDs2PNe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQgIDs2PNe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQgIDs2PNe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQgIDs2PNe .nav-link {
  position: relative;
}
.cid-uQgIDs2PNe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQgIDs2PNe .container {
    flex-wrap: nowrap;
  }
}
.cid-uQgIDs2PNe .navbar-caption:hover,
.cid-uQgIDs2PNe .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uQgIDs2PNe .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uQgIDs2PNe .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uQgIDs2PNe .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uQgIDs2PNe .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uQgIDs2PNe .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uQgIDs2PNe .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uQgIDs2PNe .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uQgIDs2PNe .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uQgIDs2PNe .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uQgIDs2PNe .dropdown-menu,
.cid-uQgIDs2PNe .navbar.opened {
  background: #ffffff !important;
}
.cid-uQgIDs2PNe .nav-item:focus,
.cid-uQgIDs2PNe .nav-link:focus {
  outline: none;
}
.cid-uQgIDs2PNe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQgIDs2PNe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQgIDs2PNe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQgIDs2PNe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQgIDs2PNe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQgIDs2PNe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQgIDs2PNe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uQgIDs2PNe .navbar.opened {
  transition: all 0.3s;
}
.cid-uQgIDs2PNe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQgIDs2PNe .navbar .navbar-logo img {
  width: auto;
}
.cid-uQgIDs2PNe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQgIDs2PNe .navbar.collapsed {
  justify-content: center;
}
.cid-uQgIDs2PNe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQgIDs2PNe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQgIDs2PNe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uQgIDs2PNe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQgIDs2PNe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQgIDs2PNe .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-uQgIDs2PNe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQgIDs2PNe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQgIDs2PNe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQgIDs2PNe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQgIDs2PNe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQgIDs2PNe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQgIDs2PNe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQgIDs2PNe .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-uQgIDs2PNe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQgIDs2PNe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQgIDs2PNe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQgIDs2PNe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQgIDs2PNe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQgIDs2PNe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQgIDs2PNe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQgIDs2PNe .navbar.navbar-short {
  min-height: 70px;
}
.cid-uQgIDs2PNe .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-uQgIDs2PNe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQgIDs2PNe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQgIDs2PNe .dropdown-item.active,
.cid-uQgIDs2PNe .dropdown-item:active {
  background-color: transparent;
}
.cid-uQgIDs2PNe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQgIDs2PNe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQgIDs2PNe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQgIDs2PNe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQgIDs2PNe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQgIDs2PNe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQgIDs2PNe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQgIDs2PNe .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uQgIDs2PNe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQgIDs2PNe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQgIDs2PNe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQgIDs2PNe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQgIDs2PNe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQgIDs2PNe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQgIDs2PNe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQgIDs2PNe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQgIDs2PNe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQgIDs2PNe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQgIDs2PNe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQgIDs2PNe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQgIDs2PNe .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-uQgIDs2PNe .navbar {
    height: 70px;
  }
  .cid-uQgIDs2PNe .navbar.opened {
    height: auto;
  }
  .cid-uQgIDs2PNe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQgIDs2PNe .container-fluid {
  padding: 0 1rem !important;
}
.cid-uQgIDs2PNe .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uQgIDs2PNe .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uQgIDs2PNe .navbar-collapse {
    width: 100%;
  }
  .cid-uQgIDs2PNe .navbar-nav {
    width: 100%;
  }
  .cid-uQgIDs2PNe .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uQgIDshuvd {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uQgIDshuvd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQgIDshuvd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uQgIDshuvd .col-content {
    text-align: center;
  }
}
.cid-uQgIDshuvd .label-container {
  margin-bottom: 16px;
}
.cid-uQgIDshuvd .label-text {
  color: #ffffff;
}
.cid-uQgIDshuvd .label-text-2 {
  color: #ffffff;
}
.cid-uQgIDshuvd .mbr-section-title {
  color: #ffffff;
}
.cid-uQgIDshuvd .text-container {
  margin-top: 24px;
}
.cid-uQgIDshuvd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQgIDshuvd .mbr-text {
  color: #b79b6c;
}
.cid-uQgIDshuvd .mbr-section-btn {
  margin-top: 28px;
}
.cid-uQgIDshuvd .mbr-text,
.cid-uQgIDshuvd .mbr-section-btn {
  color: #ffffff;
}
.cid-uQgIDsAumU {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uQgIDsAumU .col-title {
    margin-bottom: 20px;
  }
}
.cid-uQgIDsAumU .mbr-section-title {
  color: #000000;
}
.cid-uQgIDsAumU .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uQgIDsAumU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uQgIDsst4T {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uQgIDsst4T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQgIDsst4T .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-uQgIDsst4T .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uQgIDsst4T .container {
    padding: 0 12px;
  }
}
.cid-uQgIDsst4T .row {
  justify-content: center;
}
.cid-uQgIDsst4T .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12%;
}
.cid-uQgIDsst4T .image-wrapper img {
  height: 500px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uQgIDsst4T .image-wrapper img {
    height: 350px;
  }
}
.cid-uQgIDsKqj8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uQgIDsKqj8 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uQgIDsKqj8 .mbr-text {
  color: #c1c1c1;
}
.cid-uVx51AQfND {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uVx51AQfND nav.navbar {
  position: fixed;
}
.cid-uVx51AQfND .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-uVx51AQfND .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVx51AQfND .dropdown-item:hover,
.cid-uVx51AQfND .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uVx51AQfND .dropdown-item:hover span {
  color: white;
}
.cid-uVx51AQfND .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVx51AQfND .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVx51AQfND .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVx51AQfND .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVx51AQfND .nav-link {
  position: relative;
}
.cid-uVx51AQfND .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVx51AQfND .container {
    flex-wrap: nowrap;
  }
}
.cid-uVx51AQfND .navbar-caption:hover,
.cid-uVx51AQfND .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uVx51AQfND .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uVx51AQfND .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uVx51AQfND .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uVx51AQfND .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uVx51AQfND .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uVx51AQfND .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uVx51AQfND .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uVx51AQfND .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uVx51AQfND .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uVx51AQfND .dropdown-menu,
.cid-uVx51AQfND .navbar.opened {
  background: #ffffff !important;
}
.cid-uVx51AQfND .nav-item:focus,
.cid-uVx51AQfND .nav-link:focus {
  outline: none;
}
.cid-uVx51AQfND .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVx51AQfND .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVx51AQfND .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVx51AQfND .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVx51AQfND .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVx51AQfND .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVx51AQfND .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uVx51AQfND .navbar.opened {
  transition: all 0.3s;
}
.cid-uVx51AQfND .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVx51AQfND .navbar .navbar-logo img {
  width: auto;
}
.cid-uVx51AQfND .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVx51AQfND .navbar.collapsed {
  justify-content: center;
}
.cid-uVx51AQfND .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVx51AQfND .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVx51AQfND .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uVx51AQfND .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVx51AQfND .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVx51AQfND .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-uVx51AQfND .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVx51AQfND .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVx51AQfND .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVx51AQfND .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVx51AQfND .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVx51AQfND .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVx51AQfND .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVx51AQfND .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-uVx51AQfND .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVx51AQfND .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVx51AQfND .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVx51AQfND .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVx51AQfND .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVx51AQfND .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVx51AQfND .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVx51AQfND .navbar.navbar-short {
  min-height: 70px;
}
.cid-uVx51AQfND .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-uVx51AQfND .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVx51AQfND .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVx51AQfND .dropdown-item.active,
.cid-uVx51AQfND .dropdown-item:active {
  background-color: transparent;
}
.cid-uVx51AQfND .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVx51AQfND .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVx51AQfND .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVx51AQfND .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVx51AQfND .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVx51AQfND .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVx51AQfND ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVx51AQfND .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uVx51AQfND button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVx51AQfND button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVx51AQfND button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVx51AQfND button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVx51AQfND button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVx51AQfND button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVx51AQfND nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVx51AQfND nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVx51AQfND nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVx51AQfND nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVx51AQfND .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVx51AQfND a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVx51AQfND .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-uVx51AQfND .navbar {
    height: 70px;
  }
  .cid-uVx51AQfND .navbar.opened {
    height: auto;
  }
  .cid-uVx51AQfND .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVx51AQfND .container-fluid {
  padding: 0 1rem !important;
}
.cid-uVx51AQfND .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uVx51AQfND .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uVx51AQfND .navbar-collapse {
    width: 100%;
  }
  .cid-uVx51AQfND .navbar-nav {
    width: 100%;
  }
  .cid-uVx51AQfND .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uVx51BekE7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uVx51BekE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVx51BekE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVx51BekE7 .col-content {
    text-align: center;
  }
}
.cid-uVx51BekE7 .label-container {
  margin-bottom: 16px;
}
.cid-uVx51BekE7 .label-text {
  color: #ffffff;
}
.cid-uVx51BekE7 .label-text-2 {
  color: #ffffff;
}
.cid-uVx51BekE7 .mbr-section-title {
  color: #ffffff;
}
.cid-uVx51BekE7 .text-container {
  margin-top: 24px;
}
.cid-uVx51BekE7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVx51BekE7 .mbr-text {
  color: #b79b6c;
}
.cid-uVx51BekE7 .mbr-section-btn {
  margin-top: 28px;
}
.cid-uVx51BekE7 .mbr-text,
.cid-uVx51BekE7 .mbr-section-btn {
  color: #ffffff;
}
.cid-uVx51BvdCK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f5cf89;
}
.cid-uVx51BvdCK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uVx51C3csP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-uVx51C3csP .col-title {
    margin-bottom: 20px;
  }
}
.cid-uVx51C3csP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uVx51C3csP .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uVx51C3csP .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uVx51Cm7SS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-uVx51Cm7SS .col-title {
    margin-bottom: 20px;
  }
}
.cid-uVx51Cm7SS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uVx51Cm7SS .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uVx51Cm7SS .mbr-text {
  color: #c50a29;
  text-align: center;
  border-left: 2px solid red;
  border-right: 2px solid red;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-left: 0rem;
  margin: 0rem 0;
}
.cid-uVx51CG1R4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f5cf89;
}
@media (max-width: 991px) {
  .cid-uVx51CG1R4 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uVx51CG1R4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uVx51CG1R4 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uVx51CG1R4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uVx51D28Ac {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uVx51D28Ac .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uVx51D28Ac .mbr-text {
  color: #c1c1c1;
}
.cid-uVWvkrQnV2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-uVWvkrQnV2 nav.navbar {
  position: fixed;
}
.cid-uVWvkrQnV2 .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-uVWvkrQnV2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVWvkrQnV2 .dropdown-item:hover,
.cid-uVWvkrQnV2 .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uVWvkrQnV2 .dropdown-item:hover span {
  color: white;
}
.cid-uVWvkrQnV2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVWvkrQnV2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVWvkrQnV2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVWvkrQnV2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVWvkrQnV2 .nav-link {
  position: relative;
}
.cid-uVWvkrQnV2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVWvkrQnV2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uVWvkrQnV2 .navbar-caption:hover,
.cid-uVWvkrQnV2 .navbar-caption:focus {
  color: #242cd2 !important;
}
.cid-uVWvkrQnV2 .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item:hover {
  color: #242cd2;
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item a:hover {
  color: #242cd2 !important;
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uVWvkrQnV2 .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uVWvkrQnV2 .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #242cd2 !important;
}
.cid-uVWvkrQnV2 .dropdown-menu,
.cid-uVWvkrQnV2 .navbar.opened {
  background: #ffffff !important;
}
.cid-uVWvkrQnV2 .nav-item:focus,
.cid-uVWvkrQnV2 .nav-link:focus {
  outline: none;
}
.cid-uVWvkrQnV2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVWvkrQnV2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVWvkrQnV2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVWvkrQnV2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVWvkrQnV2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVWvkrQnV2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVWvkrQnV2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-uVWvkrQnV2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uVWvkrQnV2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVWvkrQnV2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uVWvkrQnV2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVWvkrQnV2 .navbar.collapsed {
  justify-content: center;
}
.cid-uVWvkrQnV2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVWvkrQnV2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVWvkrQnV2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uVWvkrQnV2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVWvkrQnV2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVWvkrQnV2 .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-uVWvkrQnV2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVWvkrQnV2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVWvkrQnV2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVWvkrQnV2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVWvkrQnV2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVWvkrQnV2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVWvkrQnV2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVWvkrQnV2 .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-uVWvkrQnV2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVWvkrQnV2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVWvkrQnV2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVWvkrQnV2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVWvkrQnV2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVWvkrQnV2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVWvkrQnV2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVWvkrQnV2 .navbar.navbar-short {
  min-height: 70px;
}
.cid-uVWvkrQnV2 .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-uVWvkrQnV2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVWvkrQnV2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVWvkrQnV2 .dropdown-item.active,
.cid-uVWvkrQnV2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uVWvkrQnV2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVWvkrQnV2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVWvkrQnV2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVWvkrQnV2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVWvkrQnV2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVWvkrQnV2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVWvkrQnV2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVWvkrQnV2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uVWvkrQnV2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVWvkrQnV2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVWvkrQnV2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVWvkrQnV2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVWvkrQnV2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVWvkrQnV2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVWvkrQnV2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVWvkrQnV2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVWvkrQnV2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVWvkrQnV2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVWvkrQnV2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVWvkrQnV2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVWvkrQnV2 .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-uVWvkrQnV2 .navbar {
    height: 70px;
  }
  .cid-uVWvkrQnV2 .navbar.opened {
    height: auto;
  }
  .cid-uVWvkrQnV2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVWvkrQnV2 .container-fluid {
  padding: 0 1rem !important;
}
.cid-uVWvkrQnV2 .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uVWvkrQnV2 .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uVWvkrQnV2 .navbar-collapse {
    width: 100%;
  }
  .cid-uVWvkrQnV2 .navbar-nav {
    width: 100%;
  }
  .cid-uVWvkrQnV2 .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uVWvks7h7N {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/titeldlc-2000x597.jpg");
}
.cid-uVWvks7h7N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVWvks7h7N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVWvks7h7N .col-content {
    text-align: center;
  }
}
.cid-uVWvks7h7N .label-container {
  margin-bottom: 16px;
}
.cid-uVWvks7h7N .label-text {
  color: #ffffff;
}
.cid-uVWvks7h7N .label-text-2 {
  color: #ffffff;
}
.cid-uVWvks7h7N .mbr-section-title {
  color: #ffffff;
}
.cid-uVWvks7h7N .text-container {
  margin-top: 24px;
}
.cid-uVWvks7h7N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVWvks7h7N .mbr-text {
  color: #b79b6c;
}
.cid-uVWvks7h7N .mbr-section-btn {
  margin-top: 28px;
}
.cid-uVWvks7h7N .mbr-text,
.cid-uVWvks7h7N .mbr-section-btn {
  color: #ffffff;
}
.cid-uW2P1diPI9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uW2P1diPI9 .img-container {
  position: relative;
}
.cid-uW2P1diPI9 .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-uW2P1diPI9 .image-wrapper img {
  width: 100%;
  height: 30vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-uW2P1diPI9 .image-wrapper img {
    height: auto;
  }
}
.cid-uW2P1diPI9 .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-uW2P1diPI9 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uW2P1diPI9 .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-uVWvksCBOL {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uVWvksCBOL .col-title {
    margin-bottom: 20px;
  }
}
.cid-uVWvksCBOL .mbr-section-title {
  color: #000000;
}
.cid-uVWvksCBOL .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uVWvksCBOL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uVWvksPJ9f {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #33363b;
  overflow: hidden;
}
.cid-uVWvksPJ9f .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uVWvksPJ9f .mbr-text {
  color: #c1c1c1;
}
