body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
  .display-2 {
    font-size: 2.24rem;
  }
  .display-5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.308rem + (3.2 - 1.308) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.308rem + (3.2 - 1.308) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.96rem;
    font-size: calc( 1.252rem + (2.8 - 1.252) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.252rem + (2.8 - 1.252) * ((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.15rem + (2 - 1.15) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.05 * (1.15rem + (2 - 1.15) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0625rem + (1.25 - 1.0625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0625rem + (1.25 - 1.0625) * ((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: #000000 !important;
}
.bg-success {
  background-color: #7f9c26 !important;
}
.bg-info {
  background-color: #62a5c1 !important;
}
.bg-warning {
  background-color: #b84358 !important;
}
.bg-danger {
  background-color: #73091c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1b6599 !important;
  border-color: #1b6599 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0e344f !important;
  border-color: #0e344f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0e344f !important;
  border-color: #0e344f !important;
}
.btn-info,
.btn-info:active {
  background-color: #62a5c1 !important;
  border-color: #62a5c1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #3a7892 !important;
  border-color: #3a7892 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3a7892 !important;
  border-color: #3a7892 !important;
}
.btn-success,
.btn-success:active {
  background-color: #7f9c26 !important;
  border-color: #7f9c26 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #465615 !important;
  border-color: #465615 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #465615 !important;
  border-color: #465615 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b84358 !important;
  border-color: #b84358 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #782c3a !important;
  border-color: #782c3a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #782c3a !important;
  border-color: #782c3a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73091c !important;
  border-color: #73091c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #230308 !important;
  border-color: #230308 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #230308 !important;
  border-color: #230308 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  color: #000000;
  border-color: transparent;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #000000 !important;
  background-color: transparent!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  color: #1b6599;
  border-color: transparent;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #0e344f !important;
  background-color: transparent!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1b6599 !important;
  border-color: #1b6599 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  color: #62a5c1;
  border-color: transparent;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #3a7892 !important;
  background-color: transparent!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #62a5c1 !important;
  border-color: #62a5c1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  color: #7f9c26;
  border-color: transparent;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #465615 !important;
  background-color: transparent!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7f9c26 !important;
  border-color: #7f9c26 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  color: #b84358;
  border-color: transparent;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #782c3a !important;
  background-color: transparent!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b84358 !important;
  border-color: #b84358 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  color: #73091c;
  border-color: transparent;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #230308 !important;
  background-color: transparent!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73091c !important;
  border-color: #73091c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  color: #232323;
  border-color: transparent;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #000000 !important;
  background-color: transparent!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  color: #fafafa;
  border-color: transparent;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #cfcfcf !important;
  background-color: transparent!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #1b6599 !important;
}
.text-success {
  color: #7f9c26 !important;
}
.text-info {
  color: #62a5c1 !important;
}
.text-warning {
  color: #b84358 !important;
}
.text-danger {
  color: #73091c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0c2c42 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3c4a12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #366f87 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #6d2834 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #140205 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #62a5c1;
}
.alert-warning {
  background-color: #b84358;
}
.alert-danger {
  background-color: #73091c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #beda67;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #bdd9e5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #dc9faa;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e91239;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #1b6599 !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='%23000000' %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-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .container,
  .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.row {
  margin-left: -50px;
  margin-right: -50px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .row {
    margin-left: -45px;
    margin-right: -45px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .row {
    margin-left: -36px;
    margin-right: -36px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .row {
    margin-left: -40px;
    margin-right: -40px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: -30px;
    margin-right: -30px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 50px;
  padding: 15px 33px;
  font-weight: 500;
  line-height: 1 !important;
  transition-duration: .2s;
  box-shadow: none !important;
  border-radius: 25px !important;
  overflow: hidden !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: .5s all;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(4px);
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    padding: 12px 24px;
    min-width: auto !important;
  }
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uFVhD7azrn {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/header20.png-1980x1020.png");
}
.cid-uFVhD7azrn .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uFVhD7azrn .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uFVhD7azrn .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uFVhD7azrn .animated-element,
.cid-uFVhD7azrn .typed-cursor {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFVhD7azrn .typed-text {
    text-align: center;
  }
}
.cid-uFVhD7azrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVhD7azrn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVhD7azrn .mbr-section-title {
  text-align: left;
}
.cid-uAK2Shdpcx {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAK2Shdpcx .mbr-section-title {
  color: #000000;
}
.cid-uAK2Shdpcx .mbr-text,
.cid-uAK2Shdpcx .mbr-section-btn {
  color: #000000;
}
.cid-uAK2Shdpcx .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uAK2Shdpcx img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uAK2Shdpcx .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uAK2Shdpcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAK2Shdpcx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMbdLUrAB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAMbdLUrAB .item-content {
  disaply: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  height: 100%;
}
.cid-uAMbdLUrAB img,
.cid-uAMbdLUrAB .item-img {
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 200px;
  height: 200px;
}
.cid-uAMbdLUrAB .item:focus,
.cid-uAMbdLUrAB span:focus {
  outline: none;
}
.cid-uAMbdLUrAB .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uAMbdLUrAB .item {
    margin-bottom: 1rem;
  }
}
.cid-uAMbdLUrAB h5,
.cid-uAMbdLUrAB h6 {
  margin: 0;
}
.cid-uAMbdLUrAB .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  padding: 1rem;
  flex-flow: column nowrap;
  border: 1px solid lightgray;
  transition: all 0.3s;
}
.cid-uAMbdLUrAB .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uAMbdLUrAB .item-wrapper:hover {
  border-color: #000000;
}
.cid-uAMbdLUrAB .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .cid-uAMbdLUrAB .item-wrapper {
    height: auto;
  }
}
.cid-uAMbdLUrAB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAMbdLUrAB .item-title {
  text-align: left;
}
.cid-uAMbdLUrAB .item-subtitle {
  text-align: center;
}
.cid-uAMbdLUrAB .mbr-text,
.cid-uAMbdLUrAB .item .mbr-section-btn {
  text-align: center;
}
.cid-uAMbdLUrAB .content-head {
  max-width: 800px;
}
.cid-uAMbdLUrAB .mbr-section-subtitle,
.cid-uAMbdLUrAB .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-uDHnU02dJA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uDHnU02dJA .item-content {
  disaply: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  height: 100%;
}
.cid-uDHnU02dJA img,
.cid-uDHnU02dJA .item-img {
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 300px;
  height: 300px;
}
.cid-uDHnU02dJA .item:focus,
.cid-uDHnU02dJA span:focus {
  outline: none;
}
.cid-uDHnU02dJA .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uDHnU02dJA .item {
    margin-bottom: 1rem;
  }
}
.cid-uDHnU02dJA h5,
.cid-uDHnU02dJA h6 {
  margin: 0;
}
.cid-uDHnU02dJA .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  padding: 1rem;
  flex-flow: column nowrap;
  border: 1px solid lightgray;
  transition: all 0.3s;
}
.cid-uDHnU02dJA .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uDHnU02dJA .item-wrapper:hover {
  border-color: #000000;
}
.cid-uDHnU02dJA .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .cid-uDHnU02dJA .item-wrapper {
    height: auto;
  }
}
.cid-uDHnU02dJA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uDHnU02dJA .item-title {
  text-align: center;
}
.cid-uDHnU02dJA .item-subtitle {
  text-align: center;
}
.cid-uDHnU02dJA .mbr-text,
.cid-uDHnU02dJA .item .mbr-section-btn {
  text-align: center;
}
.cid-uDHnU02dJA .content-head {
  max-width: 800px;
}
.cid-uDHnU02dJA .mbr-section-subtitle,
.cid-uDHnU02dJA .mbr-section-head .mbr-section-btn {
  text-align: center;
}
.cid-uyVxto65jo {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uyVxto65jo .link-wrap {
  width: 100%;
}
.cid-uyVxto65jo .link {
  display: inline-block;
}
.cid-uyVxto65jo .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uyVxto65jo .icon-box {
  background: #1b6599;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uyVxto65jo .icon-title {
  margin: 0;
}
.cid-uyVxto65jo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
.cid-uyVxto65jo .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  font-weight: 600;
}
.cid-uyVxto65jo .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e960";
  font-family: 'Moririse2' !important;
  color: #ffffff;
  font-size: 0.7rem;
  background: #1b6599;
  padding: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uyVxto65jo .link a:hover {
  text-decoration: underline;
}
.cid-uyVxto65jo .link,
.cid-uyVxto65jo .link-wrap {
  color: #000000;
}
.cid-uyVxto65jo .mbr-text,
.cid-uyVxto65jo .mbr-section-btn {
  color: #333333;
}
@media (max-width: 992px) {
  .cid-uyVxto65jo .card {
    margin-bottom: 2rem;
  }
}
.cid-uyVxto65jo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyVxto65jo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyVxto65jo .card-title,
.cid-uyVxto65jo .card-box {
  color: #000000;
}
.cid-uyVWA5n5wE {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uyVWA5n5wE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyVWA5n5wE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyVWA5n5wE .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uyVWA5n5wE .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyVWA5n5wE .container {
    padding: 0 16px;
  }
}
.cid-uyVWA5n5wE .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uyVWA5n5wE .card {
    margin-bottom: 40px;
  }
}
.cid-uyVWA5n5wE .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uyVWA5n5wE .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uyVWA5n5wE .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uyVWA5n5wE .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uyVWA5n5wE .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uyVWA5n5wE .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uyVWA5n5wE .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uyVWA5n5wE .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uyVWA5n5wE .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uyVWA5n5wE .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uyVWA5n5wE .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uyVWA5n5wE .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uyVWA5n5wE .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uyVWA5n5wE .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uyVWA5n5wE .mbr-section-title {
  color: #ffffff;
}
.cid-uyVWA5n5wE .copyright {
  color: #ffffff;
}
.cid-uyVWA5n5wE .mbr-card-title {
  color: #ffffff;
}
.cid-uyVWA5n5wE .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uG1qodojT3 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/bannerbild.jpg-1916x1437.jpg");
}
.cid-uG1qodojT3 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uG1qodojT3 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uG1qodojT3 .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uG1qodojT3 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uG1qodojT3 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uG1qodojT3 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uG1qodojT3 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uG1qodojT3 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uG1qodojT3 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uG1qodojT3 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uG1qodojT3 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uG1qodojT3 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uG1qodojT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG1qodojT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG3HKI9xi2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uG3HKI9xi2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG3HKI9xi2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG3HKI9xi2 .video-wrapper iframe {
  width: 100%;
}
.cid-uG3HKI9xi2 .mbr-section-title,
.cid-uG3HKI9xi2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG3HKI9xi2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uG3IfjF12n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uG3IfjF12n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG3IfjF12n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG3E0maFtb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uG3E0maFtb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG3E0maFtb .container {
  max-width: 1300px;
}
.cid-uG3E0maFtb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG3E0maFtb .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uG3E0maFtb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uG3E0maFtb .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uG3E0maFtb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uG3E0maFtb .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uG3E0maFtb .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uG3E0maFtb .mbr-section-title {
  color: #000000;
}
.cid-uG3E0maFtb .mbr-text,
.cid-uG3E0maFtb .mbr-section-btn {
  color: #555555;
}
.cid-uAMhbUQ4I3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-uAMhbUQ4I3 .title__block {
  margin-bottom: 89px;
}
.cid-uAMhbUQ4I3 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uAMhbUQ4I3 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uAMhbUQ4I3 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uAMhbUQ4I3 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uAMhbUQ4I3 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uAMhbUQ4I3 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uAMhbUQ4I3 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uAMhbUQ4I3 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uAMhbUQ4I3 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uAMhbUQ4I3 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #1b6599;
}
.cid-uAMhbUQ4I3 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uAMhbUQ4I3 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #1b6599;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uAMhbUQ4I3 .title__block {
    margin-bottom: 40px;
  }
  .cid-uAMhbUQ4I3 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uAMhbUQ4I3 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uAMhbUQ4I3 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uAMhbUQ4I3 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uAMhbUQ4I3 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uAMhbUQ4I3 .iconBackground {
    left: 0 !important;
  }
  .cid-uAMhbUQ4I3 .separline:before {
    left: 0 !important;
  }
}
.cid-uAMhbUQ4I3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMhbUQ4I3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMhbUQ4I3 .mbr-section-title {
  text-align: left;
  color: #225589;
}
.cid-uAMiMrVFYd {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-uAMiMrVFYd .title__block {
  margin-bottom: 89px;
}
.cid-uAMiMrVFYd .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uAMiMrVFYd .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uAMiMrVFYd .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uAMiMrVFYd .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uAMiMrVFYd .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uAMiMrVFYd .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uAMiMrVFYd .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uAMiMrVFYd .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uAMiMrVFYd .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uAMiMrVFYd .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #1b6599;
}
.cid-uAMiMrVFYd .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uAMiMrVFYd .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #1b6599;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uAMiMrVFYd .title__block {
    margin-bottom: 40px;
  }
  .cid-uAMiMrVFYd .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uAMiMrVFYd .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uAMiMrVFYd .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uAMiMrVFYd .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uAMiMrVFYd .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uAMiMrVFYd .iconBackground {
    left: 0 !important;
  }
  .cid-uAMiMrVFYd .separline:before {
    left: 0 !important;
  }
}
.cid-uAMiMrVFYd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMiMrVFYd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDQhYoPKOr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDQhYoPKOr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDQhYoPKOr .card-title {
  margin-bottom: 26px;
  color: #1b6599;
}
.cid-uDQhYoPKOr .mbr-text {
  margin-bottom: 30px;
}
.cid-uDQhYoPKOr .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(125deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-uDQhYoPKOr .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-uDQhYoPKOr .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uDQhYoPKOr .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uDQhYoPKOr .btn_link:hover {
  cursor: pointer;
}
.cid-uDQhYoPKOr .btn_link:hover a {
  color: #000000 !important;
}
.cid-uDQhYoPKOr .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-uDQhYoPKOr .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDQhYoPKOr .text-wrapper {
    text-align: center;
  }
  .cid-uDQhYoPKOr .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uDQhYoPKOr .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uDQhYoPKOr .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uDQhYoPKOr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDQhYoPKOr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDQhYoPKOr .card-title,
.cid-uDQhYoPKOr .icon_block {
  color: #000000;
}
.cid-uAMeDtDkIu {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uAMeDtDkIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMeDtDkIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMeDtDkIu .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAMeDtDkIu .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uAMeDtDkIu .container {
    padding: 0 16px;
  }
}
.cid-uAMeDtDkIu .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAMeDtDkIu .card {
    margin-bottom: 40px;
  }
}
.cid-uAMeDtDkIu .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAMeDtDkIu .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uAMeDtDkIu .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uAMeDtDkIu .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMeDtDkIu .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uAMeDtDkIu .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uAMeDtDkIu .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAMeDtDkIu .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uAMeDtDkIu .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAMeDtDkIu .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uAMeDtDkIu .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uAMeDtDkIu .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAMeDtDkIu .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAMeDtDkIu .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uAMeDtDkIu .mbr-section-title {
  color: #ffffff;
}
.cid-uAMeDtDkIu .copyright {
  color: #ffffff;
}
.cid-uAMeDtDkIu .mbr-card-title {
  color: #ffffff;
}
.cid-uAMeDtDkIu .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDLkTuHZCK {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/kontakt.png-1920x1080.png");
}
.cid-uDLkTuHZCK .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uDLkTuHZCK .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uDLkTuHZCK .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uDLkTuHZCK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkTuHZCK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMkgahQB3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uAMkgahQB3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkgahQB3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMkgahQB3 .row {
  justify-content: center;
}
.cid-uAMkgahQB3 .col-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uAMkgahQB3 .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uAMkgahQB3 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uAMkgahQB3 .card-row {
  align-items: stretch;
}
.cid-uAMkgahQB3 .card-box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .card-box {
    flex-wrap: wrap;
    align-items: center;
  }
}
.cid-uAMkgahQB3 .mbr-iconfont {
  display: block;
  font-size: 60px;
  color: #ffffff;
}
.cid-uAMkgahQB3 .card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding: 10px;
}
.cid-uAMkgahQB3 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 10px;
  margin-right: 25px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1b6599;
}
@media (max-width: 991px) {
  .cid-uAMkgahQB3 .iconfont-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .iconfont-wrapper {
    margin: 0 auto;
  }
}
.cid-uAMkgahQB3 .card-wrapper {
  display: flex;
}
.cid-uAMkgahQB3 .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .card-title {
    text-align: center !important;
  }
}
.cid-uAMkgahQB3 .card-text {
  width: 100%;
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uAMkgahQB3 .card-text {
    text-align: center !important;
  }
}
.cid-uAMkgahQB3 .card-title,
.cid-uAMkgahQB3 .iconfont-wrapper {
  color: #225589;
}
.cid-uDV1ymAypb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDV1ymAypb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDV1ymAypb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDV1ymAypb .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uDV1ymAypb .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uDV1ymAypb .items-wrapper {
  margin: 0 -10px;
}
.cid-uDV1ymAypb .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDV1ymAypb .item {
    margin-bottom: 16px;
  }
}
.cid-uDV1ymAypb .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uDV1ymAypb .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uDV1ymAypb .item:hover .item-wrapper .item-content .item-img,
.cid-uDV1ymAypb .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uDV1ymAypb .item:nth-child(2n) .item-wrapper {
  background-color: #f0f0f0;
}
.cid-uDV1ymAypb .item:nth-child(3n) .item-wrapper {
  background-color: #f0f0f0;
}
.cid-uDV1ymAypb .item:nth-child(4n) .item-wrapper {
  background-color: #fafafa;
}
.cid-uDV1ymAypb .item:nth-child(6n) .item-wrapper {
  background-color: #fafafa;
}
.cid-uDV1ymAypb .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #f0f0f0;
}
@media (max-width: 992px) {
  .cid-uDV1ymAypb .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uDV1ymAypb .item .item-wrapper .item-content {
  position: relative;
}
.cid-uDV1ymAypb .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uDV1ymAypb .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uDV1ymAypb .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uDV1ymAypb .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uDV1ymAypb .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uDV1ymAypb .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uDV1ymAypb .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uDV1ymAypb .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uDV1ymAypb .mbr-section-title {
  color: #212529;
}
.cid-uDV1ymAypb .panel-title-edit {
  color: #212529;
}
.cid-uDV1ymAypb .panel-text {
  color: #51565c;
}
.cid-uDV1ymAypb .item-title {
  color: #1b6599;
}
.cid-uB1k0h2OVm {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uB1k0h2OVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB1k0h2OVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB1k0h2OVm .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uB1k0h2OVm .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uB1k0h2OVm .items-wrapper {
  margin: 0 -10px;
}
.cid-uB1k0h2OVm .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uB1k0h2OVm .item {
    margin-bottom: 16px;
  }
}
.cid-uB1k0h2OVm .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uB1k0h2OVm .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uB1k0h2OVm .item:hover .item-wrapper .item-content .item-img,
.cid-uB1k0h2OVm .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uB1k0h2OVm .item:nth-child(2n) .item-wrapper {
  background-color: #fafafa;
}
.cid-uB1k0h2OVm .item:nth-child(3n) .item-wrapper {
  background-color: #fafafa;
}
.cid-uB1k0h2OVm .item:nth-child(4n) .item-wrapper {
  background-color: #fafafa;
}
.cid-uB1k0h2OVm .item:nth-child(6n) .item-wrapper {
  background-color: #fafafa;
}
.cid-uB1k0h2OVm .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .cid-uB1k0h2OVm .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uB1k0h2OVm .item .item-wrapper .item-content {
  position: relative;
}
.cid-uB1k0h2OVm .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uB1k0h2OVm .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uB1k0h2OVm .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uB1k0h2OVm .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uB1k0h2OVm .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uB1k0h2OVm .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uB1k0h2OVm .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uB1k0h2OVm .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uB1k0h2OVm .mbr-section-title {
  color: #212529;
}
.cid-uB1k0h2OVm .panel-title-edit {
  color: #212529;
}
.cid-uB1k0h2OVm .panel-text {
  color: #51565c;
}
.cid-uB1k0h2OVm .item-title {
  color: #225589;
}
.cid-uAMkgc9luB {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uAMkgc9luB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkgc9luB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMkgc9luB .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAMkgc9luB .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uAMkgc9luB .container {
    padding: 0 16px;
  }
}
.cid-uAMkgc9luB .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAMkgc9luB .card {
    margin-bottom: 40px;
  }
}
.cid-uAMkgc9luB .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAMkgc9luB .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uAMkgc9luB .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uAMkgc9luB .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMkgc9luB .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uAMkgc9luB .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uAMkgc9luB .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAMkgc9luB .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uAMkgc9luB .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAMkgc9luB .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uAMkgc9luB .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uAMkgc9luB .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAMkgc9luB .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAMkgc9luB .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uAMkgc9luB .mbr-section-title {
  color: #ffffff;
}
.cid-uAMkgc9luB .copyright {
  color: #ffffff;
}
.cid-uAMkgc9luB .mbr-card-title {
  color: #ffffff;
}
.cid-uAMkgc9luB .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDLlm2hSDD {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/karriere12.png-1-1920x1080.png");
}
.cid-uDLlm2hSDD .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uDLlm2hSDD .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uDLlm2hSDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLlm2hSDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLlm2hSDD .card .wrapper .mbr-section-title,
.cid-uDLlm2hSDD .mbr-section-btn,
.cid-uDLlm2hSDD .mbr-list .list {
  text-align: left;
}
.cid-uAMzYvC0tZ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAMzYvC0tZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAMzYvC0tZ .card-title {
  margin-bottom: 26px;
  color: #1b6599;
}
.cid-uAMzYvC0tZ .mbr-text {
  margin-bottom: 30px;
}
.cid-uAMzYvC0tZ .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(125deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-uAMzYvC0tZ .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-uAMzYvC0tZ .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uAMzYvC0tZ .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAMzYvC0tZ .btn_link:hover {
  cursor: pointer;
}
.cid-uAMzYvC0tZ .btn_link:hover a {
  color: #000000 !important;
}
.cid-uAMzYvC0tZ .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-uAMzYvC0tZ .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAMzYvC0tZ .text-wrapper {
    text-align: center;
  }
  .cid-uAMzYvC0tZ .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uAMzYvC0tZ .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uAMzYvC0tZ .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAMzYvC0tZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMzYvC0tZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMzYvC0tZ .card-title,
.cid-uAMzYvC0tZ .icon_block {
  color: #000000;
}
.cid-uAMDEh8p8y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uAMDEh8p8y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAMDEh8p8y .card-title {
  margin-bottom: 26px;
  color: #1b6599;
}
.cid-uAMDEh8p8y .mbr-text {
  margin-bottom: 30px;
}
.cid-uAMDEh8p8y .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(125deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-uAMDEh8p8y .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-uAMDEh8p8y .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uAMDEh8p8y .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAMDEh8p8y .btn_link:hover {
  cursor: pointer;
}
.cid-uAMDEh8p8y .btn_link:hover a {
  color: #000000 !important;
}
.cid-uAMDEh8p8y .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-uAMDEh8p8y .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAMDEh8p8y .text-wrapper {
    text-align: center;
  }
  .cid-uAMDEh8p8y .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uAMDEh8p8y .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uAMDEh8p8y .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAMDEh8p8y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMDEh8p8y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMDEh8p8y .card-title,
.cid-uAMDEh8p8y .icon_block {
  color: #000000;
}
.cid-uDI6xHpyUX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-uDI6xHpyUX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uDI6xHpyUX .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uDI6xHpyUX .mbr-text {
  color: #8d97ad;
}
.cid-uDI6xHpyUX .nav {
  border: none;
}
.cid-uDI6xHpyUX .nav-tabs {
  display: table;
  width: 100%;
}
.cid-uDI6xHpyUX .nav-tabs .nav-item {
  display: table-cell;
}
.cid-uDI6xHpyUX .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDI6xHpyUX .tab-content {
  margin-top: 3rem;
}
.cid-uDI6xHpyUX .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #fafafa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-uDI6xHpyUX .nav-tabs .nav-link:hover {
  background-color: #225589;
  color: #ffffff;
}
.cid-uDI6xHpyUX .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #225589;
  border-bottom: none;
}
.cid-uDI6xHpyUX .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uDI6xHpyUX .nav-item {
    display: table-row !important;
  }
}
.cid-uDI6xHpyUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDI6xHpyUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDI6xHpyUX .mbr-text,
.cid-uDI6xHpyUX .mbr-section-btn {
  color: #000000;
}
.cid-uE2EVGREl6 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uE2EVGREl6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE2EVGREl6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE2EVGREl6 .card-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
.cid-uE2EVGREl6 .mbr-iconfont {
  font-size: 3rem;
  color: #b84358;
  padding-right: 2rem;
}
.cid-uE2EVGREl6 .title {
  text-align: center;
}
.cid-uAMvdvhd3S {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uAMvdvhd3S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMvdvhd3S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMvdvhd3S .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAMvdvhd3S .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uAMvdvhd3S .container {
    padding: 0 16px;
  }
}
.cid-uAMvdvhd3S .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAMvdvhd3S .card {
    margin-bottom: 40px;
  }
}
.cid-uAMvdvhd3S .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAMvdvhd3S .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uAMvdvhd3S .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uAMvdvhd3S .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMvdvhd3S .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uAMvdvhd3S .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uAMvdvhd3S .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAMvdvhd3S .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uAMvdvhd3S .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAMvdvhd3S .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uAMvdvhd3S .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uAMvdvhd3S .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAMvdvhd3S .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAMvdvhd3S .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uAMvdvhd3S .mbr-section-title {
  color: #ffffff;
}
.cid-uAMvdvhd3S .copyright {
  color: #ffffff;
}
.cid-uAMvdvhd3S .mbr-card-title {
  color: #ffffff;
}
.cid-uAMvdvhd3S .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uBdgdOjeTq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uBdgdOjeTq H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uBdgdOjeTq h1 {
  background: linear-gradient(to left, #1b6599, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBdgdOjeTq .mbr-text,
.cid-uBdgdOjeTq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uBdgdOjeTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBdgdOjeTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANx5jglGg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uANx5jglGg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANx5jglGg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANx5jglGg .row {
  justify-content: center;
}
.cid-uANx5jglGg .col-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .col-title {
    margin-bottom: 20px;
  }
}
.cid-uANx5jglGg .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uANx5jglGg .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uANx5jglGg .card-row {
  align-items: stretch;
}
.cid-uANx5jglGg .card-box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .card-box {
    flex-wrap: wrap;
    align-items: center;
  }
}
.cid-uANx5jglGg .mbr-iconfont {
  display: block;
  font-size: 60px;
  color: #ffffff;
}
.cid-uANx5jglGg .card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding: 10px;
}
.cid-uANx5jglGg .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 10px;
  margin-right: 25px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1b6599;
}
@media (max-width: 991px) {
  .cid-uANx5jglGg .iconfont-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .iconfont-wrapper {
    margin: 0 auto;
  }
}
.cid-uANx5jglGg .card-wrapper {
  display: flex;
}
.cid-uANx5jglGg .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .card-title {
    text-align: center !important;
  }
}
.cid-uANx5jglGg .card-text {
  width: 100%;
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uANx5jglGg .card-text {
    text-align: center !important;
  }
}
.cid-uANx5jglGg .card-title,
.cid-uANx5jglGg .iconfont-wrapper {
  color: #000000;
}
.cid-uANx5mdUgo {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uANx5mdUgo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANx5mdUgo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANx5mdUgo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uANx5mdUgo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uANx5mdUgo .container {
    padding: 0 16px;
  }
}
.cid-uANx5mdUgo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uANx5mdUgo .card {
    margin-bottom: 40px;
  }
}
.cid-uANx5mdUgo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANx5mdUgo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uANx5mdUgo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uANx5mdUgo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uANx5mdUgo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uANx5mdUgo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uANx5mdUgo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANx5mdUgo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uANx5mdUgo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANx5mdUgo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uANx5mdUgo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uANx5mdUgo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uANx5mdUgo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANx5mdUgo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uANx5mdUgo .mbr-section-title {
  color: #ffffff;
}
.cid-uANx5mdUgo .copyright {
  color: #ffffff;
}
.cid-uANx5mdUgo .mbr-card-title {
  color: #ffffff;
}
.cid-uANx5mdUgo .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uBdhfLFXQK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uBdhfLFXQK H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uBdhfLFXQK h1 {
  background: linear-gradient(to left, #1b6599, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBdhfLFXQK .mbr-text,
.cid-uBdhfLFXQK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uBdhfLFXQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBdhfLFXQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANxAALxHL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uANxAALxHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANxAALxHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANxAALxHL .row {
  justify-content: center;
}
.cid-uANxAALxHL .col-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .col-title {
    margin-bottom: 20px;
  }
}
.cid-uANxAALxHL .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uANxAALxHL .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uANxAALxHL .card-row {
  align-items: stretch;
}
.cid-uANxAALxHL .card-box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .card-box {
    flex-wrap: wrap;
    align-items: center;
  }
}
.cid-uANxAALxHL .mbr-iconfont {
  display: block;
  font-size: 60px;
  color: #ffffff;
}
.cid-uANxAALxHL .card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding: 10px;
}
.cid-uANxAALxHL .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 10px;
  margin-right: 25px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1b6599;
}
@media (max-width: 991px) {
  .cid-uANxAALxHL .iconfont-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .iconfont-wrapper {
    margin: 0 auto;
  }
}
.cid-uANxAALxHL .card-wrapper {
  display: flex;
}
.cid-uANxAALxHL .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .card-title {
    text-align: center !important;
  }
}
.cid-uANxAALxHL .card-text {
  width: 100%;
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uANxAALxHL .card-text {
    text-align: center !important;
  }
}
.cid-uANxAALxHL .card-title,
.cid-uANxAALxHL .iconfont-wrapper {
  color: #225589;
}
.cid-uANxABcqSC {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uANxABcqSC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANxABcqSC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANxABcqSC .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uANxABcqSC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uANxABcqSC .container {
    padding: 0 16px;
  }
}
.cid-uANxABcqSC .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uANxABcqSC .card {
    margin-bottom: 40px;
  }
}
.cid-uANxABcqSC .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANxABcqSC .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uANxABcqSC .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uANxABcqSC .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uANxABcqSC .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uANxABcqSC .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uANxABcqSC .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANxABcqSC .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uANxABcqSC .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANxABcqSC .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uANxABcqSC .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uANxABcqSC .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uANxABcqSC .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANxABcqSC .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uANxABcqSC .mbr-section-title {
  color: #ffffff;
}
.cid-uANxABcqSC .copyright {
  color: #ffffff;
}
.cid-uANxABcqSC .mbr-card-title {
  color: #ffffff;
}
.cid-uANxABcqSC .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDLmeHphDc {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/wacker-usa-wrmetauscher.jpg-2000x928.jpg");
}
.cid-uDLmeHphDc .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uDLmeHphDc .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uDLmeHphDc .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uDLmeHphDc .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uDLmeHphDc .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDLmeHphDc .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uDLmeHphDc .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uDLmeHphDc .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uDLmeHphDc .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uDLmeHphDc .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uDLmeHphDc .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uDLmeHphDc .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uDLmeHphDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLmeHphDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOnivc2SZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAOnivc2SZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAOnivc2SZ .card-title {
  margin-bottom: 26px;
  color: #1b6599;
}
.cid-uAOnivc2SZ .mbr-text {
  margin-bottom: 30px;
}
.cid-uAOnivc2SZ .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(125deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-uAOnivc2SZ .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-uAOnivc2SZ .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uAOnivc2SZ .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAOnivc2SZ .btn_link:hover {
  cursor: pointer;
}
.cid-uAOnivc2SZ .btn_link:hover a {
  color: #000000 !important;
}
.cid-uAOnivc2SZ .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-uAOnivc2SZ .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAOnivc2SZ .text-wrapper {
    text-align: center;
  }
  .cid-uAOnivc2SZ .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uAOnivc2SZ .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uAOnivc2SZ .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAOnivc2SZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOnivc2SZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOnivc2SZ .card-title,
.cid-uAOnivc2SZ .icon_block {
  color: #000000;
}
.cid-uANUNvRCsb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uANUNvRCsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANUNvRCsb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANUNvRCsb .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uANUNvRCsb .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uANUNvRCsb .container {
    padding: 0 16px;
  }
}
.cid-uANUNvRCsb .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uANUNvRCsb .card {
    margin-bottom: 40px;
  }
}
.cid-uANUNvRCsb .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANUNvRCsb .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uANUNvRCsb .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uANUNvRCsb .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uANUNvRCsb .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uANUNvRCsb .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uANUNvRCsb .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANUNvRCsb .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uANUNvRCsb .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANUNvRCsb .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uANUNvRCsb .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uANUNvRCsb .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uANUNvRCsb .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANUNvRCsb .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uANUNvRCsb .mbr-section-title {
  color: #ffffff;
}
.cid-uANUNvRCsb .copyright {
  color: #ffffff;
}
.cid-uANUNvRCsb .mbr-card-title {
  color: #ffffff;
}
.cid-uANUNvRCsb .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uBdhmyl2z4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uBdhmyl2z4 H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uBdhmyl2z4 h1 {
  background: linear-gradient(to left, #1b6599, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBdhmyl2z4 .mbr-text,
.cid-uBdhmyl2z4 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uBdhmyl2z4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBdhmyl2z4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB7fGCxKZw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uB7fGCxKZw .showAlerts {
  display: block !important;
}
.cid-uB7fGCxKZw .rowflexrev {
  display: -webkit-flex;
}
.cid-uB7fGCxKZw .ws-form-alerts {
  margin-top: 1rem;
}
.cid-uB7fGCxKZw .title {
  margin-bottom: 2rem;
}
.cid-uB7fGCxKZw .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uB7fGCxKZw textarea.form-control {
  min-height: 188px;
}
.cid-uB7fGCxKZw LABEL {
  color: #232323;
  display: initial;
}
.cid-uB7fGCxKZw .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uB7fGCxKZw .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uB7fGCxKZw .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uB7fGCxKZw .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uB7fGCxKZw .alert {
  margin-bottom: 0;
}
.cid-uB7fGCxKZw .alert-success {
  background-color: #1b6599;
}
.cid-uB7fGCxKZw .alert-danger {
  background-color: #ff4a52;
}
.cid-uB7fGCxKZw .btn {
  display: inline-flex;
}
.cid-uB7fGCxKZw .mbr-alert-success {
  text-align: center;
  color: #ffffff;
}
.cid-uB7fGCxKZw .mbr-alert-danger {
  text-align: center;
  color: #ffffff;
}
.cid-uB7fGCxKZw input,
.cid-uB7fGCxKZw option,
.cid-uB7fGCxKZw textarea {
  color: #000000;
}
.cid-uB7fvHBv8v {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uB7fvHBv8v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB7fvHBv8v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB7fvHBv8v .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uB7fvHBv8v .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uB7fvHBv8v .container {
    padding: 0 16px;
  }
}
.cid-uB7fvHBv8v .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uB7fvHBv8v .card {
    margin-bottom: 40px;
  }
}
.cid-uB7fvHBv8v .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uB7fvHBv8v .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uB7fvHBv8v .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uB7fvHBv8v .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uB7fvHBv8v .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uB7fvHBv8v .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uB7fvHBv8v .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uB7fvHBv8v .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uB7fvHBv8v .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uB7fvHBv8v .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uB7fvHBv8v .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uB7fvHBv8v .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uB7fvHBv8v .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uB7fvHBv8v .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uB7fvHBv8v .mbr-section-title {
  color: #ffffff;
}
.cid-uB7fvHBv8v .copyright {
  color: #ffffff;
}
.cid-uB7fvHBv8v .mbr-card-title {
  color: #ffffff;
}
.cid-uB7fvHBv8v .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDLl6EKFE6 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/kompetenzen.png-1-1920x1080.png");
}
.cid-uDLl6EKFE6 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uDLl6EKFE6 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uDLl6EKFE6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uDLl6EKFE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLl6EKFE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB9Qf2EvXZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uB9Qf2EvXZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB9Qf2EvXZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB9Qf2EvXZ .mbr-text,
.cid-uB9Qf2EvXZ .mbr-section-btn {
  text-align: left;
}
.cid-uB9Qf2EvXZ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uDVphpaGW9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1b6599;
}
.cid-uDVphpaGW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDVphpaGW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDVphpaGW9 .card-wrapper {
  background: #f0f0f0;
}
@media (max-width: 767px) {
  .cid-uDVphpaGW9 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uDVphpaGW9 .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uDVphpaGW9 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uDVphpaGW9 .mbr-text,
.cid-uDVphpaGW9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uDVphpaGW9 .card-title,
.cid-uDVphpaGW9 .card-box {
  text-align: center;
  color: #000000;
}
.cid-uDVphpaGW9 .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-uDVphpaGW9 .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-uDVphpaGW9 .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1b6599;
  background-color: #1b6599;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-uDVphpaGW9 .mbr-text UL {
  text-align: left;
}
.cid-uDVphpaGW9 .mbr-section-title {
  text-align: left;
}
.cid-uDVphpaGW9 .mbr-text {
  color: #000000;
}
.cid-uDVqi1mhGr {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #1b6599;
}
.cid-uDVqi1mhGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDVqi1mhGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDVqi1mhGr .card-wrapper {
  background: #f0f0f0;
}
@media (max-width: 767px) {
  .cid-uDVqi1mhGr .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uDVqi1mhGr .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uDVqi1mhGr .card-wrapper {
    padding: 4rem;
  }
}
.cid-uDVqi1mhGr .mbr-text,
.cid-uDVqi1mhGr .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uDVqi1mhGr .card-title,
.cid-uDVqi1mhGr .card-box {
  text-align: center;
  color: #000000;
}
.cid-uDVqi1mhGr .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-uDVqi1mhGr .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-uDVqi1mhGr .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1b6599;
  background-color: #1b6599;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-uDVqi1mhGr .mbr-text UL {
  text-align: left;
}
.cid-uDVqi1mhGr .mbr-section-title {
  text-align: left;
}
.cid-uE2C7nA2kO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uE2C7nA2kO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE2C7nA2kO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE2C7nA2kO .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uE2C7nA2kO .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uE2C7nA2kO .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uE2C7nA2kO .card-wrapper {
    padding: 4rem;
  }
}
.cid-uE2C7nA2kO .mbr-text,
.cid-uE2C7nA2kO .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uE2C7nA2kO .card-title,
.cid-uE2C7nA2kO .card-box {
  text-align: left;
  color: #000000;
}
.cid-uE2vQ9o0jt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uE2vQ9o0jt .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uE2vQ9o0jt .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uE2vQ9o0jt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uE2vQ9o0jt h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-uE2vQ9o0jt h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uE2vQ9o0jt h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uE2vQ9o0jt .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-uE2vQ9o0jt .card-overlay {
  display: none;
  background: #124366;
}
@media (min-width: 768px) {
  .cid-uE2vQ9o0jt .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2vQ9o0jt .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2vQ9o0jt .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2vQ9o0jt .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2vQ9o0jt .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2vQ9o0jt .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2vQ9o0jt .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2vQ9o0jt .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2vQ9o0jt .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-uE2vQ9o0jt .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-uE2vQ9o0jt .card-overlay {
    transition: all 0.5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-uE2vQ9o0jt .card-title,
  .cid-uE2vQ9o0jt .underline,
  .cid-uE2vQ9o0jt .mbr-text,
  .cid-uE2vQ9o0jt .mbr-section-btn,
  .cid-uE2vQ9o0jt .mbr-section-subtitle,
  .cid-uE2vQ9o0jt .mbr-section-title {
    text-align: center !important;
  }
  .cid-uE2vQ9o0jt .wrapper {
    background-color: #124366;
  }
  .cid-uE2vQ9o0jt h4:before,
  .cid-uE2vQ9o0jt h4:after {
    display: none;
  }
}
.cid-uE2vQ9o0jt .mbr-section-title {
  text-align: left;
}
.cid-uE2vQ9o0jt .mbr-section-title,
.cid-uE2vQ9o0jt .underline {
  text-align: center;
}
.cid-uE2vQ9o0jt H4 {
  color: #e1201d;
}
.cid-uE2vQ9o0jt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE2vQ9o0jt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE2wK6jaUz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uE2wK6jaUz .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uE2wK6jaUz .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uE2wK6jaUz .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uE2wK6jaUz h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-uE2wK6jaUz h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uE2wK6jaUz h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uE2wK6jaUz .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-uE2wK6jaUz .card-overlay {
  display: none;
  background: #124366;
}
@media (min-width: 768px) {
  .cid-uE2wK6jaUz .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2wK6jaUz .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2wK6jaUz .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2wK6jaUz .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-uE2wK6jaUz .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2wK6jaUz .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2wK6jaUz .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2wK6jaUz .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-uE2wK6jaUz .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-uE2wK6jaUz .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-uE2wK6jaUz .card-overlay {
    transition: all 0.5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-uE2wK6jaUz .card-title,
  .cid-uE2wK6jaUz .underline,
  .cid-uE2wK6jaUz .mbr-text,
  .cid-uE2wK6jaUz .mbr-section-btn,
  .cid-uE2wK6jaUz .mbr-section-subtitle,
  .cid-uE2wK6jaUz .mbr-section-title {
    text-align: center !important;
  }
  .cid-uE2wK6jaUz .wrapper {
    background-color: #124366;
  }
  .cid-uE2wK6jaUz h4:before,
  .cid-uE2wK6jaUz h4:after {
    display: none;
  }
}
.cid-uE2wK6jaUz .mbr-section-title {
  text-align: left;
}
.cid-uE2wK6jaUz .mbr-section-title,
.cid-uE2wK6jaUz .underline {
  text-align: center;
}
.cid-uE2wK6jaUz H4 {
  color: #e1201d;
}
.cid-uE2wK6jaUz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE2wK6jaUz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBamKWxslB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBamKWxslB .mbr-section-title {
  color: #000000;
}
.cid-uBamKWxslB .mbr-text,
.cid-uBamKWxslB .mbr-section-btn {
  color: #000000;
}
.cid-uBamKWxslB .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uBamKWxslB img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uBamKWxslB .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uBamKWxslB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBamKWxslB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOtRUmwgW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAOtRUmwgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOtRUmwgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOtRUmwgW .row {
  justify-content: left;
}
.cid-uAOtRUmwgW .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  padding: 40px 30px;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .content-container {
    flex-wrap: wrap;
  }
}
.cid-uAOtRUmwgW .text-item {
  width: 50%;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .text-item {
    width: 100%;
  }
}
.cid-uAOtRUmwgW .btn-item {
  width: 50%;
  position: relative;
  z-index: 11;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .btn-item {
    width: 100%;
    padding: 0 !important;
    margin-top: 20px;
  }
}
.cid-uAOtRUmwgW .mbr-section-title {
  color: #2B2B2B;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uAOtRUmwgW .mbr-section-subtitle {
  color: #2B2B2B;
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uAOtRUmwgW .mbr-section-btn .btn {
  min-width: auto !important;
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uAOtRUmwgW .circle-blur {
  position: absolute;
  top: 40%;
  left: 40%;
  bottom: auto;
  display: block;
  width: 500px;
  height: 500px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(80deg, #0077ff, #225589);
  opacity: .9;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .cid-uAOtRUmwgW .circle-blur {
    display: none !important;
  }
}
.cid-uANxLMgeo7 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uANxLMgeo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANxLMgeo7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANxLMgeo7 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uANxLMgeo7 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uANxLMgeo7 .container {
    padding: 0 16px;
  }
}
.cid-uANxLMgeo7 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uANxLMgeo7 .card {
    margin-bottom: 40px;
  }
}
.cid-uANxLMgeo7 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANxLMgeo7 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uANxLMgeo7 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uANxLMgeo7 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uANxLMgeo7 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uANxLMgeo7 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uANxLMgeo7 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANxLMgeo7 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uANxLMgeo7 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANxLMgeo7 .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uANxLMgeo7 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uANxLMgeo7 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uANxLMgeo7 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uANxLMgeo7 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uANxLMgeo7 .mbr-section-title {
  color: #ffffff;
}
.cid-uANxLMgeo7 .copyright {
  color: #ffffff;
}
.cid-uANxLMgeo7 .mbr-card-title {
  color: #ffffff;
}
.cid-uANxLMgeo7 .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDV3HbgfMe {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/bannerbild.jpg-2000x1500.jpg");
}
.cid-uDV3HbgfMe .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uDV3HbgfMe .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uDV3HbgfMe .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uDV3HbgfMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDV3HbgfMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDUhDV2itl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uDUhDV2itl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDUhDV2itl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDUhDV2itl .row {
  justify-content: center;
}
.cid-uDUhDV2itl .col-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .col-title {
    margin-bottom: 20px;
  }
}
.cid-uDUhDV2itl .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uDUhDV2itl .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uDUhDV2itl .card-row {
  align-items: stretch;
}
.cid-uDUhDV2itl .card-box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .card-box {
    flex-wrap: wrap;
    align-items: center;
  }
}
.cid-uDUhDV2itl .mbr-iconfont {
  display: block;
  font-size: 60px;
  color: #ffffff;
}
.cid-uDUhDV2itl .card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding: 10px;
}
.cid-uDUhDV2itl .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 10px;
  margin-right: 25px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1b6599;
}
@media (max-width: 991px) {
  .cid-uDUhDV2itl .iconfont-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .iconfont-wrapper {
    margin: 0 auto;
  }
}
.cid-uDUhDV2itl .card-wrapper {
  display: flex;
}
.cid-uDUhDV2itl .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .card-title {
    text-align: center !important;
  }
}
.cid-uDUhDV2itl .card-text {
  width: 100%;
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uDUhDV2itl .card-text {
    text-align: center !important;
  }
}
.cid-uDUhDV2itl .card-title,
.cid-uDUhDV2itl .iconfont-wrapper {
  color: #225589;
}
.cid-uG15nZBOrz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uG15nZBOrz .mbr-section-title {
  color: #06182d;
}
.cid-uG15nZBOrz .mbr-section-subtitle {
  color: #06182d;
}
.cid-uG15nZBOrz .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uG15nZBOrz .mbr-section-text {
  color: #999999;
}
.cid-uG15nZBOrz .nav-tabs .nav-item.open .nav-link:focus,
.cid-uG15nZBOrz .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uG15nZBOrz .nav-tabs {
  flex-wrap: wrap;
  flex-direction: column;
  border-bottom: 1px solid #f0f0f0;
}
.cid-uG15nZBOrz .nav-tabs .nav-item {
  margin-right: 4px;
}
@media (max-width: 991px) {
  .cid-uG15nZBOrz .nav-tabs {
    margin-bottom: 20px;
  }
}
.cid-uG15nZBOrz .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all 0.5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f0f0f0;
  padding: 1rem 2.2rem;
}
.cid-uG15nZBOrz .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #225589;
}
.cid-uG15nZBOrz .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #225589;
}
.cid-uG15nZBOrz P {
  color: #879a9f;
}
@media (max-width: 576px) {
  .cid-uG15nZBOrz .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-uG15nZBOrz .mbr-text,
  .cid-uG15nZBOrz .nav-link {
    text-align: center;
  }
}
.cid-uG15nZBOrz .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uG15nZBOrz * {
    text-align: center;
  }
}
.cid-uG15nZBOrz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG15nZBOrz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDFaKFN64G {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDFaKFN64G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDFaKFN64G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDFaKFN64G .row {
  justify-content: left;
}
.cid-uDFaKFN64G .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  padding: 40px 30px;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .content-container {
    flex-wrap: wrap;
  }
}
.cid-uDFaKFN64G .text-item {
  width: 50%;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .text-item {
    width: 100%;
  }
}
.cid-uDFaKFN64G .btn-item {
  width: 50%;
  position: relative;
  z-index: 11;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .btn-item {
    width: 100%;
    padding: 0 !important;
    margin-top: 20px;
  }
}
.cid-uDFaKFN64G .mbr-section-title {
  color: #2B2B2B;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uDFaKFN64G .mbr-section-subtitle {
  color: #2B2B2B;
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uDFaKFN64G .mbr-section-btn .btn {
  min-width: auto !important;
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uDFaKFN64G .circle-blur {
  position: absolute;
  top: 40%;
  left: 40%;
  bottom: auto;
  display: block;
  width: 500px;
  height: 500px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(80deg, #0077ff, #225589);
  opacity: .9;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .cid-uDFaKFN64G .circle-blur {
    display: none !important;
  }
}
.cid-uDFaKGbWX9 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uDFaKGbWX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDFaKGbWX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDFaKGbWX9 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uDFaKGbWX9 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uDFaKGbWX9 .container {
    padding: 0 16px;
  }
}
.cid-uDFaKGbWX9 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uDFaKGbWX9 .card {
    margin-bottom: 40px;
  }
}
.cid-uDFaKGbWX9 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDFaKGbWX9 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uDFaKGbWX9 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uDFaKGbWX9 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDFaKGbWX9 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDFaKGbWX9 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uDFaKGbWX9 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uDFaKGbWX9 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uDFaKGbWX9 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uDFaKGbWX9 .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uDFaKGbWX9 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uDFaKGbWX9 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uDFaKGbWX9 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDFaKGbWX9 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uDFaKGbWX9 .mbr-section-title {
  color: #ffffff;
}
.cid-uDFaKGbWX9 .copyright {
  color: #ffffff;
}
.cid-uDFaKGbWX9 .mbr-card-title {
  color: #ffffff;
}
.cid-uDFaKGbWX9 .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDUiBcHEbn {
  padding-top: 165px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/news.png-1-1920x1080.png");
}
.cid-uDUiBcHEbn H1 {
  color: #e2090d;
}
.cid-uDUiBcHEbn h1 {
  background: linear-gradient(to left, #1b6599, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uDUiBcHEbn .mbr-text,
.cid-uDUiBcHEbn .mbr-section-btn {
  color: #999999;
}
.cid-uDUiBcHEbn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDUiBcHEbn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDUiBeRLZE {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uDUiBeRLZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDUiBeRLZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDUiBeRLZE .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uDUiBeRLZE .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uDUiBeRLZE .container {
    padding: 0 16px;
  }
}
.cid-uDUiBeRLZE .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uDUiBeRLZE .card {
    margin-bottom: 40px;
  }
}
.cid-uDUiBeRLZE .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDUiBeRLZE .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uDUiBeRLZE .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uDUiBeRLZE .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDUiBeRLZE .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDUiBeRLZE .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uDUiBeRLZE .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uDUiBeRLZE .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uDUiBeRLZE .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uDUiBeRLZE .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uDUiBeRLZE .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uDUiBeRLZE .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uDUiBeRLZE .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDUiBeRLZE .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uDUiBeRLZE .mbr-section-title {
  color: #ffffff;
}
.cid-uDUiBeRLZE .copyright {
  color: #ffffff;
}
.cid-uDUiBeRLZE .mbr-card-title {
  color: #ffffff;
}
.cid-uDUiBeRLZE .list {
  color: #ffffff;
}
.cid-uFVP8vq8RZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFVP8vq8RZ nav.navbar {
  position: fixed;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover,
.cid-uFVP8vq8RZ .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVP8vq8RZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFVP8vq8RZ .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFVP8vq8RZ .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown-menu,
.cid-uFVP8vq8RZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uFVP8vq8RZ .nav-item:focus,
.cid-uFVP8vq8RZ .nav-link:focus {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVP8vq8RZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVP8vq8RZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVP8vq8RZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVP8vq8RZ .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;
}
.cid-uFVP8vq8RZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVP8vq8RZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVP8vq8RZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVP8vq8RZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVP8vq8RZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVP8vq8RZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVP8vq8RZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVP8vq8RZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVP8vq8RZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVP8vq8RZ .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-uFVP8vq8RZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVP8vq8RZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVP8vq8RZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVP8vq8RZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVP8vq8RZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFVP8vq8RZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVP8vq8RZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVP8vq8RZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVP8vq8RZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVP8vq8RZ .dropdown-item.active,
.cid-uFVP8vq8RZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVP8vq8RZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVP8vq8RZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFVP8vq8RZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVP8vq8RZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVP8vq8RZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVP8vq8RZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVP8vq8RZ button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVP8vq8RZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVP8vq8RZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVP8vq8RZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFVP8vq8RZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVP8vq8RZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVP8vq8RZ .navbar {
    height: 70px;
  }
  .cid-uFVP8vq8RZ .navbar.opened {
    height: auto;
  }
  .cid-uFVP8vq8RZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVP8vq8RZ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFVP8vq8RZ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFVP8vq8RZ a {
  display: inline;
  font-weight: bold;
}
.cid-uFVP8vq8RZ img {
  display: inline;
  padding-right: 10px;
}
.cid-uFVP8vq8RZ .dropdown-toggle:after {
  display: none;
}
.cid-uFVP8vq8RZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFVP8vq8RZ .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFVP8vq8RZ .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uDVQRlaIzO {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/karriere12.png-1-1920x1080.png");
}
.cid-uDVQRlaIzO .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uDVQRlaIzO .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uDVQRlaIzO .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uDVQRlaIzO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDVQRlaIzO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTVEkss2OZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uTVEkss2OZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTVEkss2OZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTVEkss2OZ .container {
  max-width: 900px;
}
.cid-uTVEkss2OZ .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uTVEkss2OZ .content-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-uTVEkss2OZ .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-uTVEkss2OZ .card-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-uTVEkss2OZ .card-wrapper {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}
.cid-uTVEkss2OZ .card-box {
  width: 100%;
}
.cid-uTVEkss2OZ .card-title {
  width: 100%;
  color: #192732;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uTVEkss2OZ .card-title {
    margin-bottom: 24px;
    text-align: center !important;
  }
}
.cid-uTVEkss2OZ .mbr-text {
  width: 100%;
  color: #192732;
}
@media (max-width: 767px) {
  .cid-uTVEkss2OZ .mbr-text {
    text-align: center !important;
  }
}
.cid-uTVEkss2OZ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uTVEkss2OZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uTVEkss2OZ .img-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-uTVEkss2OZ .img-container {
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .cid-uTVEkss2OZ .img-container {
    width: 100%;
    padding: 0;
  }
}
.cid-uTVEkss2OZ .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uTVEkss2OZ .image-wrapper img {
  object-fit: cover;
  max-height: 100vh;
}
.cid-uDVQRnIB4u {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uDVQRnIB4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDVQRnIB4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDVQRnIB4u .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uDVQRnIB4u .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uDVQRnIB4u .container {
    padding: 0 16px;
  }
}
.cid-uDVQRnIB4u .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uDVQRnIB4u .card {
    margin-bottom: 40px;
  }
}
.cid-uDVQRnIB4u .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDVQRnIB4u .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uDVQRnIB4u .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uDVQRnIB4u .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDVQRnIB4u .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDVQRnIB4u .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uDVQRnIB4u .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uDVQRnIB4u .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uDVQRnIB4u .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uDVQRnIB4u .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uDVQRnIB4u .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uDVQRnIB4u .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uDVQRnIB4u .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDVQRnIB4u .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uDVQRnIB4u .mbr-section-title {
  color: #ffffff;
}
.cid-uDVQRnIB4u .copyright {
  color: #ffffff;
}
.cid-uDVQRnIB4u .mbr-card-title {
  color: #ffffff;
}
.cid-uDVQRnIB4u .list {
  color: #ffffff;
}
.cid-uFXR4U7Lcf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFXR4U7Lcf nav.navbar {
  position: fixed;
}
.cid-uFXR4U7Lcf .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-uFXR4U7Lcf .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uFXR4U7Lcf .dropdown-item:hover,
.cid-uFXR4U7Lcf .dropdown-item:focus {
  color: #000000 !important;
}
.cid-uFXR4U7Lcf .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uFXR4U7Lcf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFXR4U7Lcf .nav-link {
  position: relative;
  padding: 0;
}
.cid-uFXR4U7Lcf .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uFXR4U7Lcf .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFXR4U7Lcf .dropdown-menu,
.cid-uFXR4U7Lcf .navbar.opened {
  background: #ffffff !important;
}
.cid-uFXR4U7Lcf .nav-item:focus,
.cid-uFXR4U7Lcf .nav-link:focus {
  outline: none;
}
.cid-uFXR4U7Lcf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFXR4U7Lcf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFXR4U7Lcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFXR4U7Lcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFXR4U7Lcf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFXR4U7Lcf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFXR4U7Lcf .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;
}
.cid-uFXR4U7Lcf .navbar.opened {
  transition: all 0.3s;
}
.cid-uFXR4U7Lcf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFXR4U7Lcf .navbar .navbar-logo img {
  width: auto;
}
.cid-uFXR4U7Lcf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFXR4U7Lcf .navbar.collapsed {
  justify-content: center;
}
.cid-uFXR4U7Lcf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFXR4U7Lcf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFXR4U7Lcf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uFXR4U7Lcf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFXR4U7Lcf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFXR4U7Lcf .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-uFXR4U7Lcf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFXR4U7Lcf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFXR4U7Lcf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFXR4U7Lcf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFXR4U7Lcf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFXR4U7Lcf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFXR4U7Lcf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFXR4U7Lcf .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-uFXR4U7Lcf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFXR4U7Lcf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFXR4U7Lcf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFXR4U7Lcf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFXR4U7Lcf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFXR4U7Lcf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFXR4U7Lcf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFXR4U7Lcf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFXR4U7Lcf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFXR4U7Lcf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFXR4U7Lcf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFXR4U7Lcf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFXR4U7Lcf .dropdown-item.active,
.cid-uFXR4U7Lcf .dropdown-item:active {
  background-color: transparent;
}
.cid-uFXR4U7Lcf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFXR4U7Lcf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFXR4U7Lcf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFXR4U7Lcf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFXR4U7Lcf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFXR4U7Lcf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFXR4U7Lcf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFXR4U7Lcf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFXR4U7Lcf button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFXR4U7Lcf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFXR4U7Lcf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFXR4U7Lcf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFXR4U7Lcf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFXR4U7Lcf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFXR4U7Lcf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFXR4U7Lcf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFXR4U7Lcf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFXR4U7Lcf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFXR4U7Lcf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFXR4U7Lcf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFXR4U7Lcf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFXR4U7Lcf .navbar {
    height: 70px;
  }
  .cid-uFXR4U7Lcf .navbar.opened {
    height: auto;
  }
  .cid-uFXR4U7Lcf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFXR4U7Lcf .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uFXR4U7Lcf .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uFXR4U7Lcf a {
  display: inline;
  font-weight: bold;
}
.cid-uFXR4U7Lcf img {
  display: inline;
  padding-right: 10px;
}
.cid-uFXR4U7Lcf .dropdown-toggle:after {
  display: none;
}
.cid-uFXR4U7Lcf .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uFXR4U7Lcf .dropdown-item:hover {
  color: #b84358 !important;
}
@media (max-width: 990px) {
  .cid-uFXR4U7Lcf .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uG3PqQfauH {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/header20.png-1980x1020.png");
}
.cid-uG3PqQfauH .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uG3PqQfauH .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uG3PqQfauH .card .wrapper .mbr-section-title span:first-child {
  color: #fafafa;
}
.cid-uG3PqQfauH .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #225589;
  background: linear-gradient(#225589 0%, #000000 69%, #1b6599 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uG3PqQfauH .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uG3PqQfauH .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uG3PqQfauH .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uG3PqQfauH .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uG3PqQfauH .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uG3PqQfauH .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uG3PqQfauH .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uG3PqQfauH .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uG3PqQfauH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG3PqQfauH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXWmPeXpZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFXWmPeXpZ .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uFXWmPeXpZ .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uFXWmPeXpZ .title {
    width: 100% !important;
  }
}
.cid-uFXWmPeXpZ .mbr-section-subtitle,
.cid-uFXWmPeXpZ .underline {
  color: #124366;
}
.cid-uFXWmPeXpZ .mbr-section-title {
  color: #000000;
}
.cid-uFXSrOqBpC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uFXSrOqBpC .carousel {
    max-height: 700px;
  }
  .cid-uFXSrOqBpC .carousel img {
    height: 700px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFXSrOqBpC .carousel {
    min-height: 455px;
  }
  .cid-uFXSrOqBpC .carousel img {
    height: 455px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-uFXSrOqBpC .carousel {
    min-height: 385px;
  }
  .cid-uFXSrOqBpC .carousel img {
    height: 385px;
    object-fit: cover;
  }
  .cid-uFXSrOqBpC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uFXSrOqBpC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uFXSrOqBpC .carousel,
.cid-uFXSrOqBpC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uFXSrOqBpC .item-wrapper {
  width: 100%;
}
.cid-uFXSrOqBpC .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uFXSrOqBpC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uFXSrOqBpC .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uFXSrOqBpC .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uFXSrOqBpC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uFXSrOqBpC .carousel-control {
  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-uFXSrOqBpC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFXSrOqBpC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFXSrOqBpC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uFXSrOqBpC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uFXSrOqBpC .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-uFXSrOqBpC .carousel-indicators li.active,
.cid-uFXSrOqBpC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uFXSrOqBpC .carousel-indicators li::after,
.cid-uFXSrOqBpC .carousel-indicators li::before {
  content: none;
}
.cid-uFXSrOqBpC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uFXSrOqBpC .carousel-indicators {
    display: none !important;
  }
}
.cid-uFXWFeZrpD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFXWFeZrpD .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uFXWFeZrpD .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uFXWFeZrpD .title {
    width: 100% !important;
  }
}
.cid-uFXWFeZrpD .mbr-section-subtitle,
.cid-uFXWFeZrpD .underline {
  color: #124366;
}
.cid-uFXWFeZrpD .mbr-section-title {
  color: #000000;
}
.cid-uFXURLhQ5e {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uFXURLhQ5e .carousel {
    max-height: 700px;
  }
  .cid-uFXURLhQ5e .carousel img {
    height: 700px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFXURLhQ5e .carousel {
    min-height: 455px;
  }
  .cid-uFXURLhQ5e .carousel img {
    height: 455px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-uFXURLhQ5e .carousel {
    min-height: 385px;
  }
  .cid-uFXURLhQ5e .carousel img {
    height: 385px;
    object-fit: cover;
  }
  .cid-uFXURLhQ5e .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uFXURLhQ5e .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uFXURLhQ5e .carousel,
.cid-uFXURLhQ5e .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uFXURLhQ5e .item-wrapper {
  width: 100%;
}
.cid-uFXURLhQ5e .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uFXURLhQ5e .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uFXURLhQ5e .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uFXURLhQ5e .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uFXURLhQ5e .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uFXURLhQ5e .carousel-control {
  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-uFXURLhQ5e .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFXURLhQ5e .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFXURLhQ5e .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uFXURLhQ5e .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uFXURLhQ5e .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-uFXURLhQ5e .carousel-indicators li.active,
.cid-uFXURLhQ5e .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uFXURLhQ5e .carousel-indicators li::after,
.cid-uFXURLhQ5e .carousel-indicators li::before {
  content: none;
}
.cid-uFXURLhQ5e .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uFXURLhQ5e .carousel-indicators {
    display: none !important;
  }
}
.cid-uFXR4W1rqy {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #225589;
}
.cid-uFXR4W1rqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXR4W1rqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXR4W1rqy .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uFXR4W1rqy .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uFXR4W1rqy .container {
    padding: 0 16px;
  }
}
.cid-uFXR4W1rqy .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uFXR4W1rqy .card {
    margin-bottom: 40px;
  }
}
.cid-uFXR4W1rqy .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uFXR4W1rqy .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uFXR4W1rqy .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uFXR4W1rqy .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uFXR4W1rqy .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uFXR4W1rqy .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uFXR4W1rqy .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFXR4W1rqy .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uFXR4W1rqy .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFXR4W1rqy .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uFXR4W1rqy .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uFXR4W1rqy .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uFXR4W1rqy .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uFXR4W1rqy .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uFXR4W1rqy .mbr-section-title {
  color: #ffffff;
}
.cid-uFXR4W1rqy .copyright {
  color: #ffffff;
}
.cid-uFXR4W1rqy .mbr-card-title {
  color: #ffffff;
}
.cid-uFXR4W1rqy .list {
  color: #ffffff;
}
