.btn {
  border-width: 2px;
}
body {
  font-family: Cormorant Infant;
}
.display-1 {
  font-family: 'Bodoni Moda', serif;
  font-size: 15rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 18.75rem;
}
.display-2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 10rem;
}
.display-4 {
  font-family: 'Noto Sans Ugaritic', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-7 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.6rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 1400px) {
  .display-1 {
    font-size: 10.5rem;
  }
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 7.5rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 10.5rem;
    font-size: calc( 5.9rem + (15 - 5.9) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (5.9rem + (15 - 5.9) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 6.4rem;
    font-size: calc( 3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (3.45rem + (8 - 3.45) * ((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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #217770 !important;
}
.bg-success {
  background-color: #217770 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #217770 !important;
  border-color: #217770 !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: #0e3330 !important;
  border-color: #0e3330 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0e3330 !important;
  border-color: #0e3330 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #217770 !important;
  border-color: #217770 !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: #0e3330 !important;
  border-color: #0e3330 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0e3330 !important;
  border-color: #0e3330 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #217770;
  color: #217770;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0e3330 !important;
  background-color: transparent !important;
  border-color: #0e3330 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #217770 !important;
  border-color: #217770 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent !important;
  border-color: #ff0f0f !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #217770;
  color: #217770;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0e3330 !important;
  background-color: transparent !important;
  border-color: #0e3330 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #217770 !important;
  border-color: #217770 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #217770 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #217770 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0b2725 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0b2725 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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.1em;
}
.nav-tabs .nav-link.active {
  color: #217770;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #217770;
  border-color: #217770;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #217770;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4bcdc2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4bcdc2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Noto Sans Ugaritic', 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: #217770 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans Ugaritic', 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: #217770;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #217770;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #217770;
}
.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: #217770;
  border-bottom-color: #217770;
}
.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: #217770 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23217770' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tFaFv5Gn3E {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFaFv5Gn3E .mbr-section-title {
  color: #217770;
}
.cid-tFgs5CBNXf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/entwertungsschein-hintergundweb150-2000x1333.jpg");
}
.cid-tFgs5CBNXf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgs5CBNXf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgs5CBNXf p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-tFgs5CBNXf .card-wrapper {
    text-align: center;
  }
}
.cid-tFgs5CBNXf .mbr-section-title {
  color: #217770;
}
.cid-tFaFv7sQ7v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f4ed;
  overflow: hidden;
}
.cid-tFaFv7sQ7v .media-container-row .mbr-text {
  color: #232323;
}
.cid-tFaFv8dTxM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFaFv8dTxM nav.navbar {
  position: fixed;
}
.cid-tFaFv8dTxM .link {
  font-weight: bold;
}
.cid-tFaFv8dTxM .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-tFaFv8dTxM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFaFv8dTxM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFaFv8dTxM .dropdown-item:hover,
.cid-tFaFv8dTxM .dropdown-item:focus {
  background: #217770 !important;
  color: white !important;
}
.cid-tFaFv8dTxM .dropdown-item:hover span {
  color: white;
}
.cid-tFaFv8dTxM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFaFv8dTxM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFaFv8dTxM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFaFv8dTxM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFaFv8dTxM .nav-link {
  position: relative;
}
.cid-tFaFv8dTxM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFaFv8dTxM .container {
    flex-wrap: nowrap;
  }
}
.cid-tFaFv8dTxM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFaFv8dTxM .dropdown-menu,
.cid-tFaFv8dTxM .navbar.opened {
  background: #217770 !important;
}
.cid-tFaFv8dTxM .nav-item:focus,
.cid-tFaFv8dTxM .nav-link:focus {
  outline: none;
}
.cid-tFaFv8dTxM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFaFv8dTxM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFaFv8dTxM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFaFv8dTxM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFaFv8dTxM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFaFv8dTxM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFaFv8dTxM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #217770;
}
.cid-tFaFv8dTxM .navbar.opened {
  transition: all 0.3s;
}
.cid-tFaFv8dTxM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFaFv8dTxM .navbar .navbar-logo img {
  width: auto;
}
.cid-tFaFv8dTxM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFaFv8dTxM .navbar.collapsed {
  justify-content: center;
}
.cid-tFaFv8dTxM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFaFv8dTxM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFaFv8dTxM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFaFv8dTxM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFaFv8dTxM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFaFv8dTxM .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-tFaFv8dTxM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFaFv8dTxM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFaFv8dTxM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFaFv8dTxM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFaFv8dTxM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFaFv8dTxM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFaFv8dTxM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFaFv8dTxM .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-tFaFv8dTxM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFaFv8dTxM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFaFv8dTxM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFaFv8dTxM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFaFv8dTxM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFaFv8dTxM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFaFv8dTxM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFaFv8dTxM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFaFv8dTxM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFaFv8dTxM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFaFv8dTxM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFaFv8dTxM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFaFv8dTxM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFaFv8dTxM .dropdown-item.active,
.cid-tFaFv8dTxM .dropdown-item:active {
  background-color: transparent;
}
.cid-tFaFv8dTxM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFaFv8dTxM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFaFv8dTxM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFaFv8dTxM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #217770;
}
.cid-tFaFv8dTxM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFaFv8dTxM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFaFv8dTxM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFaFv8dTxM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFaFv8dTxM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFaFv8dTxM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFaFv8dTxM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFaFv8dTxM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFaFv8dTxM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFaFv8dTxM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFaFv8dTxM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFaFv8dTxM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFaFv8dTxM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFaFv8dTxM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFaFv8dTxM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFaFv8dTxM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFaFv8dTxM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFaFv8dTxM .navbar {
    height: 70px;
  }
  .cid-tFaFv8dTxM .navbar.opened {
    height: auto;
  }
  .cid-tFaFv8dTxM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFaIsXbBLQ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFaIsXbBLQ .mbr-section-title {
  color: #217770;
}
.cid-tFgsbTL6kI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/entwertungsschein-hintergundweb150-2000x1333.jpg");
}
.cid-tFgsbTL6kI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgsbTL6kI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgsbTL6kI p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-tFgsbTL6kI .card-wrapper {
    text-align: center;
  }
}
.cid-tFgsbTL6kI .mbr-section-title {
  color: #217770;
}
.cid-tFaIsYyWWo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f4ed;
  overflow: hidden;
}
.cid-tFaIsYyWWo .media-container-row .mbr-text {
  color: #232323;
}
.cid-tFaIsYMAAT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFaIsYMAAT nav.navbar {
  position: fixed;
}
.cid-tFaIsYMAAT .link {
  font-weight: bold;
}
.cid-tFaIsYMAAT .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-tFaIsYMAAT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFaIsYMAAT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFaIsYMAAT .dropdown-item:hover,
.cid-tFaIsYMAAT .dropdown-item:focus {
  background: #217770 !important;
  color: white !important;
}
.cid-tFaIsYMAAT .dropdown-item:hover span {
  color: white;
}
.cid-tFaIsYMAAT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFaIsYMAAT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFaIsYMAAT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFaIsYMAAT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFaIsYMAAT .nav-link {
  position: relative;
}
.cid-tFaIsYMAAT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFaIsYMAAT .container {
    flex-wrap: nowrap;
  }
}
.cid-tFaIsYMAAT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFaIsYMAAT .dropdown-menu,
.cid-tFaIsYMAAT .navbar.opened {
  background: #217770 !important;
}
.cid-tFaIsYMAAT .nav-item:focus,
.cid-tFaIsYMAAT .nav-link:focus {
  outline: none;
}
.cid-tFaIsYMAAT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFaIsYMAAT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFaIsYMAAT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFaIsYMAAT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFaIsYMAAT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFaIsYMAAT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFaIsYMAAT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #217770;
}
.cid-tFaIsYMAAT .navbar.opened {
  transition: all 0.3s;
}
.cid-tFaIsYMAAT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFaIsYMAAT .navbar .navbar-logo img {
  width: auto;
}
.cid-tFaIsYMAAT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFaIsYMAAT .navbar.collapsed {
  justify-content: center;
}
.cid-tFaIsYMAAT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFaIsYMAAT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFaIsYMAAT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFaIsYMAAT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFaIsYMAAT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFaIsYMAAT .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-tFaIsYMAAT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFaIsYMAAT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFaIsYMAAT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFaIsYMAAT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFaIsYMAAT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFaIsYMAAT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFaIsYMAAT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFaIsYMAAT .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-tFaIsYMAAT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFaIsYMAAT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFaIsYMAAT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFaIsYMAAT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFaIsYMAAT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFaIsYMAAT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFaIsYMAAT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFaIsYMAAT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFaIsYMAAT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFaIsYMAAT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFaIsYMAAT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFaIsYMAAT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFaIsYMAAT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFaIsYMAAT .dropdown-item.active,
.cid-tFaIsYMAAT .dropdown-item:active {
  background-color: transparent;
}
.cid-tFaIsYMAAT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFaIsYMAAT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFaIsYMAAT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFaIsYMAAT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #217770;
}
.cid-tFaIsYMAAT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFaIsYMAAT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFaIsYMAAT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFaIsYMAAT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFaIsYMAAT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFaIsYMAAT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFaIsYMAAT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFaIsYMAAT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFaIsYMAAT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFaIsYMAAT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFaIsYMAAT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFaIsYMAAT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFaIsYMAAT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFaIsYMAAT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFaIsYMAAT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFaIsYMAAT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFaIsYMAAT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFaIsYMAAT .navbar {
    height: 70px;
  }
  .cid-tFaIsYMAAT .navbar.opened {
    height: auto;
  }
  .cid-tFaIsYMAAT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBdbNbiRt2 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBdbNbiRt2 .mbr-section-title {
  color: #217770;
}
.cid-tupnt6jhk2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tupnt6jhk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tupnt6jhk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tupnt6jhk2 .mbr-section-head {
    text-align: center;
  }
}
.cid-tupnt6jhk2 .google-map {
  height: 35rem;
  position: relative;
}
.cid-tupnt6jhk2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tupnt6jhk2 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tupnt6jhk2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tupnt6jhk2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tupnt6jhk2 .mbr-section-title {
  color: #217770;
}
.cid-tFgrTir4Xi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/entwertungsschein-hintergundweb150-2000x1333.jpg");
}
.cid-tFgrTir4Xi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgrTir4Xi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgrTir4Xi p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-tFgrTir4Xi .card-wrapper {
    text-align: center;
  }
}
.cid-tFgrTir4Xi .mbr-section-title {
  color: #217770;
}
.cid-tupnqPKw8y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f4ed;
  overflow: hidden;
}
.cid-tupnqPKw8y .media-container-row .mbr-text {
  color: #232323;
}
.cid-tFathNTaQd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFathNTaQd nav.navbar {
  position: fixed;
}
.cid-tFathNTaQd .link {
  font-weight: bold;
}
.cid-tFathNTaQd .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-tFathNTaQd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFathNTaQd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFathNTaQd .dropdown-item:hover,
.cid-tFathNTaQd .dropdown-item:focus {
  background: #217770 !important;
  color: white !important;
}
.cid-tFathNTaQd .dropdown-item:hover span {
  color: white;
}
.cid-tFathNTaQd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFathNTaQd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFathNTaQd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFathNTaQd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFathNTaQd .nav-link {
  position: relative;
}
.cid-tFathNTaQd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFathNTaQd .container {
    flex-wrap: nowrap;
  }
}
.cid-tFathNTaQd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFathNTaQd .dropdown-menu,
.cid-tFathNTaQd .navbar.opened {
  background: #217770 !important;
}
.cid-tFathNTaQd .nav-item:focus,
.cid-tFathNTaQd .nav-link:focus {
  outline: none;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFathNTaQd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFathNTaQd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFathNTaQd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #217770;
}
.cid-tFathNTaQd .navbar.opened {
  transition: all 0.3s;
}
.cid-tFathNTaQd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFathNTaQd .navbar .navbar-logo img {
  width: auto;
}
.cid-tFathNTaQd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFathNTaQd .navbar.collapsed {
  justify-content: center;
}
.cid-tFathNTaQd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFathNTaQd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFathNTaQd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFathNTaQd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFathNTaQd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFathNTaQd .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-tFathNTaQd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFathNTaQd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFathNTaQd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFathNTaQd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFathNTaQd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFathNTaQd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFathNTaQd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFathNTaQd .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-tFathNTaQd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFathNTaQd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFathNTaQd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFathNTaQd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFathNTaQd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFathNTaQd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFathNTaQd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFathNTaQd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFathNTaQd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFathNTaQd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFathNTaQd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFathNTaQd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFathNTaQd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFathNTaQd .dropdown-item.active,
.cid-tFathNTaQd .dropdown-item:active {
  background-color: transparent;
}
.cid-tFathNTaQd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFathNTaQd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFathNTaQd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFathNTaQd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #217770;
}
.cid-tFathNTaQd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFathNTaQd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFathNTaQd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFathNTaQd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFathNTaQd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFathNTaQd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFathNTaQd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFathNTaQd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFathNTaQd .navbar {
    height: 70px;
  }
  .cid-tFathNTaQd .navbar.opened {
    height: auto;
  }
  .cid-tFathNTaQd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFfPMUQodx {
  padding-top: 10rem;
  padding-bottom: 30rem;
}
@media (max-width: 1400px) {
  .cid-tFfPMUQodx {
    padding-bottom: 24rem;
  }
}
@media (max-width: 992px) {
  .cid-tFfPMUQodx {
    padding-bottom: 19.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFfPMUQodx {
    padding-bottom: 12.9rem;
  }
}
.cid-tFfPMUQodx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFfPMUQodx .bg-cover {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 40%;
  z-index: 1;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-tFfPMUQodx .bg-cover {
    height: 50%;
  }
}
.cid-tFfPMUQodx .row {
  z-index: 1;
  position: relative;
}
.cid-tFfPMUQodx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/fb-robitzky-marc-1-1080x1080.jpg");
}
.cid-tFfPMUQodx .mbr-section-title {
  text-align: center;
  color: #217770;
}
.cid-tFfPMUQodx .mbr-text,
.cid-tFfPMUQodx .mbr-section-btn {
  text-align: center;
}
.cid-tFfPMUQodx .mbr-section-subtitle {
  text-align: center;
}
.cid-tFfPibCj3C {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFfPibCj3C .mbr-section-title {
  color: #217770;
}
.cid-tFfPibCj3C .mbr-text {
  color: #53a78f;
}
.cid-tGFLhfdoJs {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tGFLhfdoJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGFLhfdoJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGFLhfdoJs .desc {
  position: absolute;
  left: 16px;
  bottom: 0;
  transform: rotate(-90deg);
  margin: 1.5rem 0;
  transform-origin: bottom left;
}
.cid-tGFLhfdoJs .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tGFLhfdoJs .row .img-item {
  display: -webkit-flex;
  padding: 1rem;
  flex-direction: column;
  position: relative;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.cid-tGFLhfdoJs .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tGFLhfdoJs P {
  color: #217770;
}
.cid-tFfPicBYoF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tFfPicBYoF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFfPicBYoF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tFfPicBYoF .mbr-section-head {
    text-align: center;
  }
}
.cid-tFfPicBYoF .google-map {
  height: 35rem;
  position: relative;
}
.cid-tFfPicBYoF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tFfPicBYoF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tFfPicBYoF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tFfPicBYoF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tFfPicBYoF .mbr-section-title {
  color: #217770;
}
.cid-tGHt4LjZQm {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tGHt4LjZQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGHt4LjZQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGHt4LjZQm .mbr-text,
.cid-tGHt4LjZQm .mbr-section-btn {
  color: #217770;
}
.cid-tFgrNxuMOr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/entwertungsschein-hintergundweb150-2000x1333.jpg");
}
.cid-tFgrNxuMOr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgrNxuMOr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgrNxuMOr p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-tFgrNxuMOr .card-wrapper {
    text-align: center;
  }
}
.cid-tFgrNxuMOr .mbr-section-title {
  color: #217770;
}
.cid-tFfPidcCaY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f4ed;
  overflow: hidden;
}
.cid-tFfPidcCaY .media-container-row .mbr-text {
  color: #232323;
}
.cid-tFfPidqv9P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFfPidqv9P nav.navbar {
  position: fixed;
}
.cid-tFfPidqv9P .link {
  font-weight: bold;
}
.cid-tFfPidqv9P .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-tFfPidqv9P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFfPidqv9P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFfPidqv9P .dropdown-item:hover,
.cid-tFfPidqv9P .dropdown-item:focus {
  background: #217770 !important;
  color: white !important;
}
.cid-tFfPidqv9P .dropdown-item:hover span {
  color: white;
}
.cid-tFfPidqv9P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFfPidqv9P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFfPidqv9P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFfPidqv9P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFfPidqv9P .nav-link {
  position: relative;
}
.cid-tFfPidqv9P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFfPidqv9P .container {
    flex-wrap: nowrap;
  }
}
.cid-tFfPidqv9P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFfPidqv9P .dropdown-menu,
.cid-tFfPidqv9P .navbar.opened {
  background: #217770 !important;
}
.cid-tFfPidqv9P .nav-item:focus,
.cid-tFfPidqv9P .nav-link:focus {
  outline: none;
}
.cid-tFfPidqv9P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFfPidqv9P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFfPidqv9P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFfPidqv9P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFfPidqv9P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFfPidqv9P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFfPidqv9P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #217770;
}
.cid-tFfPidqv9P .navbar.opened {
  transition: all 0.3s;
}
.cid-tFfPidqv9P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFfPidqv9P .navbar .navbar-logo img {
  width: auto;
}
.cid-tFfPidqv9P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFfPidqv9P .navbar.collapsed {
  justify-content: center;
}
.cid-tFfPidqv9P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFfPidqv9P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFfPidqv9P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFfPidqv9P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFfPidqv9P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFfPidqv9P .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-tFfPidqv9P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFfPidqv9P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFfPidqv9P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFfPidqv9P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFfPidqv9P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFfPidqv9P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFfPidqv9P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFfPidqv9P .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-tFfPidqv9P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFfPidqv9P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFfPidqv9P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFfPidqv9P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFfPidqv9P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFfPidqv9P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFfPidqv9P .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFfPidqv9P .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFfPidqv9P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFfPidqv9P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFfPidqv9P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFfPidqv9P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFfPidqv9P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFfPidqv9P .dropdown-item.active,
.cid-tFfPidqv9P .dropdown-item:active {
  background-color: transparent;
}
.cid-tFfPidqv9P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFfPidqv9P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFfPidqv9P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFfPidqv9P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #217770;
}
.cid-tFfPidqv9P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFfPidqv9P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFfPidqv9P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFfPidqv9P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFfPidqv9P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFfPidqv9P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFfPidqv9P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFfPidqv9P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFfPidqv9P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFfPidqv9P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFfPidqv9P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFfPidqv9P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFfPidqv9P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFfPidqv9P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFfPidqv9P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFfPidqv9P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFfPidqv9P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFfPidqv9P .navbar {
    height: 70px;
  }
  .cid-tFfPidqv9P .navbar.opened {
    height: auto;
  }
  .cid-tFfPidqv9P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDiMoer1mY {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiMoer1mY .content-container {
  margin-bottom: 50px;
  width: 100%;
  padding: 5rem 5rem;
  text-align: center;
  background: #f5f4ed;
}
@media (max-width: 767px) {
  .cid-tDiMoer1mY .content-container {
    padding: 3rem 1rem;
  }
}
.cid-tDiMoer1mY .label-text {
  color: #232323;
  margin-bottom: 28px;
}
.cid-tDiMoer1mY .mbr-text {
  color: #217770;
  margin-bottom: 0;
}
.cid-tDiMoer1mY .mbr-text-name {
  color: #098f81;
  margin-bottom: 0;
  margin-top: 35px;
}
.cid-tDiMoer1mY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDiMoer1mY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDiGD0ySYk {
  background-image: url("../../../assets/images/entwertungsschein-ticket-02-web-2000x1333.jpg");
}
.cid-tDiGD0ySYk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDiGD0ySYk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDiGD0ySYk .col-12 {
  position: relative;
}
.cid-tDiGD0ySYk img {
  max-width: 500px;
  margin: auto;
}
.cid-tDiGD0ySYk .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-tDiGD0ySYk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDiGD0ySYk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDiGD0ySYk .image-wrapper {
    padding: 1rem;
  }
}
.cid-tDiGD0ySYk .mbr-section-title {
  color: #ffffff;
}
.cid-tBFSAAtlJk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBFSAAtlJk a {
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-tBFSAAtlJk .content {
    text-align: center;
  }
}
.cid-tBFSAAtlJk .mbr-text {
  color: #217770;
}
.cid-tBFSAAtlJk .mbr-section-title {
  color: #217770;
}
.cid-tFaRwo6CXc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFaRwo6CXc .mbr-section-title {
  color: #217770;
}
.cid-tFaRwo6CXc .mbr-section-subtitle {
  color: #217770;
}
.cid-tFaRwo6CXc .mbr-text {
  color: #217770;
}
.cid-tCIAJ1Bh13 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCIAJ1Bh13 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIAJ1Bh13 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIAJ1Bh13 .mbr-text,
.cid-tCIAJ1Bh13 .mbr-section-btn {
  color: #217770;
}
.cid-tBFTMyP4bV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/entwertungsschein-ticket-hintergund-web-2000x1333.jpg");
}
.cid-tBFTMyP4bV .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-tBFTMyP4bV .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-tBFTMyP4bV .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-tBFTMyP4bV .col-12 {
    margin-top: 30px;
  }
  .cid-tBFTMyP4bV .col-12:first-child {
    margin-top: 0px;
  }
  .cid-tBFTMyP4bV .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-tBFTMyP4bV .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-tBFTMyP4bV .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-tBFTMyP4bV .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-tFgq4FIFNy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/entwertungsschein-hintergundweb150-2000x1333.jpg");
}
.cid-tFgq4FIFNy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgq4FIFNy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgq4FIFNy p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-tFgq4FIFNy .card-wrapper {
    text-align: center;
  }
}
.cid-tFgq4FIFNy .mbr-section-title {
  color: #217770;
}
.cid-tupnqPKw8y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f4ed;
  overflow: hidden;
}
.cid-tupnqPKw8y .media-container-row .mbr-text {
  color: #232323;
}
.cid-tFathNTaQd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFathNTaQd nav.navbar {
  position: fixed;
}
.cid-tFathNTaQd .link {
  font-weight: bold;
}
.cid-tFathNTaQd .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-tFathNTaQd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFathNTaQd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFathNTaQd .dropdown-item:hover,
.cid-tFathNTaQd .dropdown-item:focus {
  background: #217770 !important;
  color: white !important;
}
.cid-tFathNTaQd .dropdown-item:hover span {
  color: white;
}
.cid-tFathNTaQd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFathNTaQd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFathNTaQd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFathNTaQd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFathNTaQd .nav-link {
  position: relative;
}
.cid-tFathNTaQd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFathNTaQd .container {
    flex-wrap: nowrap;
  }
}
.cid-tFathNTaQd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFathNTaQd .dropdown-menu,
.cid-tFathNTaQd .navbar.opened {
  background: #217770 !important;
}
.cid-tFathNTaQd .nav-item:focus,
.cid-tFathNTaQd .nav-link:focus {
  outline: none;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFathNTaQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFathNTaQd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFathNTaQd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFathNTaQd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #217770;
}
.cid-tFathNTaQd .navbar.opened {
  transition: all 0.3s;
}
.cid-tFathNTaQd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFathNTaQd .navbar .navbar-logo img {
  width: auto;
}
.cid-tFathNTaQd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFathNTaQd .navbar.collapsed {
  justify-content: center;
}
.cid-tFathNTaQd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFathNTaQd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFathNTaQd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFathNTaQd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFathNTaQd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFathNTaQd .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-tFathNTaQd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFathNTaQd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFathNTaQd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFathNTaQd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFathNTaQd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFathNTaQd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFathNTaQd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFathNTaQd .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-tFathNTaQd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFathNTaQd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFathNTaQd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFathNTaQd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFathNTaQd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFathNTaQd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFathNTaQd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFathNTaQd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFathNTaQd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFathNTaQd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFathNTaQd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFathNTaQd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFathNTaQd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFathNTaQd .dropdown-item.active,
.cid-tFathNTaQd .dropdown-item:active {
  background-color: transparent;
}
.cid-tFathNTaQd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFathNTaQd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFathNTaQd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFathNTaQd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #217770;
}
.cid-tFathNTaQd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFathNTaQd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFathNTaQd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFathNTaQd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFathNTaQd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFathNTaQd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFathNTaQd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFathNTaQd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFathNTaQd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFathNTaQd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFathNTaQd .navbar {
    height: 70px;
  }
  .cid-tFathNTaQd .navbar.opened {
    height: auto;
  }
  .cid-tFathNTaQd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGHkmSzUhP {
  background-image: url("../../../assets/images/entwertungsschein-ticket-02-web-2000x1333.jpg");
}
.cid-tGHkmSzUhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGHkmSzUhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGHkmSzUhP .col-12 {
  position: relative;
}
.cid-tGHkmSzUhP img {
  max-width: 500px;
  margin: auto;
}
.cid-tGHkmSzUhP .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-tGHkmSzUhP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tGHkmSzUhP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGHkmSzUhP .image-wrapper {
    padding: 1rem;
  }
}
.cid-tGHkmSzUhP .mbr-section-title {
  color: #ffffff;
}
.cid-tGHkVLGlvO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGHkVLGlvO .content-container {
  margin-bottom: 50px;
  width: 100%;
  padding: 5rem 5rem;
  text-align: center;
  background: #f5f4ed;
}
@media (max-width: 767px) {
  .cid-tGHkVLGlvO .content-container {
    padding: 3rem 1rem;
  }
}
.cid-tGHkVLGlvO .label-text {
  color: #232323;
  margin-bottom: 28px;
}
.cid-tGHkVLGlvO .mbr-text {
  color: #217770;
  margin-bottom: 0;
}
.cid-tGHkVLGlvO .mbr-text-name {
  color: #098f81;
  margin-bottom: 0;
  margin-top: 35px;
}
.cid-tGHkVLGlvO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGHkVLGlvO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJBIOoFe3C {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/entwertungsflyers-schreeg-2000x1500.jpg");
}
.cid-tJBIOoFe3C .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  background: #ffffff;
  width: 100%;
  padding: 0;
}
.cid-tJBIOoFe3C .carousel-item.active,
.cid-tJBIOoFe3C .carousel-item-next,
.cid-tJBIOoFe3C .carousel-item-prev {
  display: flex;
}
.cid-tJBIOoFe3C .carousel-control-prev span {
  right: -10px;
}
.cid-tJBIOoFe3C .row {
  justify-content: space-between;
}
.cid-tJBIOoFe3C .user {
  padding: 0 2rem !important;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-tJBIOoFe3C .user {
    flex-direction: column;
  }
}
.cid-tJBIOoFe3C .user_text {
  padding: 0 2rem;
  color: #767676;
}
.cid-tJBIOoFe3C .carousel-control-next span {
  left: -10px;
}
@media (max-width: 767px) {
  .cid-tJBIOoFe3C .icons-list {
    padding-bottom: 1rem;
  }
}
.cid-tJBIOoFe3C .card-header {
  background: transparent;
  border: 0;
  padding: 0;
  padding-top: 2rem;
}
.cid-tJBIOoFe3C .bottom {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1rem 2rem;
}
@media (min-width: 767px) {
  .cid-tJBIOoFe3C .carousel-control-prev span {
    right: 100px;
  }
  .cid-tJBIOoFe3C .carousel-control-next span {
    left: 100px;
  }
  .cid-tJBIOoFe3C .slider-col {
    padding: 0 4rem;
  }
}
.cid-tJBIOoFe3C .iconfont-wrapper,
.cid-tJBIOoFe3C .amp-iconfont {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 1.6rem;
  color: #ffffff;
}
.cid-tJBIOoFe3C .carousel-controls a {
  font-size: 1.2rem;
  color: #217770;
  opacity: 0.5;
}
.cid-tJBIOoFe3C .carousel-controls a span {
  position: absolute;
  top: 40%;
  padding: 10px;
  border-radius: 50%;
  color: #217770;
  border: 1px solid #217770;
}
@media (max-width: 767px) {
  .cid-tJBIOoFe3C .carousel-controls a {
    top: 70%;
  }
}
@media (min-width: 992px) {
  .cid-tJBIOoFe3C .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-tJBIOoFe3C .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tJBIOoFe3C .user_name {
  text-align: left;
}
.cid-tJBIOoFe3C .mbr-section-title {
  color: #217770;
}
.cid-tFfPlkQ03z {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFfPlkQ03z .mbr-section-title {
  color: #217770;
}
.cid-tFfPlkQ03z .mbr-text {
  color: #53a78f;
}
.cid-tGv6hOpnzB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGv6hOpnzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGv6hOpnzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGv6hOpnzB .mbr-text,
.cid-tGv6hOpnzB .mbr-section-btn {
  color: #217770;
}
.cid-tGv55jFfa5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGv55jFfa5 img,
.cid-tGv55jFfa5 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGv55jFfa5 .item:focus,
.cid-tGv55jFfa5 span:focus {
  outline: none;
}
.cid-tGv55jFfa5 .item-img {
  overflow: hidden;
}
.cid-tGv55jFfa5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tGv55jFfa5 .item {
    padding: 0 2rem;
  }
}
.cid-tGv55jFfa5 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tGv55jFfa5 .item-wrapper img {
  transition: all 0.6s;
}
.cid-tGv55jFfa5 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tGv55jFfa5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGv55jFfa5 .mbr-section-title {
  color: #232323;
}
.cid-tGv55jFfa5 .mbr-text,
.cid-tGv55jFfa5 .mbr-section-btn {
  text-align: left;
}
.cid-tGv55jFfa5 .item-title {
  text-align: left;
}
.cid-tGv55jFfa5 .item-subtitle {
  text-align: left;
}
.cid-tGv4yfFVD5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGv4yfFVD5 .mbr-section-subtitle {
  color: #353535;
}
.cid-tGv4yfFVD5 .mbr-section-title {
  color: #217770;
}
.cid-tGv4yfFVD5 .mbr-text {
  color: #53a78f;
}
.cid-tGv4dyMeYL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGv4dyMeYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGv4dyMeYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGv4dyMeYL .mbr-text,
.cid-tGv4dyMeYL .mbr-section-btn {
  color: #217770;
}
.cid-tGv3uDj569 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGv3uDj569 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGv3uDj569 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGv3uDj569 .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGv3uDj569 .container-fluid {
    padding: 0;
  }
}
.cid-tGv3uDj569 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGv3uDj569 .container {
    padding: 0 20px;
  }
}
.cid-tGv3uDj569 .row {
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-tGv3uDj569 .row a {
  display: block;
  position: absolute;
  width: fit-content;
}
.cid-tGv3uDj569 .row a .mbr-iconfont {
  width: 102px;
  height: 102px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #6a6e71;
}
@media (max-width: 992px) {
  .cid-tGv3uDj569 .row a .mbr-iconfont {
    width: 70px;
    height: 70px;
  }
}
.cid-tGv3uDj569 .card {
  padding: 0;
}
.cid-tGv3uDj569 .card img {
  height: 240px;
  object-fit: cover;
}
.cid-tGv3uDj569 .line-gradient {
  background-image: linear-gradient(45deg, #217770, #53a78f, #ffe161);
  height: 10px;
}
.cid-tGv3uDj569 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGv3uDj569 .mbr-emoji {
  color: #ffffff;
}
.cid-tI0vLlwJsd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tI0vLlwJsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tI0vLlwJsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tI0vLlwJsd .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tI0vLlwJsd .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tI0vLlwJsd .image-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tI0vLlwJsd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tI0vLlwJsd .mbr-section-title {
  color: #217770;
}
.cid-tI0vLlwJsd .mbr-text,
.cid-tI0vLlwJsd .mbr-section-btn {
  color: #53a78f;
}
.cid-tGuJjFf2gs {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #f5f4ed;
}
.cid-tGuJjFf2gs .mbr-media {
  position: relative;
}
.cid-tGuJjFf2gs .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGuJjFf2gs .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGuJjFf2gs .mbr-media span {
  font-size: 3rem;
  transition: all 0.2s;
  background: white;
  padding: 1.5rem;
  border-radius: 50%;
}
.cid-tGuJjFf2gs a {
  background-image: none !important;
}
.cid-tGuJjFf2gs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGuJjFf2gs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGuJjFf2gs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGuJjFf2gs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGuJjFf2gs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGuJjFf2gs .mbr-section-title {
  color: #217770;
}
.cid-tGuJjFf2gs .mbr-section-subtitle {
  color: #53a78f;
}
.cid-tH3M0UDxqu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tH3M0UDxqu .mbr-section-title {
  color: #217770;
}
.cid-tH3M0UDxqu .mbr-section-subtitle {
  color: #217770;
}
.cid-tH3M0UDxqu .mbr-text {
  color: #217770;
}
.cid-tIix3kS2v3 {
  padding-top: 0rem;
  padding-bottom: 33rem;
  background-image: url("../../../assets/images/entwertungsflyers-schreeg-2000x1500.jpg");
  background-size: cover;
}
@media (max-width: 1400px) {
  .cid-tIix3kS2v3 {
    padding-bottom: 26.4rem;
  }
}
@media (max-width: 992px) {
  .cid-tIix3kS2v3 {
    padding-bottom: 21.45rem;
  }
}
@media (max-width: 767px) {
  .cid-tIix3kS2v3 {
    padding-bottom: 14.19rem;
  }
}
.cid-tIix3kS2v3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIix3kS2v3 .bg-cover {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 40%;
  z-index: 1;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-tIix3kS2v3 .bg-cover {
    height: 50%;
  }
}
.cid-tIix3kS2v3 .row {
  z-index: 1;
  position: relative;
}
.cid-tIix3kS2v3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIix3kS2v3 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tIix3kS2v3 .mbr-text,
.cid-tIix3kS2v3 .mbr-section-btn {
  text-align: center;
}
.cid-tIix3kS2v3 .mbr-section-subtitle {
  text-align: center;
}
.cid-tGvXVrDUjA {
  padding-top: 9rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGvXVrDUjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGvXVrDUjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGvXVrDUjA .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGvXVrDUjA .container-fluid {
    padding: 0 20px;
  }
}
.cid-tGvXVrDUjA .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGvXVrDUjA .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tGvXVrDUjA .title-wrapper {
    margin-top: 45px;
  }
}
.cid-tGvXVrDUjA .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tGvXVrDUjA .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-tGvXVrDUjA .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tGvXVrDUjA .title-wrapper .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-tGvXVrDUjA .title-wrapper .mbr-text {
  line-height: inherit;
  margin-bottom: 0;
}
.cid-tGvXVrDUjA .title-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 30px 0 0 0;
}
@media (max-width: 768px) {
  .cid-tGvXVrDUjA .title-wrapper .list {
    margin-top: 20px;
  }
}
.cid-tGvXVrDUjA .title-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tGvXVrDUjA .title-wrapper .list .item-wrap {
    margin-top: 10px;
  }
}
.cid-tGvXVrDUjA .title-wrapper .list .item-wrap .mbr-iconfont {
  margin-right: 12px;
  color: #217770;
}
@media (min-width: 992px) {
  .cid-tGvXVrDUjA .mbr-form {
    margin-top: 32px;
  }
}
.cid-tGvXVrDUjA .dragArea.row .form-group {
  margin-bottom: 40px !important;
}
@media (max-width: 992px) {
  .cid-tGvXVrDUjA .dragArea.row .form-group {
    margin-top: 20px;
  }
}
.cid-tGvXVrDUjA .dragArea.row .form-group .form-control {
  border: none !important;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #6a6e71 !important;
  padding: 14px 0;
}
.cid-tGvXVrDUjA .dragArea.row .form-group .form-control::placeholder {
  color: #6a6e71;
}
.cid-tGvXVrDUjA .dragArea.row .form-group .form-control:hover {
  border-color: #6a6e71 !important;
}
.cid-tGvXVrDUjA .dragArea.row .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
}
.cid-tGvXVrDUjA .dragArea.row .form-group .form-check .form-check-input {
  background: transparent;
  border: 1px solid #ff6666;
}
.cid-tGvXVrDUjA .dragArea.row .mbr-section-btn {
  margin-top: 20px;
}
.cid-tGvXVrDUjA .dragArea.row .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-tGvXVrDUjA .dragArea.row .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 0;
  margin-right: 10px;
}
.cid-tGvXVrDUjA .mbr-section-subtitle {
  color: #217770;
}
.cid-tGvXVrDUjA .mbr-section-title {
  color: #217770;
}
.cid-tGvXVrDUjA .mbr-text {
  color: #6a6e71;
}
.cid-tGvXVrDUjA .list {
  color: #6a6e71;
}
.cid-tGvXVrDUjA label {
  color: #000000;
}
.cid-tFfPlltxQB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tFfPlltxQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFfPlltxQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tFfPlltxQB .mbr-section-head {
    text-align: center;
  }
}
.cid-tFfPlltxQB .google-map {
  height: 35rem;
  position: relative;
}
.cid-tFfPlltxQB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tFfPlltxQB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tFfPlltxQB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tFfPlltxQB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tFfPlltxQB .mbr-section-title {
  color: #217770;
}
.cid-tGG0cEjLF6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tGG0cEjLF6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGG0cEjLF6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGG0cEjLF6 .mbr-text,
.cid-tGG0cEjLF6 .mbr-section-btn {
  color: #217770;
  text-align: center;
}
.cid-tGFZUyS14I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/entwertungsschein-ticket-hintergund-web-2000x1333.jpg");
}
.cid-tGFZUyS14I .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-tGFZUyS14I .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-tGFZUyS14I .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-tGFZUyS14I .col-12 {
    margin-top: 30px;
  }
  .cid-tGFZUyS14I .col-12:first-child {
    margin-top: 0px;
  }
  .cid-tGFZUyS14I .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-tGFZUyS14I .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-tGFZUyS14I .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-tGFZUyS14I .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-tFgrYUAZVl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/entwertungsschein-hintergundweb150-2000x1333.jpg");
}
.cid-tFgrYUAZVl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgrYUAZVl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgrYUAZVl p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-tFgrYUAZVl .card-wrapper {
    text-align: center;
  }
}
.cid-tFgrYUAZVl .mbr-section-title {
  color: #217770;
}
.cid-tFfPllY0pf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f4ed;
  overflow: hidden;
}
.cid-tFfPllY0pf .media-container-row .mbr-text {
  color: #232323;
}
.cid-tFfPlmaWUU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFfPlmaWUU nav.navbar {
  position: fixed;
}
.cid-tFfPlmaWUU .link {
  font-weight: bold;
}
.cid-tFfPlmaWUU .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-tFfPlmaWUU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFfPlmaWUU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFfPlmaWUU .dropdown-item:hover,
.cid-tFfPlmaWUU .dropdown-item:focus {
  background: #217770 !important;
  color: white !important;
}
.cid-tFfPlmaWUU .dropdown-item:hover span {
  color: white;
}
.cid-tFfPlmaWUU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFfPlmaWUU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFfPlmaWUU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFfPlmaWUU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFfPlmaWUU .nav-link {
  position: relative;
}
.cid-tFfPlmaWUU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFfPlmaWUU .container {
    flex-wrap: nowrap;
  }
}
.cid-tFfPlmaWUU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFfPlmaWUU .dropdown-menu,
.cid-tFfPlmaWUU .navbar.opened {
  background: #217770 !important;
}
.cid-tFfPlmaWUU .nav-item:focus,
.cid-tFfPlmaWUU .nav-link:focus {
  outline: none;
}
.cid-tFfPlmaWUU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFfPlmaWUU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFfPlmaWUU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFfPlmaWUU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFfPlmaWUU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFfPlmaWUU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFfPlmaWUU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #217770;
}
.cid-tFfPlmaWUU .navbar.opened {
  transition: all 0.3s;
}
.cid-tFfPlmaWUU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFfPlmaWUU .navbar .navbar-logo img {
  width: auto;
}
.cid-tFfPlmaWUU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFfPlmaWUU .navbar.collapsed {
  justify-content: center;
}
.cid-tFfPlmaWUU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFfPlmaWUU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFfPlmaWUU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFfPlmaWUU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFfPlmaWUU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFfPlmaWUU .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-tFfPlmaWUU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFfPlmaWUU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFfPlmaWUU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFfPlmaWUU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFfPlmaWUU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFfPlmaWUU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFfPlmaWUU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFfPlmaWUU .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-tFfPlmaWUU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFfPlmaWUU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFfPlmaWUU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFfPlmaWUU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFfPlmaWUU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFfPlmaWUU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFfPlmaWUU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFfPlmaWUU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFfPlmaWUU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFfPlmaWUU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFfPlmaWUU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFfPlmaWUU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFfPlmaWUU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFfPlmaWUU .dropdown-item.active,
.cid-tFfPlmaWUU .dropdown-item:active {
  background-color: transparent;
}
.cid-tFfPlmaWUU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFfPlmaWUU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFfPlmaWUU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFfPlmaWUU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #217770;
}
.cid-tFfPlmaWUU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFfPlmaWUU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFfPlmaWUU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFfPlmaWUU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFfPlmaWUU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFfPlmaWUU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFfPlmaWUU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFfPlmaWUU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFfPlmaWUU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFfPlmaWUU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFfPlmaWUU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFfPlmaWUU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFfPlmaWUU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFfPlmaWUU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFfPlmaWUU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFfPlmaWUU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFfPlmaWUU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFfPlmaWUU .navbar {
    height: 70px;
  }
  .cid-tFfPlmaWUU .navbar.opened {
    height: auto;
  }
  .cid-tFfPlmaWUU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
