body {
  font-family: Josefin Sans;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.25rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.6rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- 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: 768px) {
  .display-1 {
    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-2 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #f05555 !important;
}
.bg-success {
  background-color: #f05555 !important;
}
.bg-info {
  background-color: #69b9d0 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f05555 !important;
  border-color: #f05555 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #e41414 !important;
  border-color: #e41414 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e41414 !important;
  border-color: #e41414 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #69b9d0 !important;
  border-color: #69b9d0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #3898b4 !important;
  border-color: #3898b4 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3898b4 !important;
  border-color: #3898b4 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #f05555 !important;
  border-color: #f05555 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #e41414 !important;
  border-color: #e41414 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e41414 !important;
  border-color: #e41414 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cd1212;
  color: #cd1212;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #f05555;
  border-color: #f05555;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f05555 !important;
  border-color: #f05555 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #111111;
  color: #111111;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3288a1;
  color: #3288a1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #69b9d0;
  border-color: #69b9d0;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #69b9d0 !important;
  border-color: #69b9d0 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #cd1212;
  color: #cd1212;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #f05555;
  border-color: #f05555;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f05555 !important;
  border-color: #f05555 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f05555 !important;
}
.text-secondary {
  color: #444444 !important;
}
.text-success {
  color: #f05555 !important;
}
.text-info {
  color: #69b9d0 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cd1212 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #111111 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cd1212 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3288a1 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #f05555;
}
.alert-info {
  background-color: #69b9d0;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f05555;
  border-color: #f05555;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f05555;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
#scrollToTop a {
  border: 2px solid #f05555;
}
#scrollToTop a i:before {
  background: #f05555;
}
#scrollToTop a i:after {
  border-top: 2px solid #f05555;
  border-right: 2px solid #f05555;
}
.mbr-arrow a i {
  color: #f05555;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #f05555;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f05555;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 0;
  background-color: #efefef;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f05555;
  border-bottom-color: #f05555;
}
.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: #f05555 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #444444 !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%;
}
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='%23f05555' %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;
}
.cid-t3FO0UlGS5 {
  background-image: url("../../../assets/images/pocetna-2000x1333.jpg");
}
.cid-t3FO0UlGS5 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-t3FO0UlGS5 .mbr-text,
.cid-t3FO0UlGS5 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t3FO0UlGS5 .mbr-section-title,
  .cid-t3FO0UlGS5 .mbr-section-btn,
  .cid-t3FO0UlGS5 .mbr-text {
    text-align: center;
  }
}
.cid-t3DvjU8bis {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t3DvjU8bis .mbr-text,
.cid-t3DvjU8bis .ornament {
  color: #ffffff;
}
.cid-t3HIISSb8B {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t3HIISSb8B .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-t3HIISSb8B .text-block {
  position: relative;
  z-index: 0;
}
.cid-t3HIISSb8B .box {
  width: 25%;
  height: 40%;
  background: #efefef;
  position: absolute;
  top: 4%;
}
.cid-t3HIISSb8B .box {
  left: 20%;
}
.cid-t3HIISSb8B .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-t3HIISSb8B .mbr-section-text,
.cid-t3HIISSb8B .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-t3HIISSb8B .text-box {
    display: none;
  }
  .cid-t3HIISSb8B .mbr-section-title,
  .cid-t3HIISSb8B .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-t3HIISSb8B .box {
    display: none;
  }
  .cid-t3HIISSb8B .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-t3HIISSb8B .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3HIISSb8B .text-box {
    writing-mode: bt-rl;
  }
}
.cid-t3HIIXDlmN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t3HIIXDlmN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-t3HIIXDlmN .text-block {
  position: relative;
  z-index: 0;
}
.cid-t3HIIXDlmN .box {
  width: 25%;
  height: 40%;
  background: #efefef;
  position: absolute;
  top: 4%;
}
.cid-t3HIIXDlmN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t3HIIXDlmN .box {
  right: 20%;
}
.cid-t3HIIXDlmN .text-box {
  right: 0;
}
.cid-t3HIIXDlmN .mbr-section-title,
.cid-t3HIIXDlmN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-t3HIIXDlmN .text-box {
    display: none;
  }
  .cid-t3HIIXDlmN .mbr-section-title,
  .cid-t3HIIXDlmN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-t3HIIXDlmN .box {
    display: none;
  }
  .cid-t3HIIXDlmN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-t3HIIXDlmN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3HIIXDlmN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-t3DBkpUBPm {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-t3DBkpUBPm img,
.cid-t3DBkpUBPm .item-img {
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-t3DBkpUBPm .item:focus,
.cid-t3DBkpUBPm span:focus {
  outline: none;
}
.cid-t3DBkpUBPm .item-wrapper {
  position: relative;
}
.cid-t3DBkpUBPm .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t3DBkpUBPm .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t3DBkpUBPm .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t3DBkpUBPm .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t3DBkpUBPm .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t3DBkpUBPm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t3DBkpUBPm .mbr-section-title {
  color: #232323;
}
.cid-t3DBkpUBPm .mbr-text,
.cid-t3DBkpUBPm .mbr-section-btn {
  text-align: center;
}
.cid-t3DBkpUBPm .item-title {
  text-align: center;
}
.cid-t3DBkpUBPm .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-t3DBkpUBPm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-t3DBkpUBPm .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3DBkpUBPm .embla__button--next,
.cid-t3DBkpUBPm .embla__button--prev {
  display: flex;
}
.cid-t3DBkpUBPm .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3DBkpUBPm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3DBkpUBPm .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t3DBkpUBPm .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3DBkpUBPm .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3DBkpUBPm .embla__button {
    top: auto;
  }
}
.cid-t3DBkpUBPm .embla {
  position: relative;
  width: 100%;
}
.cid-t3DBkpUBPm .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3DBkpUBPm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3DBkpUBPm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3DBkpUBPm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t7zBZd60qV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-t7zBZd60qV .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-t7zBZd60qV form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t7zBZd60qV form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t7zBZd60qV form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t7zBZd60qV .mbr-section-title {
  color: #000000;
}
.cid-t7zBZd60qV .mbr-section-subtitle {
  color: #000000;
}
.cid-t3CMhNYDD3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3CMhNYDD3 nav.navbar {
  position: fixed;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3CMhNYDD3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3CMhNYDD3 .dropdown-item:hover,
.cid-t3CMhNYDD3 .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t3CMhNYDD3 .dropdown-item:hover span {
  color: white;
}
.cid-t3CMhNYDD3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3CMhNYDD3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3CMhNYDD3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3CMhNYDD3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3CMhNYDD3 .nav-link {
  position: relative;
}
.cid-t3CMhNYDD3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3CMhNYDD3 .container {
    flex-wrap: nowrap;
  }
}
.cid-t3CMhNYDD3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3CMhNYDD3 .dropdown-menu,
.cid-t3CMhNYDD3 .navbar.opened {
  background: #ffffff !important;
}
.cid-t3CMhNYDD3 .nav-item:focus,
.cid-t3CMhNYDD3 .nav-link:focus {
  outline: none;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3CMhNYDD3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3CMhNYDD3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3CMhNYDD3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3CMhNYDD3 .navbar.opened {
  transition: all 0.3s;
}
.cid-t3CMhNYDD3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3CMhNYDD3 .navbar .navbar-logo img {
  width: auto;
}
.cid-t3CMhNYDD3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3CMhNYDD3 .navbar.collapsed {
  justify-content: center;
}
.cid-t3CMhNYDD3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3CMhNYDD3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3CMhNYDD3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t3CMhNYDD3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3CMhNYDD3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3CMhNYDD3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3CMhNYDD3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3CMhNYDD3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3CMhNYDD3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3CMhNYDD3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3CMhNYDD3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3CMhNYDD3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3CMhNYDD3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3CMhNYDD3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3CMhNYDD3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3CMhNYDD3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3CMhNYDD3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3CMhNYDD3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3CMhNYDD3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3CMhNYDD3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3CMhNYDD3 .dropdown-item.active,
.cid-t3CMhNYDD3 .dropdown-item:active {
  background-color: transparent;
}
.cid-t3CMhNYDD3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3CMhNYDD3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3CMhNYDD3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3CMhNYDD3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3CMhNYDD3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3CMhNYDD3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3CMhNYDD3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3CMhNYDD3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3CMhNYDD3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3CMhNYDD3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar {
    height: 70px;
  }
  .cid-t3CMhNYDD3 .navbar.opened {
    height: auto;
  }
  .cid-t3CMhNYDD3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t4zHL4gjbF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4zHL5mTNT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t4zHL5mTNT .mbr-text,
.cid-t4zHL5mTNT .ornament {
  text-align: left;
}
.cid-tlg7Ziyd6n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlg7Ziyd6n .mbr-text,
.cid-tlg7Ziyd6n .ornament {
  text-align: left;
  color: #f05555;
}
.cid-tlg6OTjtij {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlg6OTjtij .mbr-section-subtitle {
  color: #232323;
}
.cid-tlg6OTjtij .mbr-section-title {
  text-align: left;
}
.cid-tlg8OthtTV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlg8OthtTV .mbr-text,
.cid-tlg8OthtTV .ornament {
  text-align: left;
  color: #171717;
}
.cid-tlg9b2pbez {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlg9b2pbez .mbr-section-subtitle {
  color: #232323;
}
.cid-tlg9b2pbez .mbr-section-title {
  text-align: left;
}
.cid-tlgaySNyaW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlgaySNyaW .mbr-text,
.cid-tlgaySNyaW .ornament {
  text-align: left;
  color: #f05555;
}
.cid-tlgaNC3i39 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlgaNC3i39 .mbr-section-subtitle {
  color: #232323;
}
.cid-tlgaNC3i39 .mbr-section-title {
  text-align: left;
}
.cid-tlge1Iffrj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlge1Iffrj .mbr-text,
.cid-tlge1Iffrj .ornament {
  text-align: left;
  color: #171717;
}
.cid-t4zHL6Wv0B {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4zHL6Wv0B nav.navbar {
  position: fixed;
}
.cid-t4zHL6Wv0B .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-t4zHL6Wv0B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4zHL6Wv0B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4zHL6Wv0B .dropdown-item:hover,
.cid-t4zHL6Wv0B .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t4zHL6Wv0B .dropdown-item:hover span {
  color: white;
}
.cid-t4zHL6Wv0B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4zHL6Wv0B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4zHL6Wv0B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4zHL6Wv0B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4zHL6Wv0B .nav-link {
  position: relative;
}
.cid-t4zHL6Wv0B .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t4zHL6Wv0B .container {
    flex-wrap: nowrap;
  }
}
.cid-t4zHL6Wv0B .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t4zHL6Wv0B .dropdown-menu,
.cid-t4zHL6Wv0B .navbar.opened {
  background: #ffffff !important;
}
.cid-t4zHL6Wv0B .nav-item:focus,
.cid-t4zHL6Wv0B .nav-link:focus {
  outline: none;
}
.cid-t4zHL6Wv0B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4zHL6Wv0B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4zHL6Wv0B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4zHL6Wv0B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4zHL6Wv0B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4zHL6Wv0B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4zHL6Wv0B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4zHL6Wv0B .navbar.opened {
  transition: all 0.3s;
}
.cid-t4zHL6Wv0B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4zHL6Wv0B .navbar .navbar-logo img {
  width: auto;
}
.cid-t4zHL6Wv0B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4zHL6Wv0B .navbar.collapsed {
  justify-content: center;
}
.cid-t4zHL6Wv0B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4zHL6Wv0B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4zHL6Wv0B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t4zHL6Wv0B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4zHL6Wv0B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4zHL6Wv0B .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-t4zHL6Wv0B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4zHL6Wv0B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4zHL6Wv0B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4zHL6Wv0B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4zHL6Wv0B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4zHL6Wv0B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4zHL6Wv0B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4zHL6Wv0B .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-t4zHL6Wv0B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4zHL6Wv0B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4zHL6Wv0B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4zHL6Wv0B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4zHL6Wv0B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4zHL6Wv0B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4zHL6Wv0B .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4zHL6Wv0B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4zHL6Wv0B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4zHL6Wv0B .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-t4zHL6Wv0B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4zHL6Wv0B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4zHL6Wv0B .dropdown-item.active,
.cid-t4zHL6Wv0B .dropdown-item:active {
  background-color: transparent;
}
.cid-t4zHL6Wv0B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4zHL6Wv0B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4zHL6Wv0B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4zHL6Wv0B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4zHL6Wv0B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4zHL6Wv0B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4zHL6Wv0B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4zHL6Wv0B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4zHL6Wv0B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4zHL6Wv0B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4zHL6Wv0B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4zHL6Wv0B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4zHL6Wv0B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4zHL6Wv0B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4zHL6Wv0B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4zHL6Wv0B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4zHL6Wv0B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4zHL6Wv0B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4zHL6Wv0B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4zHL6Wv0B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4zHL6Wv0B .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-t4zHL6Wv0B .navbar {
    height: 70px;
  }
  .cid-t4zHL6Wv0B .navbar.opened {
    height: auto;
  }
  .cid-t4zHL6Wv0B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t65IYTGxUt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t65IYTGxUt .mbr-section-subtitle {
  color: #232323;
}
.cid-t65IYUc0sA {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t65IYUc0sA .image-block {
  margin: auto;
}
.cid-t65IYUc0sA .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t65IYUc0sA .image-block {
    width: 100% !important;
  }
}
.cid-t65IYUD79K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t65IYUD79K .mbr-text,
.cid-t65IYUD79K .ornament {
  text-align: left;
}
.cid-t65IYV56kL {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t65IYV56kL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t65IYV56kL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t65IYV56kL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t65IYV56kL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t65IYV56kL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t65IYV56kL .icon-focus {
  display: none;
}
.cid-t65IYV56kL .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t65IYV56kL ul {
  font-size: 0;
}
.cid-t65IYV56kL .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t65IYV56kL .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t65IYV56kL .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t65IYV56kL .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t65IYV56kL .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t65IYV56kL .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t65IYV56kL .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t65IYV56kL .btn:hover {
  background: transparent !important;
}
.cid-t65IYV56kL .btn:hover:before {
  background: transparent !important;
}
.cid-t65IYV56kL .btn:before {
  background-color: transparent !important;
}
.cid-t65IYV56kL .btn:focus {
  box-shadow: none;
}
.cid-t65IYV56kL .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t65IYVX4QG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t65IYVX4QG .mbr-text,
.cid-t65IYVX4QG .ornament {
  text-align: left;
}
.cid-t65IYWoSMH {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t65IYWoSMH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t65IYWoSMH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t65IYWoSMH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t65IYWoSMH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t65IYWoSMH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t65IYWoSMH .icon-focus {
  display: none;
}
.cid-t65IYWoSMH .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t65IYWoSMH ul {
  font-size: 0;
}
.cid-t65IYWoSMH .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t65IYWoSMH .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t65IYWoSMH .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t65IYWoSMH .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t65IYWoSMH .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t65IYWoSMH .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t65IYWoSMH .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t65IYWoSMH .btn:hover {
  background: transparent !important;
}
.cid-t65IYWoSMH .btn:hover:before {
  background: transparent !important;
}
.cid-t65IYWoSMH .btn:before {
  background-color: transparent !important;
}
.cid-t65IYWoSMH .btn:focus {
  box-shadow: none;
}
.cid-t65IYWoSMH .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t65IYXjZXk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t65IYXjZXk .mbr-text,
.cid-t65IYXjZXk .ornament {
  text-align: left;
}
.cid-t65IYXL5zG {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t65IYXL5zG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t65IYXL5zG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t65IYXL5zG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t65IYXL5zG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t65IYXL5zG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t65IYXL5zG .icon-focus {
  display: none;
}
.cid-t65IYXL5zG .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t65IYXL5zG ul {
  font-size: 0;
}
.cid-t65IYXL5zG .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t65IYXL5zG .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t65IYXL5zG .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t65IYXL5zG .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t65IYXL5zG .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t65IYXL5zG .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t65IYXL5zG .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t65IYXL5zG .btn:hover {
  background: transparent !important;
}
.cid-t65IYXL5zG .btn:hover:before {
  background: transparent !important;
}
.cid-t65IYXL5zG .btn:before {
  background-color: transparent !important;
}
.cid-t65IYXL5zG .btn:focus {
  box-shadow: none;
}
.cid-t65IYXL5zG .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlglgKVAh8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlglgKVAh8 .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlglgKVAh8 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlglgKVAh8 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlglgKVAh8 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlglgKVAh8 .mbr-section-title {
  color: #000000;
}
.cid-tlglgKVAh8 .mbr-section-subtitle {
  color: #000000;
}
.cid-t65IYZVEHn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t65IYZVEHn nav.navbar {
  position: fixed;
}
.cid-t65IYZVEHn .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-t65IYZVEHn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t65IYZVEHn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t65IYZVEHn .dropdown-item:hover,
.cid-t65IYZVEHn .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t65IYZVEHn .dropdown-item:hover span {
  color: white;
}
.cid-t65IYZVEHn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t65IYZVEHn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t65IYZVEHn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t65IYZVEHn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t65IYZVEHn .nav-link {
  position: relative;
}
.cid-t65IYZVEHn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t65IYZVEHn .container {
    flex-wrap: nowrap;
  }
}
.cid-t65IYZVEHn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t65IYZVEHn .dropdown-menu,
.cid-t65IYZVEHn .navbar.opened {
  background: #ffffff !important;
}
.cid-t65IYZVEHn .nav-item:focus,
.cid-t65IYZVEHn .nav-link:focus {
  outline: none;
}
.cid-t65IYZVEHn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t65IYZVEHn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t65IYZVEHn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t65IYZVEHn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t65IYZVEHn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t65IYZVEHn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t65IYZVEHn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t65IYZVEHn .navbar.opened {
  transition: all 0.3s;
}
.cid-t65IYZVEHn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t65IYZVEHn .navbar .navbar-logo img {
  width: auto;
}
.cid-t65IYZVEHn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t65IYZVEHn .navbar.collapsed {
  justify-content: center;
}
.cid-t65IYZVEHn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t65IYZVEHn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t65IYZVEHn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t65IYZVEHn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t65IYZVEHn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t65IYZVEHn .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-t65IYZVEHn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t65IYZVEHn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t65IYZVEHn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t65IYZVEHn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t65IYZVEHn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t65IYZVEHn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t65IYZVEHn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t65IYZVEHn .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-t65IYZVEHn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t65IYZVEHn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t65IYZVEHn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t65IYZVEHn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t65IYZVEHn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t65IYZVEHn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t65IYZVEHn .navbar.navbar-short {
  min-height: 60px;
}
.cid-t65IYZVEHn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t65IYZVEHn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t65IYZVEHn .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-t65IYZVEHn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t65IYZVEHn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t65IYZVEHn .dropdown-item.active,
.cid-t65IYZVEHn .dropdown-item:active {
  background-color: transparent;
}
.cid-t65IYZVEHn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t65IYZVEHn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t65IYZVEHn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t65IYZVEHn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t65IYZVEHn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t65IYZVEHn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t65IYZVEHn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t65IYZVEHn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t65IYZVEHn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t65IYZVEHn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t65IYZVEHn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t65IYZVEHn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t65IYZVEHn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t65IYZVEHn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t65IYZVEHn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t65IYZVEHn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t65IYZVEHn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t65IYZVEHn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t65IYZVEHn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t65IYZVEHn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t65IYZVEHn .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-t65IYZVEHn .navbar {
    height: 70px;
  }
  .cid-t65IYZVEHn .navbar.opened {
    height: auto;
  }
  .cid-t65IYZVEHn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t4cGYvDbId {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4cGYvDbId .mbr-section-subtitle {
  color: #232323;
}
.cid-t4cGYw9oPd {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t4cGYw9oPd .image-block {
  margin: auto;
}
.cid-t4cGYw9oPd .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t4cGYw9oPd .image-block {
    width: 100% !important;
  }
}
.cid-t4cGYwBSO2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4cGYwBSO2 .mbr-text,
.cid-t4cGYwBSO2 .ornament {
  text-align: left;
}
.cid-t6mTrq7IYg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6mTrq7IYg .mbr-section-subtitle {
  color: #232323;
}
.cid-t6mTrq7IYg .mbr-section-title {
  text-align: left;
}
.cid-t6mTLgzS11 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t6mTLgzS11 .mbr-text,
.cid-t6mTLgzS11 .ornament {
  text-align: left;
}
.cid-t4cGYx55uB {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t4cGYx55uB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t4cGYx55uB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4cGYx55uB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t4cGYx55uB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t4cGYx55uB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t4cGYx55uB .icon-focus {
  display: none;
}
.cid-t4cGYx55uB .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t4cGYx55uB ul {
  font-size: 0;
}
.cid-t4cGYx55uB .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t4cGYx55uB .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t4cGYx55uB .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t4cGYx55uB .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t4cGYx55uB .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t4cGYx55uB .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t4cGYx55uB .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t4cGYx55uB .btn:hover {
  background: transparent !important;
}
.cid-t4cGYx55uB .btn:hover:before {
  background: transparent !important;
}
.cid-t4cGYx55uB .btn:before {
  background-color: transparent !important;
}
.cid-t4cGYx55uB .btn:focus {
  box-shadow: none;
}
.cid-t4cGYx55uB .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t4cSsMorA9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4cSsMorA9 .mbr-text,
.cid-t4cSsMorA9 .ornament {
  text-align: left;
}
.cid-t6mUB2vl4Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6mUB2vl4Z .mbr-section-subtitle {
  color: #232323;
}
.cid-t6mUB2vl4Z .mbr-section-title {
  text-align: left;
}
.cid-t6mUBwYAM2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t6mUBwYAM2 .mbr-text,
.cid-t6mUBwYAM2 .ornament {
  text-align: left;
}
.cid-t4cTodP6o8 {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t4cTodP6o8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t4cTodP6o8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4cTodP6o8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t4cTodP6o8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t4cTodP6o8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t4cTodP6o8 .icon-focus {
  display: none;
}
.cid-t4cTodP6o8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t4cTodP6o8 ul {
  font-size: 0;
}
.cid-t4cTodP6o8 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t4cTodP6o8 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t4cTodP6o8 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t4cTodP6o8 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t4cTodP6o8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t4cTodP6o8 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t4cTodP6o8 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t4cTodP6o8 .btn:hover {
  background: transparent !important;
}
.cid-t4cTodP6o8 .btn:hover:before {
  background: transparent !important;
}
.cid-t4cTodP6o8 .btn:before {
  background-color: transparent !important;
}
.cid-t4cTodP6o8 .btn:focus {
  box-shadow: none;
}
.cid-t4cTodP6o8 .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t4cWbKx0pN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4cWbKx0pN .mbr-text,
.cid-t4cWbKx0pN .ornament {
  text-align: left;
}
.cid-t4cXgjmSJI {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t4cXgjmSJI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t4cXgjmSJI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4cXgjmSJI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t4cXgjmSJI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t4cXgjmSJI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t4cXgjmSJI .icon-focus {
  display: none;
}
.cid-t4cXgjmSJI .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t4cXgjmSJI ul {
  font-size: 0;
}
.cid-t4cXgjmSJI .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t4cXgjmSJI .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t4cXgjmSJI .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t4cXgjmSJI .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t4cXgjmSJI .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t4cXgjmSJI .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t4cXgjmSJI .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t4cXgjmSJI .btn:hover {
  background: transparent !important;
}
.cid-t4cXgjmSJI .btn:hover:before {
  background: transparent !important;
}
.cid-t4cXgjmSJI .btn:before {
  background-color: transparent !important;
}
.cid-t4cXgjmSJI .btn:focus {
  box-shadow: none;
}
.cid-t4cXgjmSJI .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlgiZB6bqb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgiZB6bqb .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgiZB6bqb form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgiZB6bqb form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgiZB6bqb form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgiZB6bqb .mbr-section-title {
  color: #000000;
}
.cid-tlgiZB6bqb .mbr-section-subtitle {
  color: #000000;
}
.cid-t4cGYzbgKV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4cGYzbgKV nav.navbar {
  position: fixed;
}
.cid-t4cGYzbgKV .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-t4cGYzbgKV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4cGYzbgKV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4cGYzbgKV .dropdown-item:hover,
.cid-t4cGYzbgKV .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t4cGYzbgKV .dropdown-item:hover span {
  color: white;
}
.cid-t4cGYzbgKV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4cGYzbgKV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4cGYzbgKV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4cGYzbgKV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4cGYzbgKV .nav-link {
  position: relative;
}
.cid-t4cGYzbgKV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t4cGYzbgKV .container {
    flex-wrap: nowrap;
  }
}
.cid-t4cGYzbgKV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t4cGYzbgKV .dropdown-menu,
.cid-t4cGYzbgKV .navbar.opened {
  background: #ffffff !important;
}
.cid-t4cGYzbgKV .nav-item:focus,
.cid-t4cGYzbgKV .nav-link:focus {
  outline: none;
}
.cid-t4cGYzbgKV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4cGYzbgKV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4cGYzbgKV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4cGYzbgKV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4cGYzbgKV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4cGYzbgKV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4cGYzbgKV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4cGYzbgKV .navbar.opened {
  transition: all 0.3s;
}
.cid-t4cGYzbgKV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4cGYzbgKV .navbar .navbar-logo img {
  width: auto;
}
.cid-t4cGYzbgKV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4cGYzbgKV .navbar.collapsed {
  justify-content: center;
}
.cid-t4cGYzbgKV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4cGYzbgKV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4cGYzbgKV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t4cGYzbgKV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4cGYzbgKV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4cGYzbgKV .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-t4cGYzbgKV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4cGYzbgKV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4cGYzbgKV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4cGYzbgKV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4cGYzbgKV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4cGYzbgKV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4cGYzbgKV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4cGYzbgKV .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-t4cGYzbgKV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4cGYzbgKV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4cGYzbgKV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4cGYzbgKV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4cGYzbgKV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4cGYzbgKV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4cGYzbgKV .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4cGYzbgKV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4cGYzbgKV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4cGYzbgKV .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-t4cGYzbgKV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4cGYzbgKV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4cGYzbgKV .dropdown-item.active,
.cid-t4cGYzbgKV .dropdown-item:active {
  background-color: transparent;
}
.cid-t4cGYzbgKV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4cGYzbgKV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4cGYzbgKV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4cGYzbgKV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4cGYzbgKV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4cGYzbgKV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4cGYzbgKV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4cGYzbgKV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4cGYzbgKV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4cGYzbgKV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4cGYzbgKV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4cGYzbgKV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4cGYzbgKV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4cGYzbgKV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4cGYzbgKV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4cGYzbgKV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4cGYzbgKV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4cGYzbgKV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4cGYzbgKV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4cGYzbgKV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4cGYzbgKV .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-t4cGYzbgKV .navbar {
    height: 70px;
  }
  .cid-t4cGYzbgKV .navbar.opened {
    height: auto;
  }
  .cid-t4cGYzbgKV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t5932eV7rm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5932fzy7x {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t5932fzy7x .image-block {
  margin: auto;
}
.cid-t5932fzy7x .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t5932fzy7x .image-block {
    width: 100% !important;
  }
}
.cid-t596uJWfsI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t596uJWfsI .mbr-text,
.cid-t596uJWfsI .ornament {
  text-align: left;
}
.cid-t5932gxeeP {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t5932gxeeP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t5932gxeeP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5932gxeeP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5932gxeeP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t5932gxeeP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t5932gxeeP .icon-focus {
  display: none;
}
.cid-t5932gxeeP .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t5932gxeeP ul {
  font-size: 0;
}
.cid-t5932gxeeP .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t5932gxeeP .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t5932gxeeP .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t5932gxeeP .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t5932gxeeP .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t5932gxeeP .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t5932gxeeP .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t5932gxeeP .btn:hover {
  background: transparent !important;
}
.cid-t5932gxeeP .btn:hover:before {
  background: transparent !important;
}
.cid-t5932gxeeP .btn:before {
  background-color: transparent !important;
}
.cid-t5932gxeeP .btn:focus {
  box-shadow: none;
}
.cid-t5932gxeeP .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t5932g8UCE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5932g8UCE .mbr-text,
.cid-t5932g8UCE .ornament {
  text-align: left;
}
.cid-t59a7oF6Km {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t59a7oF6Km .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t59a7oF6Km .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t59a7oF6Km .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t59a7oF6Km .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t59a7oF6Km .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t59a7oF6Km .icon-focus {
  display: none;
}
.cid-t59a7oF6Km .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t59a7oF6Km ul {
  font-size: 0;
}
.cid-t59a7oF6Km .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t59a7oF6Km .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t59a7oF6Km .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t59a7oF6Km .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t59a7oF6Km .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t59a7oF6Km .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t59a7oF6Km .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t59a7oF6Km .btn:hover {
  background: transparent !important;
}
.cid-t59a7oF6Km .btn:hover:before {
  background: transparent !important;
}
.cid-t59a7oF6Km .btn:before {
  background-color: transparent !important;
}
.cid-t59a7oF6Km .btn:focus {
  box-shadow: none;
}
.cid-t59a7oF6Km .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlglIqgA6r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlglIqgA6r .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlglIqgA6r form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlglIqgA6r form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlglIqgA6r form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlglIqgA6r .mbr-section-title {
  color: #000000;
}
.cid-tlglIqgA6r .mbr-section-subtitle {
  color: #000000;
}
.cid-t5932iCX2x {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t5932iCX2x nav.navbar {
  position: fixed;
}
.cid-t5932iCX2x .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-t5932iCX2x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5932iCX2x .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t5932iCX2x .dropdown-item:hover,
.cid-t5932iCX2x .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t5932iCX2x .dropdown-item:hover span {
  color: white;
}
.cid-t5932iCX2x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5932iCX2x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5932iCX2x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5932iCX2x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5932iCX2x .nav-link {
  position: relative;
}
.cid-t5932iCX2x .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5932iCX2x .container {
    flex-wrap: nowrap;
  }
}
.cid-t5932iCX2x .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5932iCX2x .dropdown-menu,
.cid-t5932iCX2x .navbar.opened {
  background: #ffffff !important;
}
.cid-t5932iCX2x .nav-item:focus,
.cid-t5932iCX2x .nav-link:focus {
  outline: none;
}
.cid-t5932iCX2x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5932iCX2x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5932iCX2x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5932iCX2x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5932iCX2x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5932iCX2x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5932iCX2x .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t5932iCX2x .navbar.opened {
  transition: all 0.3s;
}
.cid-t5932iCX2x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5932iCX2x .navbar .navbar-logo img {
  width: auto;
}
.cid-t5932iCX2x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5932iCX2x .navbar.collapsed {
  justify-content: center;
}
.cid-t5932iCX2x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5932iCX2x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5932iCX2x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t5932iCX2x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5932iCX2x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5932iCX2x .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-t5932iCX2x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5932iCX2x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5932iCX2x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t5932iCX2x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5932iCX2x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5932iCX2x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5932iCX2x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5932iCX2x .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-t5932iCX2x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5932iCX2x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5932iCX2x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5932iCX2x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5932iCX2x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5932iCX2x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5932iCX2x .navbar.navbar-short {
  min-height: 60px;
}
.cid-t5932iCX2x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5932iCX2x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5932iCX2x .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-t5932iCX2x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5932iCX2x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5932iCX2x .dropdown-item.active,
.cid-t5932iCX2x .dropdown-item:active {
  background-color: transparent;
}
.cid-t5932iCX2x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5932iCX2x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5932iCX2x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5932iCX2x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5932iCX2x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5932iCX2x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5932iCX2x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5932iCX2x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5932iCX2x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5932iCX2x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t5932iCX2x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5932iCX2x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5932iCX2x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5932iCX2x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5932iCX2x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5932iCX2x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5932iCX2x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5932iCX2x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5932iCX2x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5932iCX2x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5932iCX2x .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-t5932iCX2x .navbar {
    height: 70px;
  }
  .cid-t5932iCX2x .navbar.opened {
    height: auto;
  }
  .cid-t5932iCX2x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t40znrfXam {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t40xpAoB3r {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t40xpAoB3r .image-block {
  margin: auto;
}
.cid-t40xpAoB3r .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t40xpAoB3r .image-block {
    width: 100% !important;
  }
}
.cid-t40A6moYO4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t40A6moYO4 .mbr-text,
.cid-t40A6moYO4 .ornament {
  text-align: left;
}
.cid-t40ADCq53f {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t40ADCq53f .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t40ADCq53f .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t40ADCq53f .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t40ADCq53f .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t40ADCq53f .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t40ADCq53f .icon-focus {
  display: none;
}
.cid-t40ADCq53f .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t40ADCq53f ul {
  font-size: 0;
}
.cid-t40ADCq53f .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t40ADCq53f .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t40ADCq53f .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t40ADCq53f .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t40ADCq53f .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t40ADCq53f .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t40ADCq53f .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t40ADCq53f .btn:hover {
  background: transparent !important;
}
.cid-t40ADCq53f .btn:hover:before {
  background: transparent !important;
}
.cid-t40ADCq53f .btn:before {
  background-color: transparent !important;
}
.cid-t40ADCq53f .btn:focus {
  box-shadow: none;
}
.cid-t40ADCq53f .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlgmCEuHX1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgmCEuHX1 .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgmCEuHX1 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgmCEuHX1 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgmCEuHX1 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgmCEuHX1 .mbr-section-title {
  color: #000000;
}
.cid-tlgmCEuHX1 .mbr-section-subtitle {
  color: #000000;
}
.cid-t3CMhNYDD3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3CMhNYDD3 nav.navbar {
  position: fixed;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3CMhNYDD3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3CMhNYDD3 .dropdown-item:hover,
.cid-t3CMhNYDD3 .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t3CMhNYDD3 .dropdown-item:hover span {
  color: white;
}
.cid-t3CMhNYDD3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3CMhNYDD3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3CMhNYDD3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3CMhNYDD3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3CMhNYDD3 .nav-link {
  position: relative;
}
.cid-t3CMhNYDD3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3CMhNYDD3 .container {
    flex-wrap: nowrap;
  }
}
.cid-t3CMhNYDD3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3CMhNYDD3 .dropdown-menu,
.cid-t3CMhNYDD3 .navbar.opened {
  background: #ffffff !important;
}
.cid-t3CMhNYDD3 .nav-item:focus,
.cid-t3CMhNYDD3 .nav-link:focus {
  outline: none;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3CMhNYDD3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3CMhNYDD3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3CMhNYDD3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3CMhNYDD3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3CMhNYDD3 .navbar.opened {
  transition: all 0.3s;
}
.cid-t3CMhNYDD3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3CMhNYDD3 .navbar .navbar-logo img {
  width: auto;
}
.cid-t3CMhNYDD3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3CMhNYDD3 .navbar.collapsed {
  justify-content: center;
}
.cid-t3CMhNYDD3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3CMhNYDD3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3CMhNYDD3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t3CMhNYDD3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3CMhNYDD3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3CMhNYDD3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3CMhNYDD3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3CMhNYDD3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3CMhNYDD3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3CMhNYDD3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3CMhNYDD3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3CMhNYDD3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3CMhNYDD3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3CMhNYDD3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3CMhNYDD3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3CMhNYDD3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3CMhNYDD3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3CMhNYDD3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3CMhNYDD3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3CMhNYDD3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3CMhNYDD3 .dropdown-item.active,
.cid-t3CMhNYDD3 .dropdown-item:active {
  background-color: transparent;
}
.cid-t3CMhNYDD3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3CMhNYDD3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3CMhNYDD3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3CMhNYDD3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3CMhNYDD3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3CMhNYDD3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3CMhNYDD3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3CMhNYDD3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3CMhNYDD3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3CMhNYDD3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3CMhNYDD3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3CMhNYDD3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3CMhNYDD3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3CMhNYDD3 .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-t3CMhNYDD3 .navbar {
    height: 70px;
  }
  .cid-t3CMhNYDD3 .navbar.opened {
    height: auto;
  }
  .cid-t3CMhNYDD3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t5we4Gq17p {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5we4GXkQ7 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t5we4GXkQ7 .image-block {
  margin: auto;
}
.cid-t5we4GXkQ7 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t5we4GXkQ7 .image-block {
    width: 100% !important;
  }
}
.cid-t5we4HpLFU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5we4HpLFU .mbr-text,
.cid-t5we4HpLFU .ornament {
  text-align: left;
}
.cid-t5we4HRHVA {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t5we4HRHVA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t5we4HRHVA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5we4HRHVA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5we4HRHVA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t5we4HRHVA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t5we4HRHVA .icon-focus {
  display: none;
}
.cid-t5we4HRHVA .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t5we4HRHVA ul {
  font-size: 0;
}
.cid-t5we4HRHVA .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t5we4HRHVA .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t5we4HRHVA .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t5we4HRHVA .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t5we4HRHVA .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t5we4HRHVA .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t5we4HRHVA .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t5we4HRHVA .btn:hover {
  background: transparent !important;
}
.cid-t5we4HRHVA .btn:hover:before {
  background: transparent !important;
}
.cid-t5we4HRHVA .btn:before {
  background-color: transparent !important;
}
.cid-t5we4HRHVA .btn:focus {
  box-shadow: none;
}
.cid-t5we4HRHVA .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t5we4K0FsU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t5we4K0FsU nav.navbar {
  position: fixed;
}
.cid-t5we4K0FsU .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-t5we4K0FsU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5we4K0FsU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t5we4K0FsU .dropdown-item:hover,
.cid-t5we4K0FsU .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t5we4K0FsU .dropdown-item:hover span {
  color: white;
}
.cid-t5we4K0FsU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5we4K0FsU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5we4K0FsU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5we4K0FsU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5we4K0FsU .nav-link {
  position: relative;
}
.cid-t5we4K0FsU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5we4K0FsU .container {
    flex-wrap: nowrap;
  }
}
.cid-t5we4K0FsU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5we4K0FsU .dropdown-menu,
.cid-t5we4K0FsU .navbar.opened {
  background: #ffffff !important;
}
.cid-t5we4K0FsU .nav-item:focus,
.cid-t5we4K0FsU .nav-link:focus {
  outline: none;
}
.cid-t5we4K0FsU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5we4K0FsU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5we4K0FsU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5we4K0FsU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5we4K0FsU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5we4K0FsU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5we4K0FsU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t5we4K0FsU .navbar.opened {
  transition: all 0.3s;
}
.cid-t5we4K0FsU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5we4K0FsU .navbar .navbar-logo img {
  width: auto;
}
.cid-t5we4K0FsU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5we4K0FsU .navbar.collapsed {
  justify-content: center;
}
.cid-t5we4K0FsU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5we4K0FsU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5we4K0FsU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t5we4K0FsU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5we4K0FsU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5we4K0FsU .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-t5we4K0FsU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5we4K0FsU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5we4K0FsU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t5we4K0FsU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5we4K0FsU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5we4K0FsU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5we4K0FsU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5we4K0FsU .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-t5we4K0FsU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5we4K0FsU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5we4K0FsU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5we4K0FsU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5we4K0FsU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5we4K0FsU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5we4K0FsU .navbar.navbar-short {
  min-height: 60px;
}
.cid-t5we4K0FsU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5we4K0FsU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5we4K0FsU .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-t5we4K0FsU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5we4K0FsU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5we4K0FsU .dropdown-item.active,
.cid-t5we4K0FsU .dropdown-item:active {
  background-color: transparent;
}
.cid-t5we4K0FsU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5we4K0FsU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5we4K0FsU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5we4K0FsU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5we4K0FsU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5we4K0FsU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5we4K0FsU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5we4K0FsU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5we4K0FsU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5we4K0FsU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t5we4K0FsU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5we4K0FsU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5we4K0FsU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5we4K0FsU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5we4K0FsU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5we4K0FsU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5we4K0FsU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5we4K0FsU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5we4K0FsU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5we4K0FsU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5we4K0FsU .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-t5we4K0FsU .navbar {
    height: 70px;
  }
  .cid-t5we4K0FsU .navbar.opened {
    height: auto;
  }
  .cid-t5we4K0FsU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgmQQ0gZo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgmQQ0gZo .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgmQQ0gZo form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgmQQ0gZo form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgmQQ0gZo form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgmQQ0gZo .mbr-section-title {
  color: #000000;
}
.cid-tlgmQQ0gZo .mbr-section-subtitle {
  color: #000000;
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t4yrShBtoZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4yrSi6MBV {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t4yrSi6MBV .image-block {
  margin: auto;
}
.cid-t4yrSi6MBV .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t4yrSi6MBV .image-block {
    width: 100% !important;
  }
}
.cid-t4yrSixQ1U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4yrSixQ1U .mbr-text,
.cid-t4yrSixQ1U .ornament {
  text-align: left;
}
.cid-t4yvbO8eKj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-t4yvbO8eKj .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t4yvbO8eKj .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t4yvbO8eKj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t4yvbO8eKj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t4yvbO8eKj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t4yvbO8eKj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t4yvbO8eKj .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t4yvbO8eKj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t4yvbO8eKj .mbr-text,
.cid-t4yvbO8eKj .mbr-section-btn {
  text-align: center;
}
.cid-t4yvbO8eKj .card-title {
  text-align: center;
}
.cid-t4yrSiWUiN {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t4yrSiWUiN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t4yrSiWUiN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4yrSiWUiN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t4yrSiWUiN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t4yrSiWUiN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t4yrSiWUiN .icon-focus {
  display: none;
}
.cid-t4yrSiWUiN .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t4yrSiWUiN ul {
  font-size: 0;
}
.cid-t4yrSiWUiN .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t4yrSiWUiN .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t4yrSiWUiN .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t4yrSiWUiN .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t4yrSiWUiN .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t4yrSiWUiN .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t4yrSiWUiN .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t4yrSiWUiN .btn:hover {
  background: transparent !important;
}
.cid-t4yrSiWUiN .btn:hover:before {
  background: transparent !important;
}
.cid-t4yrSiWUiN .btn:before {
  background-color: transparent !important;
}
.cid-t4yrSiWUiN .btn:focus {
  box-shadow: none;
}
.cid-t4yrSiWUiN .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t4yrSl2b2f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4yrSl2b2f nav.navbar {
  position: fixed;
}
.cid-t4yrSl2b2f .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-t4yrSl2b2f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4yrSl2b2f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4yrSl2b2f .dropdown-item:hover,
.cid-t4yrSl2b2f .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t4yrSl2b2f .dropdown-item:hover span {
  color: white;
}
.cid-t4yrSl2b2f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4yrSl2b2f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4yrSl2b2f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4yrSl2b2f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4yrSl2b2f .nav-link {
  position: relative;
}
.cid-t4yrSl2b2f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t4yrSl2b2f .container {
    flex-wrap: nowrap;
  }
}
.cid-t4yrSl2b2f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t4yrSl2b2f .dropdown-menu,
.cid-t4yrSl2b2f .navbar.opened {
  background: #ffffff !important;
}
.cid-t4yrSl2b2f .nav-item:focus,
.cid-t4yrSl2b2f .nav-link:focus {
  outline: none;
}
.cid-t4yrSl2b2f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4yrSl2b2f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4yrSl2b2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4yrSl2b2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4yrSl2b2f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4yrSl2b2f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4yrSl2b2f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4yrSl2b2f .navbar.opened {
  transition: all 0.3s;
}
.cid-t4yrSl2b2f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4yrSl2b2f .navbar .navbar-logo img {
  width: auto;
}
.cid-t4yrSl2b2f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4yrSl2b2f .navbar.collapsed {
  justify-content: center;
}
.cid-t4yrSl2b2f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4yrSl2b2f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4yrSl2b2f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t4yrSl2b2f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4yrSl2b2f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4yrSl2b2f .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-t4yrSl2b2f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4yrSl2b2f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4yrSl2b2f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4yrSl2b2f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4yrSl2b2f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4yrSl2b2f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4yrSl2b2f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4yrSl2b2f .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-t4yrSl2b2f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4yrSl2b2f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4yrSl2b2f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4yrSl2b2f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4yrSl2b2f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4yrSl2b2f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4yrSl2b2f .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4yrSl2b2f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4yrSl2b2f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4yrSl2b2f .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-t4yrSl2b2f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4yrSl2b2f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4yrSl2b2f .dropdown-item.active,
.cid-t4yrSl2b2f .dropdown-item:active {
  background-color: transparent;
}
.cid-t4yrSl2b2f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4yrSl2b2f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4yrSl2b2f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4yrSl2b2f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4yrSl2b2f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4yrSl2b2f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4yrSl2b2f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4yrSl2b2f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4yrSl2b2f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4yrSl2b2f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4yrSl2b2f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4yrSl2b2f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4yrSl2b2f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4yrSl2b2f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4yrSl2b2f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4yrSl2b2f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4yrSl2b2f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4yrSl2b2f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4yrSl2b2f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4yrSl2b2f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4yrSl2b2f .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-t4yrSl2b2f .navbar {
    height: 70px;
  }
  .cid-t4yrSl2b2f .navbar.opened {
    height: auto;
  }
  .cid-t4yrSl2b2f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgnqUMIGE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgnqUMIGE .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgnqUMIGE form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgnqUMIGE form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgnqUMIGE form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgnqUMIGE .mbr-section-title {
  color: #000000;
}
.cid-tlgnqUMIGE .mbr-section-subtitle {
  color: #000000;
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t4hLCYc8gU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hLCYRceK {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t4hLCYRceK .image-block {
  margin: auto;
}
.cid-t4hLCYRceK .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t4hLCYRceK .image-block {
    width: 100% !important;
  }
}
.cid-t4hLCZqFuG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4hLCZqFuG .mbr-text,
.cid-t4hLCZqFuG .ornament {
  text-align: left;
}
.cid-t4hLCZTZXv {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t4hLCZTZXv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t4hLCZTZXv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4hLCZTZXv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t4hLCZTZXv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t4hLCZTZXv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t4hLCZTZXv .icon-focus {
  display: none;
}
.cid-t4hLCZTZXv .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t4hLCZTZXv ul {
  font-size: 0;
}
.cid-t4hLCZTZXv .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t4hLCZTZXv .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t4hLCZTZXv .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t4hLCZTZXv .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t4hLCZTZXv .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t4hLCZTZXv .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t4hLCZTZXv .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t4hLCZTZXv .btn:hover {
  background: transparent !important;
}
.cid-t4hLCZTZXv .btn:hover:before {
  background: transparent !important;
}
.cid-t4hLCZTZXv .btn:before {
  background-color: transparent !important;
}
.cid-t4hLCZTZXv .btn:focus {
  box-shadow: none;
}
.cid-t4hLCZTZXv .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t4hLD25t5M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4hLD25t5M nav.navbar {
  position: fixed;
}
.cid-t4hLD25t5M .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-t4hLD25t5M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4hLD25t5M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4hLD25t5M .dropdown-item:hover,
.cid-t4hLD25t5M .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t4hLD25t5M .dropdown-item:hover span {
  color: white;
}
.cid-t4hLD25t5M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4hLD25t5M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4hLD25t5M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4hLD25t5M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4hLD25t5M .nav-link {
  position: relative;
}
.cid-t4hLD25t5M .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t4hLD25t5M .container {
    flex-wrap: nowrap;
  }
}
.cid-t4hLD25t5M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t4hLD25t5M .dropdown-menu,
.cid-t4hLD25t5M .navbar.opened {
  background: #ffffff !important;
}
.cid-t4hLD25t5M .nav-item:focus,
.cid-t4hLD25t5M .nav-link:focus {
  outline: none;
}
.cid-t4hLD25t5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4hLD25t5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4hLD25t5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4hLD25t5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4hLD25t5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4hLD25t5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4hLD25t5M .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4hLD25t5M .navbar.opened {
  transition: all 0.3s;
}
.cid-t4hLD25t5M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4hLD25t5M .navbar .navbar-logo img {
  width: auto;
}
.cid-t4hLD25t5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4hLD25t5M .navbar.collapsed {
  justify-content: center;
}
.cid-t4hLD25t5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4hLD25t5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4hLD25t5M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t4hLD25t5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4hLD25t5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4hLD25t5M .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-t4hLD25t5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4hLD25t5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4hLD25t5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4hLD25t5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4hLD25t5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4hLD25t5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4hLD25t5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4hLD25t5M .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-t4hLD25t5M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4hLD25t5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4hLD25t5M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4hLD25t5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4hLD25t5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4hLD25t5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4hLD25t5M .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4hLD25t5M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4hLD25t5M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4hLD25t5M .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-t4hLD25t5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4hLD25t5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4hLD25t5M .dropdown-item.active,
.cid-t4hLD25t5M .dropdown-item:active {
  background-color: transparent;
}
.cid-t4hLD25t5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4hLD25t5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4hLD25t5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4hLD25t5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4hLD25t5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4hLD25t5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4hLD25t5M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4hLD25t5M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4hLD25t5M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4hLD25t5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4hLD25t5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4hLD25t5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4hLD25t5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4hLD25t5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4hLD25t5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4hLD25t5M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4hLD25t5M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4hLD25t5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4hLD25t5M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4hLD25t5M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4hLD25t5M .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-t4hLD25t5M .navbar {
    height: 70px;
  }
  .cid-t4hLD25t5M .navbar.opened {
    height: auto;
  }
  .cid-t4hLD25t5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgnyL49bJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgnyL49bJ .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgnyL49bJ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgnyL49bJ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgnyL49bJ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgnyL49bJ .mbr-section-title {
  color: #000000;
}
.cid-tlgnyL49bJ .mbr-section-subtitle {
  color: #000000;
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t4hyn5ZuAn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hyn6xPAj {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t4hyn6xPAj .image-block {
  margin: auto;
}
.cid-t4hyn6xPAj .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t4hyn6xPAj .image-block {
    width: 100% !important;
  }
}
.cid-t4hyn71iOS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4hyn71iOS .mbr-text,
.cid-t4hyn71iOS .ornament {
  text-align: left;
}
.cid-t4hyn7uhFz {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t4hyn7uhFz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t4hyn7uhFz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4hyn7uhFz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t4hyn7uhFz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t4hyn7uhFz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t4hyn7uhFz .icon-focus {
  display: none;
}
.cid-t4hyn7uhFz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t4hyn7uhFz ul {
  font-size: 0;
}
.cid-t4hyn7uhFz .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t4hyn7uhFz .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t4hyn7uhFz .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t4hyn7uhFz .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t4hyn7uhFz .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t4hyn7uhFz .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t4hyn7uhFz .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t4hyn7uhFz .btn:hover {
  background: transparent !important;
}
.cid-t4hyn7uhFz .btn:hover:before {
  background: transparent !important;
}
.cid-t4hyn7uhFz .btn:before {
  background-color: transparent !important;
}
.cid-t4hyn7uhFz .btn:focus {
  box-shadow: none;
}
.cid-t4hyn7uhFz .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlgnEnOnlA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgnEnOnlA .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgnEnOnlA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgnEnOnlA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgnEnOnlA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgnEnOnlA .mbr-section-title {
  color: #000000;
}
.cid-tlgnEnOnlA .mbr-section-subtitle {
  color: #000000;
}
.cid-t4hyn9IKky {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4hyn9IKky nav.navbar {
  position: fixed;
}
.cid-t4hyn9IKky .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-t4hyn9IKky .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4hyn9IKky .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4hyn9IKky .dropdown-item:hover,
.cid-t4hyn9IKky .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t4hyn9IKky .dropdown-item:hover span {
  color: white;
}
.cid-t4hyn9IKky .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4hyn9IKky .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4hyn9IKky .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4hyn9IKky .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4hyn9IKky .nav-link {
  position: relative;
}
.cid-t4hyn9IKky .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t4hyn9IKky .container {
    flex-wrap: nowrap;
  }
}
.cid-t4hyn9IKky .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t4hyn9IKky .dropdown-menu,
.cid-t4hyn9IKky .navbar.opened {
  background: #ffffff !important;
}
.cid-t4hyn9IKky .nav-item:focus,
.cid-t4hyn9IKky .nav-link:focus {
  outline: none;
}
.cid-t4hyn9IKky .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4hyn9IKky .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4hyn9IKky .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4hyn9IKky .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4hyn9IKky .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4hyn9IKky .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4hyn9IKky .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4hyn9IKky .navbar.opened {
  transition: all 0.3s;
}
.cid-t4hyn9IKky .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4hyn9IKky .navbar .navbar-logo img {
  width: auto;
}
.cid-t4hyn9IKky .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4hyn9IKky .navbar.collapsed {
  justify-content: center;
}
.cid-t4hyn9IKky .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4hyn9IKky .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4hyn9IKky .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t4hyn9IKky .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4hyn9IKky .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4hyn9IKky .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-t4hyn9IKky .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4hyn9IKky .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4hyn9IKky .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4hyn9IKky .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4hyn9IKky .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4hyn9IKky .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4hyn9IKky .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4hyn9IKky .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-t4hyn9IKky .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4hyn9IKky .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4hyn9IKky .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4hyn9IKky .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4hyn9IKky .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4hyn9IKky .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4hyn9IKky .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4hyn9IKky .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4hyn9IKky .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4hyn9IKky .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-t4hyn9IKky .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4hyn9IKky .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4hyn9IKky .dropdown-item.active,
.cid-t4hyn9IKky .dropdown-item:active {
  background-color: transparent;
}
.cid-t4hyn9IKky .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4hyn9IKky .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4hyn9IKky .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4hyn9IKky .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4hyn9IKky .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4hyn9IKky .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4hyn9IKky ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4hyn9IKky .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4hyn9IKky button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4hyn9IKky button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4hyn9IKky button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4hyn9IKky button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4hyn9IKky button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4hyn9IKky button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4hyn9IKky nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4hyn9IKky nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4hyn9IKky nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4hyn9IKky nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4hyn9IKky .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4hyn9IKky a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4hyn9IKky .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-t4hyn9IKky .navbar {
    height: 70px;
  }
  .cid-t4hyn9IKky .navbar.opened {
    height: auto;
  }
  .cid-t4hyn9IKky .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t5Hd2PC1qA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5Hd2Q83zn {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t5Hd2Q83zn .image-block {
  margin: auto;
}
.cid-t5Hd2Q83zn .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t5Hd2Q83zn .image-block {
    width: 100% !important;
  }
}
.cid-t5Hd2QzRvi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5Hd2QzRvi .mbr-text,
.cid-t5Hd2QzRvi .ornament {
  text-align: left;
}
.cid-t5Hd2QZPue {
  padding-top: 45px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t5Hd2QZPue .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t5Hd2QZPue .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5Hd2QZPue .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5Hd2QZPue .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t5Hd2QZPue .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #83b840;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t5Hd2QZPue .icon-focus {
  display: none;
}
.cid-t5Hd2QZPue .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t5Hd2QZPue ul {
  font-size: 0;
}
.cid-t5Hd2QZPue .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-t5Hd2QZPue .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t5Hd2QZPue .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f05555, #444444);
}
.cid-t5Hd2QZPue .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t5Hd2QZPue .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t5Hd2QZPue .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t5Hd2QZPue .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t5Hd2QZPue .btn:hover {
  background: transparent !important;
}
.cid-t5Hd2QZPue .btn:hover:before {
  background: transparent !important;
}
.cid-t5Hd2QZPue .btn:before {
  background-color: transparent !important;
}
.cid-t5Hd2QZPue .btn:focus {
  box-shadow: none;
}
.cid-t5Hd2QZPue .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-t5Hd2Tle28 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t5Hd2Tle28 nav.navbar {
  position: fixed;
}
.cid-t5Hd2Tle28 .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-t5Hd2Tle28 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5Hd2Tle28 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t5Hd2Tle28 .dropdown-item:hover,
.cid-t5Hd2Tle28 .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t5Hd2Tle28 .dropdown-item:hover span {
  color: white;
}
.cid-t5Hd2Tle28 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5Hd2Tle28 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5Hd2Tle28 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5Hd2Tle28 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5Hd2Tle28 .nav-link {
  position: relative;
}
.cid-t5Hd2Tle28 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5Hd2Tle28 .container {
    flex-wrap: nowrap;
  }
}
.cid-t5Hd2Tle28 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5Hd2Tle28 .dropdown-menu,
.cid-t5Hd2Tle28 .navbar.opened {
  background: #ffffff !important;
}
.cid-t5Hd2Tle28 .nav-item:focus,
.cid-t5Hd2Tle28 .nav-link:focus {
  outline: none;
}
.cid-t5Hd2Tle28 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5Hd2Tle28 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5Hd2Tle28 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5Hd2Tle28 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5Hd2Tle28 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5Hd2Tle28 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5Hd2Tle28 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t5Hd2Tle28 .navbar.opened {
  transition: all 0.3s;
}
.cid-t5Hd2Tle28 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5Hd2Tle28 .navbar .navbar-logo img {
  width: auto;
}
.cid-t5Hd2Tle28 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5Hd2Tle28 .navbar.collapsed {
  justify-content: center;
}
.cid-t5Hd2Tle28 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5Hd2Tle28 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5Hd2Tle28 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t5Hd2Tle28 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5Hd2Tle28 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5Hd2Tle28 .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-t5Hd2Tle28 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5Hd2Tle28 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5Hd2Tle28 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t5Hd2Tle28 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5Hd2Tle28 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5Hd2Tle28 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5Hd2Tle28 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5Hd2Tle28 .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-t5Hd2Tle28 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5Hd2Tle28 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5Hd2Tle28 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5Hd2Tle28 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5Hd2Tle28 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5Hd2Tle28 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5Hd2Tle28 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t5Hd2Tle28 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5Hd2Tle28 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5Hd2Tle28 .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-t5Hd2Tle28 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5Hd2Tle28 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5Hd2Tle28 .dropdown-item.active,
.cid-t5Hd2Tle28 .dropdown-item:active {
  background-color: transparent;
}
.cid-t5Hd2Tle28 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5Hd2Tle28 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5Hd2Tle28 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5Hd2Tle28 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5Hd2Tle28 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5Hd2Tle28 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5Hd2Tle28 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5Hd2Tle28 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5Hd2Tle28 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5Hd2Tle28 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t5Hd2Tle28 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5Hd2Tle28 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5Hd2Tle28 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5Hd2Tle28 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5Hd2Tle28 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5Hd2Tle28 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5Hd2Tle28 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5Hd2Tle28 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5Hd2Tle28 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5Hd2Tle28 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5Hd2Tle28 .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-t5Hd2Tle28 .navbar {
    height: 70px;
  }
  .cid-t5Hd2Tle28 .navbar.opened {
    height: auto;
  }
  .cid-t5Hd2Tle28 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgnMX1Ipp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgnMX1Ipp .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgnMX1Ipp form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgnMX1Ipp form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgnMX1Ipp form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgnMX1Ipp .mbr-section-title {
  color: #000000;
}
.cid-tlgnMX1Ipp .mbr-section-subtitle {
  color: #000000;
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t4aYAYEKS9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4aYAZ9ocf {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t4aYAZ9ocf .image-block {
  margin: auto;
}
.cid-t4aYAZ9ocf .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t4aYAZ9ocf .image-block {
    width: 100% !important;
  }
}
.cid-t4aYAZztN5 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t4aYAZztN5 .mbr-text,
.cid-t4aYAZztN5 .ornament {
  text-align: left;
}
.cid-t4aYB1b0r8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4aYB1b0r8 nav.navbar {
  position: fixed;
}
.cid-t4aYB1b0r8 .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-t4aYB1b0r8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4aYB1b0r8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4aYB1b0r8 .dropdown-item:hover,
.cid-t4aYB1b0r8 .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t4aYB1b0r8 .dropdown-item:hover span {
  color: white;
}
.cid-t4aYB1b0r8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4aYB1b0r8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4aYB1b0r8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4aYB1b0r8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4aYB1b0r8 .nav-link {
  position: relative;
}
.cid-t4aYB1b0r8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t4aYB1b0r8 .container {
    flex-wrap: nowrap;
  }
}
.cid-t4aYB1b0r8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t4aYB1b0r8 .dropdown-menu,
.cid-t4aYB1b0r8 .navbar.opened {
  background: #ffffff !important;
}
.cid-t4aYB1b0r8 .nav-item:focus,
.cid-t4aYB1b0r8 .nav-link:focus {
  outline: none;
}
.cid-t4aYB1b0r8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4aYB1b0r8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4aYB1b0r8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4aYB1b0r8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4aYB1b0r8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4aYB1b0r8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4aYB1b0r8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4aYB1b0r8 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4aYB1b0r8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4aYB1b0r8 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4aYB1b0r8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4aYB1b0r8 .navbar.collapsed {
  justify-content: center;
}
.cid-t4aYB1b0r8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4aYB1b0r8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4aYB1b0r8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t4aYB1b0r8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4aYB1b0r8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4aYB1b0r8 .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-t4aYB1b0r8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4aYB1b0r8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4aYB1b0r8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4aYB1b0r8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4aYB1b0r8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4aYB1b0r8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4aYB1b0r8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4aYB1b0r8 .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-t4aYB1b0r8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4aYB1b0r8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4aYB1b0r8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4aYB1b0r8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4aYB1b0r8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4aYB1b0r8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4aYB1b0r8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4aYB1b0r8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4aYB1b0r8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4aYB1b0r8 .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-t4aYB1b0r8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4aYB1b0r8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4aYB1b0r8 .dropdown-item.active,
.cid-t4aYB1b0r8 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4aYB1b0r8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4aYB1b0r8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4aYB1b0r8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4aYB1b0r8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4aYB1b0r8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4aYB1b0r8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4aYB1b0r8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4aYB1b0r8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4aYB1b0r8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4aYB1b0r8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4aYB1b0r8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4aYB1b0r8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4aYB1b0r8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4aYB1b0r8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4aYB1b0r8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4aYB1b0r8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4aYB1b0r8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4aYB1b0r8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4aYB1b0r8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4aYB1b0r8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4aYB1b0r8 .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-t4aYB1b0r8 .navbar {
    height: 70px;
  }
  .cid-t4aYB1b0r8 .navbar.opened {
    height: auto;
  }
  .cid-t4aYB1b0r8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgofsbOBL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgofsbOBL .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgofsbOBL form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgofsbOBL form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgofsbOBL form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgofsbOBL .mbr-section-title {
  color: #000000;
}
.cid-tlgofsbOBL .mbr-section-subtitle {
  color: #000000;
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t47xDkSbfy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t47xDlI5hK {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t47xDlI5hK .image-block {
  margin: auto;
}
.cid-t47xDlI5hK .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t47xDlI5hK .image-block {
    width: 100% !important;
  }
}
.cid-t47xDmaKb4 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t47xDmaKb4 .mbr-text,
.cid-t47xDmaKb4 .ornament {
  text-align: left;
}
.cid-t47xDoO7jG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t47xDoO7jG nav.navbar {
  position: fixed;
}
.cid-t47xDoO7jG .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-t47xDoO7jG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t47xDoO7jG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47xDoO7jG .dropdown-item:hover,
.cid-t47xDoO7jG .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t47xDoO7jG .dropdown-item:hover span {
  color: white;
}
.cid-t47xDoO7jG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t47xDoO7jG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t47xDoO7jG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t47xDoO7jG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t47xDoO7jG .nav-link {
  position: relative;
}
.cid-t47xDoO7jG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t47xDoO7jG .container {
    flex-wrap: nowrap;
  }
}
.cid-t47xDoO7jG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t47xDoO7jG .dropdown-menu,
.cid-t47xDoO7jG .navbar.opened {
  background: #ffffff !important;
}
.cid-t47xDoO7jG .nav-item:focus,
.cid-t47xDoO7jG .nav-link:focus {
  outline: none;
}
.cid-t47xDoO7jG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t47xDoO7jG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t47xDoO7jG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t47xDoO7jG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47xDoO7jG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t47xDoO7jG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t47xDoO7jG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t47xDoO7jG .navbar.opened {
  transition: all 0.3s;
}
.cid-t47xDoO7jG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t47xDoO7jG .navbar .navbar-logo img {
  width: auto;
}
.cid-t47xDoO7jG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t47xDoO7jG .navbar.collapsed {
  justify-content: center;
}
.cid-t47xDoO7jG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t47xDoO7jG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t47xDoO7jG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t47xDoO7jG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t47xDoO7jG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t47xDoO7jG .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-t47xDoO7jG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t47xDoO7jG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t47xDoO7jG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t47xDoO7jG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t47xDoO7jG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t47xDoO7jG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t47xDoO7jG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t47xDoO7jG .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-t47xDoO7jG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t47xDoO7jG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t47xDoO7jG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t47xDoO7jG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t47xDoO7jG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t47xDoO7jG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t47xDoO7jG .navbar.navbar-short {
  min-height: 60px;
}
.cid-t47xDoO7jG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t47xDoO7jG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t47xDoO7jG .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-t47xDoO7jG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t47xDoO7jG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t47xDoO7jG .dropdown-item.active,
.cid-t47xDoO7jG .dropdown-item:active {
  background-color: transparent;
}
.cid-t47xDoO7jG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t47xDoO7jG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t47xDoO7jG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t47xDoO7jG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t47xDoO7jG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t47xDoO7jG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t47xDoO7jG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t47xDoO7jG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t47xDoO7jG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t47xDoO7jG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t47xDoO7jG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t47xDoO7jG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t47xDoO7jG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t47xDoO7jG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t47xDoO7jG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t47xDoO7jG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t47xDoO7jG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t47xDoO7jG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t47xDoO7jG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t47xDoO7jG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t47xDoO7jG .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-t47xDoO7jG .navbar {
    height: 70px;
  }
  .cid-t47xDoO7jG .navbar.opened {
    height: auto;
  }
  .cid-t47xDoO7jG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgoo4zj2R {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgoo4zj2R .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgoo4zj2R form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgoo4zj2R form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgoo4zj2R form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgoo4zj2R .mbr-section-title {
  color: #000000;
}
.cid-tlgoo4zj2R .mbr-section-subtitle {
  color: #000000;
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-t47ERxDcIQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t47ERyiH3t {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-t47ERyiH3t .image-block {
  margin: auto;
}
.cid-t47ERyiH3t .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t47ERyiH3t .image-block {
    width: 100% !important;
  }
}
.cid-t47ERyO8ee {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t47ERyO8ee .mbr-text,
.cid-t47ERyO8ee .ornament {
  text-align: left;
}
.cid-tlgo04lEZG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kontaktzid-2000x1136.jpg");
}
.cid-tlgo04lEZG .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.2;
}
.cid-tlgo04lEZG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlgo04lEZG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tlgo04lEZG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tlgo04lEZG .mbr-section-title {
  color: #000000;
}
.cid-tlgo04lEZG .mbr-section-subtitle {
  color: #000000;
}
.cid-t47ERBg8Yl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t47ERBg8Yl nav.navbar {
  position: fixed;
}
.cid-t47ERBg8Yl .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-t47ERBg8Yl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t47ERBg8Yl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47ERBg8Yl .dropdown-item:hover,
.cid-t47ERBg8Yl .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-t47ERBg8Yl .dropdown-item:hover span {
  color: white;
}
.cid-t47ERBg8Yl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t47ERBg8Yl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t47ERBg8Yl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t47ERBg8Yl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t47ERBg8Yl .nav-link {
  position: relative;
}
.cid-t47ERBg8Yl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t47ERBg8Yl .container {
    flex-wrap: nowrap;
  }
}
.cid-t47ERBg8Yl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t47ERBg8Yl .dropdown-menu,
.cid-t47ERBg8Yl .navbar.opened {
  background: #ffffff !important;
}
.cid-t47ERBg8Yl .nav-item:focus,
.cid-t47ERBg8Yl .nav-link:focus {
  outline: none;
}
.cid-t47ERBg8Yl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t47ERBg8Yl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t47ERBg8Yl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t47ERBg8Yl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47ERBg8Yl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t47ERBg8Yl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t47ERBg8Yl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t47ERBg8Yl .navbar.opened {
  transition: all 0.3s;
}
.cid-t47ERBg8Yl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t47ERBg8Yl .navbar .navbar-logo img {
  width: auto;
}
.cid-t47ERBg8Yl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t47ERBg8Yl .navbar.collapsed {
  justify-content: center;
}
.cid-t47ERBg8Yl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t47ERBg8Yl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t47ERBg8Yl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-t47ERBg8Yl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t47ERBg8Yl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t47ERBg8Yl .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-t47ERBg8Yl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t47ERBg8Yl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t47ERBg8Yl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t47ERBg8Yl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t47ERBg8Yl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t47ERBg8Yl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t47ERBg8Yl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t47ERBg8Yl .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-t47ERBg8Yl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t47ERBg8Yl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t47ERBg8Yl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t47ERBg8Yl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t47ERBg8Yl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t47ERBg8Yl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t47ERBg8Yl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t47ERBg8Yl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t47ERBg8Yl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t47ERBg8Yl .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-t47ERBg8Yl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t47ERBg8Yl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t47ERBg8Yl .dropdown-item.active,
.cid-t47ERBg8Yl .dropdown-item:active {
  background-color: transparent;
}
.cid-t47ERBg8Yl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t47ERBg8Yl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t47ERBg8Yl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t47ERBg8Yl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t47ERBg8Yl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t47ERBg8Yl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t47ERBg8Yl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t47ERBg8Yl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t47ERBg8Yl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t47ERBg8Yl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t47ERBg8Yl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t47ERBg8Yl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t47ERBg8Yl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t47ERBg8Yl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t47ERBg8Yl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t47ERBg8Yl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t47ERBg8Yl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t47ERBg8Yl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t47ERBg8Yl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t47ERBg8Yl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t47ERBg8Yl .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-t47ERBg8Yl .navbar {
    height: 70px;
  }
  .cid-t47ERBg8Yl .navbar.opened {
    height: auto;
  }
  .cid-t47ERBg8Yl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlmF70C0rQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlmF70C0rQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlmF70C0rQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlmF70C0rQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlmF70C0rQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlmF70C0rQ .row .foot-menu li p {
  margin: 0;
}
.cid-tlmF70C0rQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlmF70C0rQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlmF70C0rQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlmF70C0rQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlmF70C0rQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlmF70C0rQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlmF70C0rQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlmF70C0rQ .row .row-copirayt p {
  width: 100%;
}
.cid-tlmF70C0rQ .row .mbr-text {
  color: #f05555;
}
.cid-tlsLoP9lPL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlsLoPQKCe {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tlsLoPQKCe .mbr-text,
.cid-tlsLoPQKCe .ornament {
  text-align: left;
}
.cid-tlsLoV19rZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlsLoV19rZ nav.navbar {
  position: fixed;
}
.cid-tlsLoV19rZ .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-tlsLoV19rZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlsLoV19rZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlsLoV19rZ .dropdown-item:hover,
.cid-tlsLoV19rZ .dropdown-item:focus {
  background: #f05555 !important;
  color: white !important;
}
.cid-tlsLoV19rZ .dropdown-item:hover span {
  color: white;
}
.cid-tlsLoV19rZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlsLoV19rZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlsLoV19rZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlsLoV19rZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlsLoV19rZ .nav-link {
  position: relative;
}
.cid-tlsLoV19rZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlsLoV19rZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tlsLoV19rZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlsLoV19rZ .dropdown-menu,
.cid-tlsLoV19rZ .navbar.opened {
  background: #ffffff !important;
}
.cid-tlsLoV19rZ .nav-item:focus,
.cid-tlsLoV19rZ .nav-link:focus {
  outline: none;
}
.cid-tlsLoV19rZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlsLoV19rZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlsLoV19rZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlsLoV19rZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlsLoV19rZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlsLoV19rZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlsLoV19rZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tlsLoV19rZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tlsLoV19rZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlsLoV19rZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tlsLoV19rZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlsLoV19rZ .navbar.collapsed {
  justify-content: center;
}
.cid-tlsLoV19rZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlsLoV19rZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlsLoV19rZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tlsLoV19rZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlsLoV19rZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlsLoV19rZ .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-tlsLoV19rZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlsLoV19rZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlsLoV19rZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlsLoV19rZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlsLoV19rZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlsLoV19rZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlsLoV19rZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlsLoV19rZ .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-tlsLoV19rZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlsLoV19rZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlsLoV19rZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlsLoV19rZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlsLoV19rZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlsLoV19rZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tlsLoV19rZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlsLoV19rZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlsLoV19rZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlsLoV19rZ .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-tlsLoV19rZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlsLoV19rZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlsLoV19rZ .dropdown-item.active,
.cid-tlsLoV19rZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tlsLoV19rZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlsLoV19rZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlsLoV19rZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlsLoV19rZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tlsLoV19rZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlsLoV19rZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlsLoV19rZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlsLoV19rZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlsLoV19rZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlsLoV19rZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlsLoV19rZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlsLoV19rZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlsLoV19rZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlsLoV19rZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlsLoV19rZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlsLoV19rZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlsLoV19rZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlsLoV19rZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlsLoV19rZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlsLoV19rZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlsLoV19rZ .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-tlsLoV19rZ .navbar {
    height: 70px;
  }
  .cid-tlsLoV19rZ .navbar.opened {
    height: auto;
  }
  .cid-tlsLoV19rZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlsLoVRCoq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tlsLoVRCoq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlsLoVRCoq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlsLoVRCoq .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlsLoVRCoq .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlsLoVRCoq .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlsLoVRCoq .row .foot-menu li p {
  margin: 0;
}
.cid-tlsLoVRCoq .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlsLoVRCoq .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlsLoVRCoq .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlsLoVRCoq .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlsLoVRCoq .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlsLoVRCoq .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlsLoVRCoq .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlsLoVRCoq .row .row-copirayt p {
  width: 100%;
}
.cid-tlsLoVRCoq .row .mbr-text {
  color: #f05555;
}
