body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCHW5SHqL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFCHW5SHqL nav.navbar {
  position: fixed;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCHW5SHqL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCHW5SHqL .dropdown-item:hover,
.cid-sFCHW5SHqL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFCHW5SHqL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCHW5SHqL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCHW5SHqL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCHW5SHqL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCHW5SHqL .nav-link {
  position: relative;
}
.cid-sFCHW5SHqL .container {
  display: flex;
  margin: auto;
}
.cid-sFCHW5SHqL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCHW5SHqL .dropdown-menu,
.cid-sFCHW5SHqL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFCHW5SHqL .nav-item:focus,
.cid-sFCHW5SHqL .nav-link:focus {
  outline: none;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCHW5SHqL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCHW5SHqL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCHW5SHqL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCHW5SHqL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCHW5SHqL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCHW5SHqL .navbar.collapsed {
  justify-content: center;
}
.cid-sFCHW5SHqL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCHW5SHqL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCHW5SHqL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCHW5SHqL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCHW5SHqL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCHW5SHqL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCHW5SHqL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCHW5SHqL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCHW5SHqL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCHW5SHqL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCHW5SHqL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCHW5SHqL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCHW5SHqL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCHW5SHqL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCHW5SHqL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCHW5SHqL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCHW5SHqL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCHW5SHqL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCHW5SHqL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCHW5SHqL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCHW5SHqL .dropdown-item.active,
.cid-sFCHW5SHqL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCHW5SHqL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCHW5SHqL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCHW5SHqL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCHW5SHqL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFCHW5SHqL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCHW5SHqL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCHW5SHqL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCHW5SHqL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCHW5SHqL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCHW5SHqL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar {
    height: 70px;
  }
  .cid-sFCHW5SHqL .navbar.opened {
    height: auto;
  }
  .cid-sFCHW5SHqL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCZofaVTV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sFCZofaVTV .carousel {
  height: 800px;
}
.cid-sFCZofaVTV .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sFCZofaVTV .carousel-item,
.cid-sFCZofaVTV .carousel-inner {
  height: 100%;
}
.cid-sFCZofaVTV .mbr-overlay {
  z-index: 1;
}
.cid-sFCZofaVTV .carousel-caption {
  bottom: 40px;
}
.cid-sFCZofaVTV .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sFCZofaVTV .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sFCZofaVTV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sFCZofaVTV .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sFCZofaVTV .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sFCZofaVTV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sFCZofaVTV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sFCZofaVTV .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sFCZofaVTV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFCZofaVTV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFCZofaVTV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sFCZofaVTV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sFCZofaVTV .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sFCZofaVTV .carousel-indicators li.active,
.cid-sFCZofaVTV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sFCZofaVTV .carousel-indicators li::after,
.cid-sFCZofaVTV .carousel-indicators li::before {
  content: none;
}
.cid-sFCZofaVTV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sFCZofaVTV .carousel-indicators {
    display: none !important;
  }
}
.cid-sFCJjMoKrJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sFCJjMoKrJ .row {
  flex-direction: row-reverse;
}
.cid-sFCJjMoKrJ .video-wrapper iframe {
  width: 100%;
}
.cid-sFCJjMoKrJ .mbr-section-title,
.cid-sFCJjMoKrJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFCJjMoKrJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFCJ1deWhu {
  display: flex;
  background-image: url("../../../assets/images/mbr-6.jpg");
}
.cid-sFCJ1deWhu .mbr-overlay {
  background-color: #e43f3f;
  opacity: 0.5;
}
.cid-sFCJ1deWhu .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sFCJ1deWhu {
    align-items: center;
  }
  .cid-sFCJ1deWhu .row {
    justify-content: center;
  }
  .cid-sFCJ1deWhu .content-wrap {
    width: 85%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sFCJ1deWhu .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sFCJ1deWhu {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sFCJ1deWhu .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sFCJ1deWhu .content-wrap {
    width: 100%;
  }
}
.cid-sFCJ1deWhu .mbr-section-title {
  color: #ffffff;
}
.cid-sFD8KkgpZf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sFD8KkgpZf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-sFD8KkgpZf form {
    width: 50%;
  }
}
.cid-sFD8KkgpZf form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFD8KkgpZf form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sFCJZkqnNY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sFCJZkqnNY .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sFCJZkqnNY .mbr-section-title,
.cid-sFCJZkqnNY .mbr-section-subtitle {
  text-align: center;
}
.cid-sFCJZkqnNY .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sFCJZkqnNY .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-sFCJZkqnNY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sFCJZkqnNY .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sFCJZkqnNY .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFCJZkqnNY .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sFCJZkqnNY .cost {
  color: #e43f3f;
}
.cid-sFFneblFJm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFFneblFJm img,
.cid-sFFneblFJm .item-img {
  width: 100%;
}
.cid-sFFneblFJm .item:focus,
.cid-sFFneblFJm span:focus {
  outline: none;
}
.cid-sFFneblFJm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFFneblFJm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFFneblFJm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFFneblFJm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFFneblFJm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFFneblFJm .mbr-section-title {
  color: #232323;
}
.cid-sFFneblFJm .mbr-text,
.cid-sFFneblFJm .mbr-section-btn {
  text-align: left;
}
.cid-sFFneblFJm .item-title {
  text-align: left;
}
.cid-sFFneblFJm .item-subtitle {
  text-align: center;
}
.cid-sPShP9WDJj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sPShP9WDJj img,
.cid-sPShP9WDJj .item-img {
  width: 100%;
  height: 100%;
  height: 100px;
  object-fit: cover;
}
.cid-sPShP9WDJj .item:focus,
.cid-sPShP9WDJj span:focus {
  outline: none;
}
.cid-sPShP9WDJj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sPShP9WDJj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sPShP9WDJj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPShP9WDJj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sPShP9WDJj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sPShP9WDJj .mbr-section-title {
  color: #232323;
}
.cid-sPShP9WDJj .mbr-text,
.cid-sPShP9WDJj .mbr-section-btn {
  text-align: left;
}
.cid-sPShP9WDJj .item-title {
  text-align: left;
}
.cid-sPShP9WDJj .item-subtitle {
  text-align: center;
}
.cid-sFCUVIDhZG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFCUVIDhZG .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFCUVIDhZG .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sFCUVIDhZG .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFCUVIDhZG .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFCUVIDhZG .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sFCJCvllwi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sFCJCvllwi .google-map {
  height: 350px;
  position: relative;
}
.cid-sFCJCvllwi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFCJCvllwi .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFCJCvllwi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFCJCvllwi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFCJCvllwi .mbr-section-title {
  text-align: center;
}
.cid-sFD8voDshj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sFD8voDshj .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sFD8voDshj .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sFD8voDshj .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-sFD8voDshj .bg-youtube:hover {
  background: #cc0000;
}
.cid-sFD8voDshj .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-sFD8voDshj .bg-twitch:hover {
  background: #7313ff;
}
.cid-sFD8voDshj .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sFD8voDshj [class^="socicon-"]:before,
.cid-sFD8voDshj [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sFCHW5SHqL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFCHW5SHqL nav.navbar {
  position: fixed;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCHW5SHqL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCHW5SHqL .dropdown-item:hover,
.cid-sFCHW5SHqL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFCHW5SHqL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCHW5SHqL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCHW5SHqL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCHW5SHqL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCHW5SHqL .nav-link {
  position: relative;
}
.cid-sFCHW5SHqL .container {
  display: flex;
  margin: auto;
}
.cid-sFCHW5SHqL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCHW5SHqL .dropdown-menu,
.cid-sFCHW5SHqL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFCHW5SHqL .nav-item:focus,
.cid-sFCHW5SHqL .nav-link:focus {
  outline: none;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCHW5SHqL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCHW5SHqL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCHW5SHqL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCHW5SHqL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCHW5SHqL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCHW5SHqL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCHW5SHqL .navbar.collapsed {
  justify-content: center;
}
.cid-sFCHW5SHqL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCHW5SHqL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCHW5SHqL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCHW5SHqL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCHW5SHqL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCHW5SHqL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCHW5SHqL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCHW5SHqL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCHW5SHqL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCHW5SHqL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCHW5SHqL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCHW5SHqL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCHW5SHqL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCHW5SHqL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCHW5SHqL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCHW5SHqL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCHW5SHqL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCHW5SHqL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCHW5SHqL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCHW5SHqL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCHW5SHqL .dropdown-item.active,
.cid-sFCHW5SHqL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCHW5SHqL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCHW5SHqL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCHW5SHqL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCHW5SHqL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFCHW5SHqL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCHW5SHqL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCHW5SHqL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCHW5SHqL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCHW5SHqL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCHW5SHqL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCHW5SHqL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCHW5SHqL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCHW5SHqL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCHW5SHqL .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-sFCHW5SHqL .navbar {
    height: 70px;
  }
  .cid-sFCHW5SHqL .navbar.opened {
    height: auto;
  }
  .cid-sFCHW5SHqL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQNmpinfD7 {
  background-image: url("../../../assets/images/114000-special-web-1500x1500.jpg");
}
.cid-sQNmzNzWcp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQNmzNzWcp .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQNmzNzWcp .img-item {
  position: relative;
}
.cid-sQNmzNzWcp .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNmzNzWcp .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQNmzNzWcp .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQNvaSEMjR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQNvaSEMjR .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQNvaSEMjR .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQNvaSEMjR .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQNvaSEMjR .link-wrap {
    align-items: center;
  }
}
.cid-sQNvaSEMjR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNt4bRDkS {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQNt4bRDkS .carousel {
  width: 100%;
}
.cid-sQNt4bRDkS .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQNt4bRDkS .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQNt4bRDkS .mbr-overlay {
  z-index: 1;
}
.cid-sQNt4bRDkS .carousel-caption {
  bottom: 40px;
}
.cid-sQNt4bRDkS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQNt4bRDkS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQNt4bRDkS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQNt4bRDkS .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQNt4bRDkS .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQNt4bRDkS .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQNt4bRDkS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQNt4bRDkS .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQNt4bRDkS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQNt4bRDkS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQNt4bRDkS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQNt4bRDkS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQNt4bRDkS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQNt4bRDkS .carousel-indicators li.active,
.cid-sQNt4bRDkS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQNt4bRDkS .carousel-indicators li::after,
.cid-sQNt4bRDkS .carousel-indicators li::before {
  content: none;
}
.cid-sQNt4bRDkS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQNt4bRDkS .carousel-indicators {
    display: none !important;
  }
}
.cid-sQNt4bRDkS H5 {
  color: #1b216d;
}
.cid-sQNt4bRDkS P {
  color: #1b216d;
}
.cid-sQNmsrAlDH {
  background-image: url("../../../assets/images/110000-special-scheibe-web-1701x945.jpg");
}
.cid-sQNz4peeT9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQNz4peeT9 .mbr-section-title {
  color: #ffffff;
}
.cid-sQNBVfR5G7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQNBVfR5G7 nav.navbar {
  position: fixed;
}
.cid-sQNBVfR5G7 .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-sQNBVfR5G7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQNBVfR5G7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQNBVfR5G7 .dropdown-item:hover,
.cid-sQNBVfR5G7 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQNBVfR5G7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQNBVfR5G7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQNBVfR5G7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQNBVfR5G7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQNBVfR5G7 .nav-link {
  position: relative;
}
.cid-sQNBVfR5G7 .container {
  display: flex;
  margin: auto;
}
.cid-sQNBVfR5G7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQNBVfR5G7 .dropdown-menu,
.cid-sQNBVfR5G7 .navbar.opened {
  background: #ffffff !important;
}
.cid-sQNBVfR5G7 .nav-item:focus,
.cid-sQNBVfR5G7 .nav-link:focus {
  outline: none;
}
.cid-sQNBVfR5G7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQNBVfR5G7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQNBVfR5G7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQNBVfR5G7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQNBVfR5G7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQNBVfR5G7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQNBVfR5G7 .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-sQNBVfR5G7 .navbar.opened {
  transition: all 0.3s;
}
.cid-sQNBVfR5G7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQNBVfR5G7 .navbar .navbar-logo img {
  width: auto;
}
.cid-sQNBVfR5G7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQNBVfR5G7 .navbar.collapsed {
  justify-content: center;
}
.cid-sQNBVfR5G7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQNBVfR5G7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQNBVfR5G7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQNBVfR5G7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQNBVfR5G7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQNBVfR5G7 .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-sQNBVfR5G7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQNBVfR5G7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQNBVfR5G7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQNBVfR5G7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQNBVfR5G7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQNBVfR5G7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQNBVfR5G7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQNBVfR5G7 .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-sQNBVfR5G7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQNBVfR5G7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQNBVfR5G7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQNBVfR5G7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQNBVfR5G7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQNBVfR5G7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQNBVfR5G7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQNBVfR5G7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQNBVfR5G7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQNBVfR5G7 .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-sQNBVfR5G7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQNBVfR5G7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQNBVfR5G7 .dropdown-item.active,
.cid-sQNBVfR5G7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sQNBVfR5G7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQNBVfR5G7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQNBVfR5G7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQNBVfR5G7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQNBVfR5G7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQNBVfR5G7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQNBVfR5G7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQNBVfR5G7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQNBVfR5G7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQNBVfR5G7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQNBVfR5G7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQNBVfR5G7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQNBVfR5G7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQNBVfR5G7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQNBVfR5G7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQNBVfR5G7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQNBVfR5G7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQNBVfR5G7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQNBVfR5G7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQNBVfR5G7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQNBVfR5G7 .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-sQNBVfR5G7 .navbar {
    height: 70px;
  }
  .cid-sQNBVfR5G7 .navbar.opened {
    height: auto;
  }
  .cid-sQNBVfR5G7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQNBVgvRNP {
  background-image: url("../../../assets/images/heyner-super-flat-premium-web-1500x700.jpg");
}
.cid-sQNBVhas1m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQNBVhas1m .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQNBVhas1m .img-item {
  position: relative;
}
.cid-sQNBVhas1m .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNBVhas1m .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQNBVhas1m .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQNBVhSbKr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQNBVhSbKr .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQNBVhSbKr .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQNBVhSbKr .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQNBVhSbKr .link-wrap {
    align-items: center;
  }
}
.cid-sQNBVhSbKr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNBViwbh1 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQNBViwbh1 .carousel {
  width: 100%;
}
.cid-sQNBViwbh1 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQNBViwbh1 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQNBViwbh1 .mbr-overlay {
  z-index: 1;
}
.cid-sQNBViwbh1 .carousel-caption {
  bottom: 40px;
}
.cid-sQNBViwbh1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQNBViwbh1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQNBViwbh1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQNBViwbh1 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQNBViwbh1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQNBViwbh1 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQNBViwbh1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQNBViwbh1 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQNBViwbh1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQNBViwbh1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQNBViwbh1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQNBViwbh1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQNBViwbh1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQNBViwbh1 .carousel-indicators li.active,
.cid-sQNBViwbh1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQNBViwbh1 .carousel-indicators li::after,
.cid-sQNBViwbh1 .carousel-indicators li::before {
  content: none;
}
.cid-sQNBViwbh1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQNBViwbh1 .carousel-indicators {
    display: none !important;
  }
}
.cid-sQNBViwbh1 H5 {
  color: #e43f3f;
}
.cid-sQNBViwbh1 P {
  color: #e43f3f;
}
.cid-sQNBVkgwQ5 {
  background-image: url("../../../assets/images/280000-super-flat-premium-scheibe-web-1890x1890.jpg");
}
.cid-sQNBVkPUNG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sQNBVkPUNG .mbr-section-title {
  color: #ffffff;
}
.cid-sQNSXFbHUL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQNSXFbHUL nav.navbar {
  position: fixed;
}
.cid-sQNSXFbHUL .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-sQNSXFbHUL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQNSXFbHUL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQNSXFbHUL .dropdown-item:hover,
.cid-sQNSXFbHUL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQNSXFbHUL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQNSXFbHUL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQNSXFbHUL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQNSXFbHUL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQNSXFbHUL .nav-link {
  position: relative;
}
.cid-sQNSXFbHUL .container {
  display: flex;
  margin: auto;
}
.cid-sQNSXFbHUL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQNSXFbHUL .dropdown-menu,
.cid-sQNSXFbHUL .navbar.opened {
  background: #ffffff !important;
}
.cid-sQNSXFbHUL .nav-item:focus,
.cid-sQNSXFbHUL .nav-link:focus {
  outline: none;
}
.cid-sQNSXFbHUL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQNSXFbHUL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQNSXFbHUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQNSXFbHUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQNSXFbHUL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQNSXFbHUL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQNSXFbHUL .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-sQNSXFbHUL .navbar.opened {
  transition: all 0.3s;
}
.cid-sQNSXFbHUL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQNSXFbHUL .navbar .navbar-logo img {
  width: auto;
}
.cid-sQNSXFbHUL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQNSXFbHUL .navbar.collapsed {
  justify-content: center;
}
.cid-sQNSXFbHUL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQNSXFbHUL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQNSXFbHUL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQNSXFbHUL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQNSXFbHUL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQNSXFbHUL .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-sQNSXFbHUL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQNSXFbHUL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQNSXFbHUL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQNSXFbHUL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQNSXFbHUL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQNSXFbHUL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQNSXFbHUL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQNSXFbHUL .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-sQNSXFbHUL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQNSXFbHUL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQNSXFbHUL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQNSXFbHUL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQNSXFbHUL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQNSXFbHUL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQNSXFbHUL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQNSXFbHUL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQNSXFbHUL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQNSXFbHUL .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-sQNSXFbHUL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQNSXFbHUL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQNSXFbHUL .dropdown-item.active,
.cid-sQNSXFbHUL .dropdown-item:active {
  background-color: transparent;
}
.cid-sQNSXFbHUL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQNSXFbHUL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQNSXFbHUL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQNSXFbHUL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQNSXFbHUL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQNSXFbHUL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQNSXFbHUL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQNSXFbHUL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQNSXFbHUL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQNSXFbHUL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQNSXFbHUL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQNSXFbHUL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQNSXFbHUL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQNSXFbHUL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQNSXFbHUL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQNSXFbHUL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQNSXFbHUL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQNSXFbHUL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQNSXFbHUL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQNSXFbHUL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQNSXFbHUL .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-sQNSXFbHUL .navbar {
    height: 70px;
  }
  .cid-sQNSXFbHUL .navbar.opened {
    height: auto;
  }
  .cid-sQNSXFbHUL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQNSXG2M4W {
  background-image: url("../../../assets/images/alca-maxx-1500x700.jpg");
}
.cid-sQOjiBK3Py {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQOjiBK3Py .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQOjiBK3Py .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOjiBK3Py .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQOjiBK3Py .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOjiBK3Py .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQOjiBK3Py .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQOjiBK3Py .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQOjjeoGwY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQOjjeoGwY .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQOjjeoGwY .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQOjjeoGwY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOjjeoGwY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQOjjeoGwY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOjjeoGwY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQOjjeoGwY .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQOjjeoGwY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQOo7HBCdn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQOo7HBCdn .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQOo7HBCdn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOo7HBCdn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQOo7HBCdn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOo7HBCdn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQOo7HBCdn .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQOo7HBCdn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQOo8hcCTL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQOo8hcCTL .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQOo8hcCTL .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQOo8hcCTL .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOo8hcCTL .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQOo8hcCTL .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOo8hcCTL .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQOo8hcCTL .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQOo8hcCTL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQOoa88CPR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQOoa88CPR .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQOoa88CPR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOoa88CPR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQOoa88CPR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOoa88CPR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQOoa88CPR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQOoa88CPR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQOqYTIcN5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQOqYTIcN5 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQOqYTIcN5 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQOqYTIcN5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOqYTIcN5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQOqYTIcN5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOqYTIcN5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQOqYTIcN5 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQOqYTIcN5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNSXKWEJA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQNSXKWEJA .mbr-section-title {
  color: #ffffff;
}
.cid-sQNUdCEGw4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQNUdCEGw4 nav.navbar {
  position: fixed;
}
.cid-sQNUdCEGw4 .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-sQNUdCEGw4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQNUdCEGw4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQNUdCEGw4 .dropdown-item:hover,
.cid-sQNUdCEGw4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQNUdCEGw4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQNUdCEGw4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQNUdCEGw4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQNUdCEGw4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQNUdCEGw4 .nav-link {
  position: relative;
}
.cid-sQNUdCEGw4 .container {
  display: flex;
  margin: auto;
}
.cid-sQNUdCEGw4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQNUdCEGw4 .dropdown-menu,
.cid-sQNUdCEGw4 .navbar.opened {
  background: #ffffff !important;
}
.cid-sQNUdCEGw4 .nav-item:focus,
.cid-sQNUdCEGw4 .nav-link:focus {
  outline: none;
}
.cid-sQNUdCEGw4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQNUdCEGw4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQNUdCEGw4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQNUdCEGw4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQNUdCEGw4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQNUdCEGw4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQNUdCEGw4 .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-sQNUdCEGw4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sQNUdCEGw4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQNUdCEGw4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sQNUdCEGw4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQNUdCEGw4 .navbar.collapsed {
  justify-content: center;
}
.cid-sQNUdCEGw4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQNUdCEGw4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQNUdCEGw4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQNUdCEGw4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQNUdCEGw4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQNUdCEGw4 .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-sQNUdCEGw4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQNUdCEGw4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQNUdCEGw4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQNUdCEGw4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQNUdCEGw4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQNUdCEGw4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQNUdCEGw4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQNUdCEGw4 .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-sQNUdCEGw4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQNUdCEGw4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQNUdCEGw4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQNUdCEGw4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQNUdCEGw4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQNUdCEGw4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQNUdCEGw4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQNUdCEGw4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQNUdCEGw4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQNUdCEGw4 .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-sQNUdCEGw4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQNUdCEGw4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQNUdCEGw4 .dropdown-item.active,
.cid-sQNUdCEGw4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sQNUdCEGw4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQNUdCEGw4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQNUdCEGw4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQNUdCEGw4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQNUdCEGw4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQNUdCEGw4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQNUdCEGw4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQNUdCEGw4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQNUdCEGw4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQNUdCEGw4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQNUdCEGw4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQNUdCEGw4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQNUdCEGw4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQNUdCEGw4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQNUdCEGw4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQNUdCEGw4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQNUdCEGw4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQNUdCEGw4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQNUdCEGw4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQNUdCEGw4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQNUdCEGw4 .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-sQNUdCEGw4 .navbar {
    height: 70px;
  }
  .cid-sQNUdCEGw4 .navbar.opened {
    height: auto;
  }
  .cid-sQNUdCEGw4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQNUdDFAkX {
  background-image: url("../../../assets/images/250-280-super-flat-maxx-druck-2000x1052.jpg");
}
.cid-sQNUdEMkza {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQNUdEMkza .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQNUdEMkza .img-item {
  position: relative;
}
.cid-sQNUdEMkza .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNUdEMkza .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQNUdEMkza .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQNUdFqQag {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQNUdFqQag .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQNUdFqQag .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQNUdFqQag .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQNUdFqQag .link-wrap {
    align-items: center;
  }
}
.cid-sQNUdFqQag .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQNUdGb7ld {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQNUdGb7ld .carousel {
  width: 100%;
}
.cid-sQNUdGb7ld .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQNUdGb7ld .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQNUdGb7ld .mbr-overlay {
  z-index: 1;
}
.cid-sQNUdGb7ld .carousel-caption {
  bottom: 40px;
}
.cid-sQNUdGb7ld .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQNUdGb7ld .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQNUdGb7ld .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQNUdGb7ld .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQNUdGb7ld .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQNUdGb7ld .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQNUdGb7ld .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQNUdGb7ld .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQNUdGb7ld .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQNUdGb7ld .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQNUdGb7ld .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQNUdGb7ld .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQNUdGb7ld .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQNUdGb7ld .carousel-indicators li.active,
.cid-sQNUdGb7ld .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQNUdGb7ld .carousel-indicators li::after,
.cid-sQNUdGb7ld .carousel-indicators li::before {
  content: none;
}
.cid-sQNUdGb7ld .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQNUdGb7ld .carousel-indicators {
    display: none !important;
  }
}
.cid-sQNUdGb7ld H5 {
  color: #1b216d;
}
.cid-sQNUdGb7ld P {
  color: #1b216d;
}
.cid-sQNUdHVgIS {
  background-image: url("../../../assets/images/250200-super-flat-maxx-scheibe-web-1701x945.jpg");
}
.cid-sQNUdIz8Ne {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQNUdIz8Ne .mbr-section-title {
  color: #ffffff;
}
.cid-sQP77apQEE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQP77apQEE nav.navbar {
  position: fixed;
}
.cid-sQP77apQEE .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-sQP77apQEE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQP77apQEE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQP77apQEE .dropdown-item:hover,
.cid-sQP77apQEE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQP77apQEE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQP77apQEE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQP77apQEE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQP77apQEE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQP77apQEE .nav-link {
  position: relative;
}
.cid-sQP77apQEE .container {
  display: flex;
  margin: auto;
}
.cid-sQP77apQEE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQP77apQEE .dropdown-menu,
.cid-sQP77apQEE .navbar.opened {
  background: #ffffff !important;
}
.cid-sQP77apQEE .nav-item:focus,
.cid-sQP77apQEE .nav-link:focus {
  outline: none;
}
.cid-sQP77apQEE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQP77apQEE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQP77apQEE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQP77apQEE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQP77apQEE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQP77apQEE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQP77apQEE .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-sQP77apQEE .navbar.opened {
  transition: all 0.3s;
}
.cid-sQP77apQEE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQP77apQEE .navbar .navbar-logo img {
  width: auto;
}
.cid-sQP77apQEE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQP77apQEE .navbar.collapsed {
  justify-content: center;
}
.cid-sQP77apQEE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQP77apQEE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQP77apQEE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQP77apQEE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQP77apQEE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQP77apQEE .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-sQP77apQEE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQP77apQEE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQP77apQEE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQP77apQEE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQP77apQEE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQP77apQEE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQP77apQEE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQP77apQEE .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-sQP77apQEE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQP77apQEE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQP77apQEE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQP77apQEE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQP77apQEE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQP77apQEE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQP77apQEE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQP77apQEE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQP77apQEE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQP77apQEE .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-sQP77apQEE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQP77apQEE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQP77apQEE .dropdown-item.active,
.cid-sQP77apQEE .dropdown-item:active {
  background-color: transparent;
}
.cid-sQP77apQEE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQP77apQEE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQP77apQEE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQP77apQEE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQP77apQEE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQP77apQEE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQP77apQEE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQP77apQEE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQP77apQEE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQP77apQEE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQP77apQEE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQP77apQEE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQP77apQEE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQP77apQEE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQP77apQEE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQP77apQEE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQP77apQEE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQP77apQEE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQP77apQEE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQP77apQEE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQP77apQEE .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-sQP77apQEE .navbar {
    height: 70px;
  }
  .cid-sQP77apQEE .navbar.opened {
    height: auto;
  }
  .cid-sQP77apQEE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQP77bt8bN {
  background-image: url("../../../assets/images/heyner-hybrid-verpackung-print-1890x870.jpg");
}
.cid-sQP77cEb6i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQP77cEb6i .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQP77cEb6i .img-item {
  position: relative;
}
.cid-sQP77cEb6i .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQP77cEb6i .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQP77cEb6i .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQP77dro6N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQP77dro6N .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQP77dro6N .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQP77dro6N .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQP77dro6N .link-wrap {
    align-items: center;
  }
}
.cid-sQP77dro6N .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQP77esjAx {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQP77esjAx .carousel {
  width: 100%;
}
.cid-sQP77esjAx .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQP77esjAx .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQP77esjAx .mbr-overlay {
  z-index: 1;
}
.cid-sQP77esjAx .carousel-caption {
  bottom: 40px;
}
.cid-sQP77esjAx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQP77esjAx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQP77esjAx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQP77esjAx .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQP77esjAx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQP77esjAx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQP77esjAx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQP77esjAx .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQP77esjAx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQP77esjAx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQP77esjAx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQP77esjAx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQP77esjAx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQP77esjAx .carousel-indicators li.active,
.cid-sQP77esjAx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQP77esjAx .carousel-indicators li::after,
.cid-sQP77esjAx .carousel-indicators li::before {
  content: none;
}
.cid-sQP77esjAx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQP77esjAx .carousel-indicators {
    display: none !important;
  }
}
.cid-sQP77esjAx H5 {
  color: #e43f3f;
}
.cid-sQP77esjAx P {
  color: #e43f3f;
}
.cid-sQP77gnzf2 {
  background-image: url("../../../assets/images/030000-hybrid-scheibe-print-1701x945.jpg");
}
.cid-sQP77h1ASY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sQP77h1ASY .mbr-section-title {
  color: #ffffff;
}
.cid-sQTqmI75CG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTqmI75CG nav.navbar {
  position: fixed;
}
.cid-sQTqmI75CG .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-sQTqmI75CG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTqmI75CG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTqmI75CG .dropdown-item:hover,
.cid-sQTqmI75CG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTqmI75CG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTqmI75CG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTqmI75CG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTqmI75CG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTqmI75CG .nav-link {
  position: relative;
}
.cid-sQTqmI75CG .container {
  display: flex;
  margin: auto;
}
.cid-sQTqmI75CG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTqmI75CG .dropdown-menu,
.cid-sQTqmI75CG .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTqmI75CG .nav-item:focus,
.cid-sQTqmI75CG .nav-link:focus {
  outline: none;
}
.cid-sQTqmI75CG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTqmI75CG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTqmI75CG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTqmI75CG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTqmI75CG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTqmI75CG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTqmI75CG .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-sQTqmI75CG .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTqmI75CG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTqmI75CG .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTqmI75CG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTqmI75CG .navbar.collapsed {
  justify-content: center;
}
.cid-sQTqmI75CG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTqmI75CG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTqmI75CG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTqmI75CG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTqmI75CG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTqmI75CG .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-sQTqmI75CG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTqmI75CG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTqmI75CG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTqmI75CG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTqmI75CG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTqmI75CG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTqmI75CG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTqmI75CG .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-sQTqmI75CG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTqmI75CG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTqmI75CG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTqmI75CG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTqmI75CG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTqmI75CG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTqmI75CG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTqmI75CG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTqmI75CG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTqmI75CG .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-sQTqmI75CG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTqmI75CG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTqmI75CG .dropdown-item.active,
.cid-sQTqmI75CG .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTqmI75CG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTqmI75CG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTqmI75CG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTqmI75CG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTqmI75CG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTqmI75CG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTqmI75CG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTqmI75CG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTqmI75CG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTqmI75CG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTqmI75CG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTqmI75CG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTqmI75CG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTqmI75CG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTqmI75CG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTqmI75CG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTqmI75CG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTqmI75CG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTqmI75CG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTqmI75CG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTqmI75CG .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-sQTqmI75CG .navbar {
    height: 70px;
  }
  .cid-sQTqmI75CG .navbar.opened {
    height: auto;
  }
  .cid-sQTqmI75CG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTqmIOvyf {
  background-image: url("../../../assets/images/alca-universal-verpackung-web-1500x700.jpg");
}
.cid-sQTqmJq0Ij {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTqmJq0Ij .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTqmJq0Ij .img-item {
  position: relative;
}
.cid-sQTqmJq0Ij .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTqmJq0Ij .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTqmJq0Ij .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTqmK4vAs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTqmK4vAs .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTqmK4vAs .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTqmK4vAs .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTqmK4vAs .link-wrap {
    align-items: center;
  }
}
.cid-sQTqmK4vAs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTqmKULXi {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTqmKULXi .carousel {
  width: 100%;
}
.cid-sQTqmKULXi .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTqmKULXi .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTqmKULXi .mbr-overlay {
  z-index: 1;
}
.cid-sQTqmKULXi .carousel-caption {
  bottom: 40px;
}
.cid-sQTqmKULXi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTqmKULXi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTqmKULXi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTqmKULXi .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTqmKULXi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTqmKULXi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTqmKULXi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTqmKULXi .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTqmKULXi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTqmKULXi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTqmKULXi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTqmKULXi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTqmKULXi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTqmKULXi .carousel-indicators li.active,
.cid-sQTqmKULXi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTqmKULXi .carousel-indicators li::after,
.cid-sQTqmKULXi .carousel-indicators li::before {
  content: none;
}
.cid-sQTqmKULXi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTqmKULXi .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTqmKULXi H5 {
  color: #1b216d;
}
.cid-sQTqmKULXi P {
  color: #1b216d;
}
.cid-sQTqmMDkl3 {
  background-image: url("../../../assets/images/180000-universal-scheibe-web-1701x945.jpg");
}
.cid-sQTqmNfwVA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQTqmNfwVA .mbr-section-title {
  color: #ffffff;
}
.cid-sQTwwh1LSJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTwwh1LSJ nav.navbar {
  position: fixed;
}
.cid-sQTwwh1LSJ .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-sQTwwh1LSJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTwwh1LSJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTwwh1LSJ .dropdown-item:hover,
.cid-sQTwwh1LSJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTwwh1LSJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTwwh1LSJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTwwh1LSJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTwwh1LSJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTwwh1LSJ .nav-link {
  position: relative;
}
.cid-sQTwwh1LSJ .container {
  display: flex;
  margin: auto;
}
.cid-sQTwwh1LSJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTwwh1LSJ .dropdown-menu,
.cid-sQTwwh1LSJ .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTwwh1LSJ .nav-item:focus,
.cid-sQTwwh1LSJ .nav-link:focus {
  outline: none;
}
.cid-sQTwwh1LSJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTwwh1LSJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTwwh1LSJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTwwh1LSJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTwwh1LSJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTwwh1LSJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTwwh1LSJ .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-sQTwwh1LSJ .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTwwh1LSJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTwwh1LSJ .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTwwh1LSJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTwwh1LSJ .navbar.collapsed {
  justify-content: center;
}
.cid-sQTwwh1LSJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTwwh1LSJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTwwh1LSJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTwwh1LSJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTwwh1LSJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTwwh1LSJ .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-sQTwwh1LSJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTwwh1LSJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTwwh1LSJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTwwh1LSJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTwwh1LSJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTwwh1LSJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTwwh1LSJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTwwh1LSJ .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-sQTwwh1LSJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTwwh1LSJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTwwh1LSJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTwwh1LSJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTwwh1LSJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTwwh1LSJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTwwh1LSJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTwwh1LSJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTwwh1LSJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTwwh1LSJ .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-sQTwwh1LSJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTwwh1LSJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTwwh1LSJ .dropdown-item.active,
.cid-sQTwwh1LSJ .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTwwh1LSJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTwwh1LSJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTwwh1LSJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTwwh1LSJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTwwh1LSJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTwwh1LSJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTwwh1LSJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTwwh1LSJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTwwh1LSJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTwwh1LSJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTwwh1LSJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTwwh1LSJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTwwh1LSJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTwwh1LSJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTwwh1LSJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTwwh1LSJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTwwh1LSJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTwwh1LSJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTwwh1LSJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTwwh1LSJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTwwh1LSJ .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-sQTwwh1LSJ .navbar {
    height: 70px;
  }
  .cid-sQTwwh1LSJ .navbar.opened {
    height: auto;
  }
  .cid-sQTwwh1LSJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTwwhYzAp {
  background-image: url("../../../assets/images/076000-winter-web-1500x1500.jpg");
}
.cid-sQTwwjgJSs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTwwjgJSs .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTwwjgJSs .img-item {
  position: relative;
}
.cid-sQTwwjgJSs .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTwwjgJSs .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTwwjgJSs .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTwwk9V0s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTwwk9V0s .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTwwk9V0s .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTwwk9V0s .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTwwk9V0s .link-wrap {
    align-items: center;
  }
}
.cid-sQTwwk9V0s .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTwwkXxkP {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTwwkXxkP .carousel {
  width: 100%;
}
.cid-sQTwwkXxkP .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTwwkXxkP .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTwwkXxkP .mbr-overlay {
  z-index: 1;
}
.cid-sQTwwkXxkP .carousel-caption {
  bottom: 40px;
}
.cid-sQTwwkXxkP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTwwkXxkP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTwwkXxkP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTwwkXxkP .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTwwkXxkP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTwwkXxkP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTwwkXxkP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTwwkXxkP .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTwwkXxkP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTwwkXxkP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTwwkXxkP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTwwkXxkP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTwwkXxkP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTwwkXxkP .carousel-indicators li.active,
.cid-sQTwwkXxkP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTwwkXxkP .carousel-indicators li::after,
.cid-sQTwwkXxkP .carousel-indicators li::before {
  content: none;
}
.cid-sQTwwkXxkP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTwwkXxkP .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTwwkXxkP H5 {
  color: #1b216d;
}
.cid-sQTwwkXxkP P {
  color: #1b216d;
}
.cid-sQTwwmWsRC {
  background-image: url("../../../assets/images/winter-scheibe-web-1701x1701.jpg");
}
.cid-sQTwwnyTx3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQTwwnyTx3 .mbr-section-title {
  color: #ffffff;
}
.cid-sQTABucOsI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTABucOsI nav.navbar {
  position: fixed;
}
.cid-sQTABucOsI .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-sQTABucOsI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTABucOsI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTABucOsI .dropdown-item:hover,
.cid-sQTABucOsI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTABucOsI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTABucOsI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTABucOsI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTABucOsI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTABucOsI .nav-link {
  position: relative;
}
.cid-sQTABucOsI .container {
  display: flex;
  margin: auto;
}
.cid-sQTABucOsI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTABucOsI .dropdown-menu,
.cid-sQTABucOsI .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTABucOsI .nav-item:focus,
.cid-sQTABucOsI .nav-link:focus {
  outline: none;
}
.cid-sQTABucOsI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTABucOsI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTABucOsI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTABucOsI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTABucOsI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTABucOsI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTABucOsI .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-sQTABucOsI .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTABucOsI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTABucOsI .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTABucOsI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTABucOsI .navbar.collapsed {
  justify-content: center;
}
.cid-sQTABucOsI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTABucOsI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTABucOsI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTABucOsI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTABucOsI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTABucOsI .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-sQTABucOsI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTABucOsI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTABucOsI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTABucOsI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTABucOsI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTABucOsI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTABucOsI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTABucOsI .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-sQTABucOsI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTABucOsI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTABucOsI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTABucOsI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTABucOsI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTABucOsI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTABucOsI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTABucOsI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTABucOsI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTABucOsI .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-sQTABucOsI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTABucOsI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTABucOsI .dropdown-item.active,
.cid-sQTABucOsI .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTABucOsI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTABucOsI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTABucOsI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTABucOsI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTABucOsI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTABucOsI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTABucOsI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTABucOsI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTABucOsI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTABucOsI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTABucOsI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTABucOsI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTABucOsI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTABucOsI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTABucOsI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTABucOsI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTABucOsI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTABucOsI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTABucOsI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTABucOsI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTABucOsI .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-sQTABucOsI .navbar {
    height: 70px;
  }
  .cid-sQTABucOsI .navbar.opened {
    height: auto;
  }
  .cid-sQTABucOsI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTABvlCbk {
  background-image: url("../../../assets/images/098000-all-seasons-2000x1200.jpg");
}
.cid-sQTABwymDD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTABwymDD .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTABwymDD .img-item {
  position: relative;
}
.cid-sQTABwymDD .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTABwymDD .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTABwymDD .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTABx8NKW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTABx8NKW .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTABx8NKW .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTABx8NKW .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTABx8NKW .link-wrap {
    align-items: center;
  }
}
.cid-sQTABx8NKW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTABxHSGJ {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTABxHSGJ .carousel {
  width: 100%;
}
.cid-sQTABxHSGJ .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTABxHSGJ .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTABxHSGJ .mbr-overlay {
  z-index: 1;
}
.cid-sQTABxHSGJ .carousel-caption {
  bottom: 40px;
}
.cid-sQTABxHSGJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTABxHSGJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTABxHSGJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTABxHSGJ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTABxHSGJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTABxHSGJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTABxHSGJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTABxHSGJ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTABxHSGJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTABxHSGJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTABxHSGJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTABxHSGJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTABxHSGJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTABxHSGJ .carousel-indicators li.active,
.cid-sQTABxHSGJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTABxHSGJ .carousel-indicators li::after,
.cid-sQTABxHSGJ .carousel-indicators li::before {
  content: none;
}
.cid-sQTABxHSGJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTABxHSGJ .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTABxHSGJ H5 {
  color: #e43f3f;
}
.cid-sQTABxHSGJ P {
  color: #e43f3f;
}
.cid-sQTABz9z9I {
  background-image: url("../../../assets/images/090000-all-seasons-scheibe-web-1701x945.jpg");
}
.cid-sQTABzJPYJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sQTABzJPYJ .mbr-section-title {
  color: #ffffff;
}
.cid-sQTAPkcuPr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTAPkcuPr nav.navbar {
  position: fixed;
}
.cid-sQTAPkcuPr .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-sQTAPkcuPr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTAPkcuPr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTAPkcuPr .dropdown-item:hover,
.cid-sQTAPkcuPr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTAPkcuPr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTAPkcuPr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTAPkcuPr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTAPkcuPr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTAPkcuPr .nav-link {
  position: relative;
}
.cid-sQTAPkcuPr .container {
  display: flex;
  margin: auto;
}
.cid-sQTAPkcuPr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTAPkcuPr .dropdown-menu,
.cid-sQTAPkcuPr .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTAPkcuPr .nav-item:focus,
.cid-sQTAPkcuPr .nav-link:focus {
  outline: none;
}
.cid-sQTAPkcuPr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTAPkcuPr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTAPkcuPr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTAPkcuPr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTAPkcuPr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTAPkcuPr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTAPkcuPr .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-sQTAPkcuPr .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTAPkcuPr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTAPkcuPr .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTAPkcuPr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTAPkcuPr .navbar.collapsed {
  justify-content: center;
}
.cid-sQTAPkcuPr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTAPkcuPr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTAPkcuPr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTAPkcuPr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTAPkcuPr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTAPkcuPr .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-sQTAPkcuPr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTAPkcuPr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTAPkcuPr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTAPkcuPr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTAPkcuPr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTAPkcuPr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTAPkcuPr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTAPkcuPr .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-sQTAPkcuPr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTAPkcuPr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTAPkcuPr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTAPkcuPr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTAPkcuPr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTAPkcuPr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTAPkcuPr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTAPkcuPr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTAPkcuPr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTAPkcuPr .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-sQTAPkcuPr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTAPkcuPr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTAPkcuPr .dropdown-item.active,
.cid-sQTAPkcuPr .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTAPkcuPr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTAPkcuPr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTAPkcuPr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTAPkcuPr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTAPkcuPr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTAPkcuPr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTAPkcuPr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTAPkcuPr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTAPkcuPr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTAPkcuPr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTAPkcuPr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTAPkcuPr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTAPkcuPr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTAPkcuPr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTAPkcuPr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTAPkcuPr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTAPkcuPr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTAPkcuPr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTAPkcuPr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTAPkcuPr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTAPkcuPr .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-sQTAPkcuPr .navbar {
    height: 70px;
  }
  .cid-sQTAPkcuPr .navbar.opened {
    height: auto;
  }
  .cid-sQTAPkcuPr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTAPlAULu {
  background-image: url("../../../assets/images/heyner-super-flat-truck-verpackung-web-1890x870.jpg");
}
.cid-sQTAPmUl5a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTAPmUl5a .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTAPmUl5a .img-item {
  position: relative;
}
.cid-sQTAPmUl5a .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTAPmUl5a .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTAPmUl5a .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTAPnw4jr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTAPnw4jr .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTAPnw4jr .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTAPnw4jr .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTAPnw4jr .link-wrap {
    align-items: center;
  }
}
.cid-sQTAPnw4jr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTAPot8Ni {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTAPot8Ni .carousel {
  width: 100%;
}
.cid-sQTAPot8Ni .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTAPot8Ni .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTAPot8Ni .mbr-overlay {
  z-index: 1;
}
.cid-sQTAPot8Ni .carousel-caption {
  bottom: 40px;
}
.cid-sQTAPot8Ni .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTAPot8Ni .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTAPot8Ni .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTAPot8Ni .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTAPot8Ni .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTAPot8Ni .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTAPot8Ni .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTAPot8Ni .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTAPot8Ni .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTAPot8Ni .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTAPot8Ni .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTAPot8Ni .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTAPot8Ni .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTAPot8Ni .carousel-indicators li.active,
.cid-sQTAPot8Ni .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTAPot8Ni .carousel-indicators li::after,
.cid-sQTAPot8Ni .carousel-indicators li::before {
  content: none;
}
.cid-sQTAPot8Ni .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTAPot8Ni .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTAPot8Ni H5 {
  color: #e43f3f;
}
.cid-sQTAPot8Ni P {
  color: #e43f3f;
}
.cid-sQTAPqqFQs {
  background-image: url("../../../assets/images/133900-super-flat-truck-scheibe-web-1701x945.jpg");
}
.cid-sQTAPr4CSJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sQTAPr4CSJ .mbr-section-title {
  color: #ffffff;
}
.cid-sQTAVy8gf6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTAVy8gf6 nav.navbar {
  position: fixed;
}
.cid-sQTAVy8gf6 .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-sQTAVy8gf6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTAVy8gf6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTAVy8gf6 .dropdown-item:hover,
.cid-sQTAVy8gf6 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTAVy8gf6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTAVy8gf6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTAVy8gf6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTAVy8gf6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTAVy8gf6 .nav-link {
  position: relative;
}
.cid-sQTAVy8gf6 .container {
  display: flex;
  margin: auto;
}
.cid-sQTAVy8gf6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTAVy8gf6 .dropdown-menu,
.cid-sQTAVy8gf6 .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTAVy8gf6 .nav-item:focus,
.cid-sQTAVy8gf6 .nav-link:focus {
  outline: none;
}
.cid-sQTAVy8gf6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTAVy8gf6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTAVy8gf6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTAVy8gf6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTAVy8gf6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTAVy8gf6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTAVy8gf6 .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-sQTAVy8gf6 .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTAVy8gf6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTAVy8gf6 .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTAVy8gf6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTAVy8gf6 .navbar.collapsed {
  justify-content: center;
}
.cid-sQTAVy8gf6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTAVy8gf6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTAVy8gf6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTAVy8gf6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTAVy8gf6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTAVy8gf6 .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-sQTAVy8gf6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTAVy8gf6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTAVy8gf6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTAVy8gf6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTAVy8gf6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTAVy8gf6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTAVy8gf6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTAVy8gf6 .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-sQTAVy8gf6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTAVy8gf6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTAVy8gf6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTAVy8gf6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTAVy8gf6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTAVy8gf6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTAVy8gf6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTAVy8gf6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTAVy8gf6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTAVy8gf6 .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-sQTAVy8gf6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTAVy8gf6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTAVy8gf6 .dropdown-item.active,
.cid-sQTAVy8gf6 .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTAVy8gf6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTAVy8gf6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTAVy8gf6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTAVy8gf6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTAVy8gf6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTAVy8gf6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTAVy8gf6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTAVy8gf6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTAVy8gf6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTAVy8gf6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTAVy8gf6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTAVy8gf6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTAVy8gf6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTAVy8gf6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTAVy8gf6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTAVy8gf6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTAVy8gf6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTAVy8gf6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTAVy8gf6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTAVy8gf6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTAVy8gf6 .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-sQTAVy8gf6 .navbar {
    height: 70px;
  }
  .cid-sQTAVy8gf6 .navbar.opened {
    height: auto;
  }
  .cid-sQTAVy8gf6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTAVyVeOy {
  background-image: url("../../../assets/images/138-000-truck-verpackung-web-1500x1500.jpg");
}
.cid-sQTAVzD5Ge {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTAVzD5Ge .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTAVzD5Ge .img-item {
  position: relative;
}
.cid-sQTAVzD5Ge .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTAVzD5Ge .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTAVzD5Ge .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTAVAqq4j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTAVAqq4j .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTAVAqq4j .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTAVAqq4j .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTAVAqq4j .link-wrap {
    align-items: center;
  }
}
.cid-sQTAVAqq4j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTAVBjqog {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTAVBjqog .carousel {
  width: 100%;
}
.cid-sQTAVBjqog .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTAVBjqog .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTAVBjqog .mbr-overlay {
  z-index: 1;
}
.cid-sQTAVBjqog .carousel-caption {
  bottom: 40px;
}
.cid-sQTAVBjqog .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTAVBjqog .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTAVBjqog .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTAVBjqog .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTAVBjqog .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTAVBjqog .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTAVBjqog .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTAVBjqog .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTAVBjqog .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTAVBjqog .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTAVBjqog .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTAVBjqog .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTAVBjqog .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTAVBjqog .carousel-indicators li.active,
.cid-sQTAVBjqog .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTAVBjqog .carousel-indicators li::after,
.cid-sQTAVBjqog .carousel-indicators li::before {
  content: none;
}
.cid-sQTAVBjqog .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTAVBjqog .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTAVBjqog H5 {
  color: #1b216d;
}
.cid-sQTAVBjqog P {
  color: #1b216d;
}
.cid-sQTAVDgl4Q {
  background-image: url("../../../assets/images/133000-truck-scheibe-web-1701x945.jpg");
}
.cid-sQTAVDTnzq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQTAVDTnzq .mbr-section-title {
  color: #ffffff;
}
.cid-sQTBIg4ohc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTBIg4ohc nav.navbar {
  position: fixed;
}
.cid-sQTBIg4ohc .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-sQTBIg4ohc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTBIg4ohc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTBIg4ohc .dropdown-item:hover,
.cid-sQTBIg4ohc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTBIg4ohc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTBIg4ohc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTBIg4ohc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTBIg4ohc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTBIg4ohc .nav-link {
  position: relative;
}
.cid-sQTBIg4ohc .container {
  display: flex;
  margin: auto;
}
.cid-sQTBIg4ohc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTBIg4ohc .dropdown-menu,
.cid-sQTBIg4ohc .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTBIg4ohc .nav-item:focus,
.cid-sQTBIg4ohc .nav-link:focus {
  outline: none;
}
.cid-sQTBIg4ohc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTBIg4ohc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTBIg4ohc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTBIg4ohc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTBIg4ohc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTBIg4ohc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTBIg4ohc .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-sQTBIg4ohc .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTBIg4ohc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTBIg4ohc .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTBIg4ohc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTBIg4ohc .navbar.collapsed {
  justify-content: center;
}
.cid-sQTBIg4ohc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTBIg4ohc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTBIg4ohc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTBIg4ohc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTBIg4ohc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTBIg4ohc .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-sQTBIg4ohc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTBIg4ohc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTBIg4ohc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTBIg4ohc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTBIg4ohc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTBIg4ohc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTBIg4ohc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTBIg4ohc .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-sQTBIg4ohc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTBIg4ohc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTBIg4ohc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTBIg4ohc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTBIg4ohc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTBIg4ohc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTBIg4ohc .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTBIg4ohc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTBIg4ohc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTBIg4ohc .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-sQTBIg4ohc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTBIg4ohc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTBIg4ohc .dropdown-item.active,
.cid-sQTBIg4ohc .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTBIg4ohc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTBIg4ohc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTBIg4ohc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTBIg4ohc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTBIg4ohc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTBIg4ohc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTBIg4ohc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTBIg4ohc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTBIg4ohc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTBIg4ohc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTBIg4ohc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTBIg4ohc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTBIg4ohc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTBIg4ohc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTBIg4ohc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTBIg4ohc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTBIg4ohc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTBIg4ohc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTBIg4ohc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTBIg4ohc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTBIg4ohc .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-sQTBIg4ohc .navbar {
    height: 70px;
  }
  .cid-sQTBIg4ohc .navbar.opened {
    height: auto;
  }
  .cid-sQTBIg4ohc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTBIgOVzE {
  background-image: url("../../../assets/images/168000-exclusive-2000x1200.jpg");
}
.cid-sQTBIhxDMP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTBIhxDMP .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTBIhxDMP .img-item {
  position: relative;
}
.cid-sQTBIhxDMP .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTBIhxDMP .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTBIhxDMP .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTBIif1h3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTBIif1h3 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTBIif1h3 .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTBIif1h3 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTBIif1h3 .link-wrap {
    align-items: center;
  }
}
.cid-sQTBIif1h3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTBIj60DX {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTBIj60DX .carousel {
  width: 100%;
}
.cid-sQTBIj60DX .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTBIj60DX .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTBIj60DX .mbr-overlay {
  z-index: 1;
}
.cid-sQTBIj60DX .carousel-caption {
  bottom: 40px;
}
.cid-sQTBIj60DX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTBIj60DX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTBIj60DX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTBIj60DX .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTBIj60DX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTBIj60DX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTBIj60DX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTBIj60DX .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTBIj60DX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTBIj60DX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTBIj60DX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTBIj60DX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTBIj60DX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTBIj60DX .carousel-indicators li.active,
.cid-sQTBIj60DX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTBIj60DX .carousel-indicators li::after,
.cid-sQTBIj60DX .carousel-indicators li::before {
  content: none;
}
.cid-sQTBIj60DX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTBIj60DX .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTBIj60DX H5 {
  color: #e43f3f;
}
.cid-sQTBIj60DX P {
  color: #e43f3f;
}
.cid-sQTBIkELPx {
  background-image: url("../../../assets/images/160000-exclusive-scheibe-web-1701x945.jpg");
}
.cid-sQTBIld6qW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sQTBIld6qW .mbr-section-title {
  color: #ffffff;
}
.cid-sQTB1Pd2rV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTB1Pd2rV nav.navbar {
  position: fixed;
}
.cid-sQTB1Pd2rV .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-sQTB1Pd2rV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTB1Pd2rV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTB1Pd2rV .dropdown-item:hover,
.cid-sQTB1Pd2rV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTB1Pd2rV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTB1Pd2rV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTB1Pd2rV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTB1Pd2rV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTB1Pd2rV .nav-link {
  position: relative;
}
.cid-sQTB1Pd2rV .container {
  display: flex;
  margin: auto;
}
.cid-sQTB1Pd2rV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTB1Pd2rV .dropdown-menu,
.cid-sQTB1Pd2rV .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTB1Pd2rV .nav-item:focus,
.cid-sQTB1Pd2rV .nav-link:focus {
  outline: none;
}
.cid-sQTB1Pd2rV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTB1Pd2rV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTB1Pd2rV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTB1Pd2rV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTB1Pd2rV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTB1Pd2rV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTB1Pd2rV .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-sQTB1Pd2rV .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTB1Pd2rV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTB1Pd2rV .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTB1Pd2rV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTB1Pd2rV .navbar.collapsed {
  justify-content: center;
}
.cid-sQTB1Pd2rV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTB1Pd2rV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTB1Pd2rV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTB1Pd2rV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTB1Pd2rV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTB1Pd2rV .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-sQTB1Pd2rV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTB1Pd2rV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTB1Pd2rV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTB1Pd2rV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTB1Pd2rV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTB1Pd2rV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTB1Pd2rV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTB1Pd2rV .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-sQTB1Pd2rV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTB1Pd2rV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTB1Pd2rV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTB1Pd2rV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTB1Pd2rV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTB1Pd2rV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTB1Pd2rV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTB1Pd2rV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTB1Pd2rV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTB1Pd2rV .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-sQTB1Pd2rV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTB1Pd2rV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTB1Pd2rV .dropdown-item.active,
.cid-sQTB1Pd2rV .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTB1Pd2rV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTB1Pd2rV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTB1Pd2rV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTB1Pd2rV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTB1Pd2rV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTB1Pd2rV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTB1Pd2rV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTB1Pd2rV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTB1Pd2rV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTB1Pd2rV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTB1Pd2rV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTB1Pd2rV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTB1Pd2rV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTB1Pd2rV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTB1Pd2rV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTB1Pd2rV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTB1Pd2rV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTB1Pd2rV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTB1Pd2rV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTB1Pd2rV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTB1Pd2rV .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-sQTB1Pd2rV .navbar {
    height: 70px;
  }
  .cid-sQTB1Pd2rV .navbar.opened {
    height: auto;
  }
  .cid-sQTB1Pd2rV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTB1Q2Eav {
  background-image: url("../../../assets/images/144-000-bus-verpackung-web-1500x1500.jpg");
}
.cid-sQTB1QPrgM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTB1QPrgM .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTB1QPrgM .img-item {
  position: relative;
}
.cid-sQTB1QPrgM .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTB1QPrgM .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTB1QPrgM .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sQTB1Rw5T1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTB1Rw5T1 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sQTB1Rw5T1 .card {
    margin-bottom: 2rem!important;
  }
  .cid-sQTB1Rw5T1 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sQTB1Rw5T1 .link-wrap {
    align-items: center;
  }
}
.cid-sQTB1Rw5T1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTB1SukKx {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sQTB1SukKx .carousel {
  width: 100%;
}
.cid-sQTB1SukKx .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sQTB1SukKx .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sQTB1SukKx .mbr-overlay {
  z-index: 1;
}
.cid-sQTB1SukKx .carousel-caption {
  bottom: 40px;
}
.cid-sQTB1SukKx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQTB1SukKx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQTB1SukKx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQTB1SukKx .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQTB1SukKx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQTB1SukKx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQTB1SukKx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQTB1SukKx .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQTB1SukKx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQTB1SukKx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQTB1SukKx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQTB1SukKx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQTB1SukKx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQTB1SukKx .carousel-indicators li.active,
.cid-sQTB1SukKx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQTB1SukKx .carousel-indicators li::after,
.cid-sQTB1SukKx .carousel-indicators li::before {
  content: none;
}
.cid-sQTB1SukKx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQTB1SukKx .carousel-indicators {
    display: none !important;
  }
}
.cid-sQTB1SukKx H5 {
  color: #1b216d;
}
.cid-sQTB1SukKx P {
  color: #1b216d;
}
.cid-sQTB1Uf6Vi {
  background-image: url("../../../assets/images/140000-bus-scheibe-web-1701x945.jpg");
}
.cid-sQTB1UT3T7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQTB1UT3T7 .mbr-section-title {
  color: #ffffff;
}
.cid-sQTBjInWAh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTBjInWAh nav.navbar {
  position: fixed;
}
.cid-sQTBjInWAh .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-sQTBjInWAh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTBjInWAh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTBjInWAh .dropdown-item:hover,
.cid-sQTBjInWAh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTBjInWAh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTBjInWAh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTBjInWAh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTBjInWAh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTBjInWAh .nav-link {
  position: relative;
}
.cid-sQTBjInWAh .container {
  display: flex;
  margin: auto;
}
.cid-sQTBjInWAh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTBjInWAh .dropdown-menu,
.cid-sQTBjInWAh .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTBjInWAh .nav-item:focus,
.cid-sQTBjInWAh .nav-link:focus {
  outline: none;
}
.cid-sQTBjInWAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTBjInWAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTBjInWAh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTBjInWAh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTBjInWAh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTBjInWAh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTBjInWAh .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-sQTBjInWAh .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTBjInWAh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTBjInWAh .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTBjInWAh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTBjInWAh .navbar.collapsed {
  justify-content: center;
}
.cid-sQTBjInWAh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTBjInWAh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTBjInWAh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTBjInWAh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTBjInWAh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTBjInWAh .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-sQTBjInWAh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTBjInWAh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTBjInWAh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTBjInWAh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTBjInWAh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTBjInWAh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTBjInWAh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTBjInWAh .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-sQTBjInWAh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTBjInWAh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTBjInWAh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTBjInWAh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTBjInWAh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTBjInWAh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTBjInWAh .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTBjInWAh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTBjInWAh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTBjInWAh .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-sQTBjInWAh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTBjInWAh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTBjInWAh .dropdown-item.active,
.cid-sQTBjInWAh .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTBjInWAh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTBjInWAh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTBjInWAh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTBjInWAh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTBjInWAh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTBjInWAh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTBjInWAh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTBjInWAh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTBjInWAh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTBjInWAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTBjInWAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTBjInWAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTBjInWAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTBjInWAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTBjInWAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTBjInWAh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTBjInWAh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTBjInWAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTBjInWAh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTBjInWAh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTBjInWAh .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-sQTBjInWAh .navbar {
    height: 70px;
  }
  .cid-sQTBjInWAh .navbar.opened {
    height: auto;
  }
  .cid-sQTBjInWAh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTBjIZKMH {
  background-image: url("../../../assets/images/alca-classic-refills-1-1500x700.jpg");
}
.cid-sQTBjJC4mf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQTBjJC4mf .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQTBjJC4mf .img-item {
  position: relative;
}
.cid-sQTBjJC4mf .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTBjJC4mf .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sQTBjJC4mf .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sSDmM52aCd {
  background-image: url("../../../assets/images/alca-classic-economy-1500x700.jpg");
}
.cid-sSDopCulK7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSDopCulK7 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSDopCulK7 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sSDopCulK7 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sSDpHMssyj {
  background-image: url("../../../assets/images/flat-economy-3-1500x700.jpg");
}
.cid-sSDu6DEyOK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSDu6DEyOK .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSDu6DEyOK .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sSDu6DEyOK .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sSS7SAgSWv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSS7SAgSWv .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sSS7SAgSWv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sSS7SAgSWv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sSS7SAgSWv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sSS7SAgSWv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sSS7SAgSWv .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sSS7SAgSWv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTBjN3Q63 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQTBjN3Q63 .mbr-section-title {
  color: #ffffff;
}
.cid-sQTBsCyS5c {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTBsCyS5c nav.navbar {
  position: fixed;
}
.cid-sQTBsCyS5c .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-sQTBsCyS5c .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTBsCyS5c .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTBsCyS5c .dropdown-item:hover,
.cid-sQTBsCyS5c .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sQTBsCyS5c .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTBsCyS5c .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTBsCyS5c .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQTBsCyS5c .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTBsCyS5c .nav-link {
  position: relative;
}
.cid-sQTBsCyS5c .container {
  display: flex;
  margin: auto;
}
.cid-sQTBsCyS5c .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTBsCyS5c .dropdown-menu,
.cid-sQTBsCyS5c .navbar.opened {
  background: #ffffff !important;
}
.cid-sQTBsCyS5c .nav-item:focus,
.cid-sQTBsCyS5c .nav-link:focus {
  outline: none;
}
.cid-sQTBsCyS5c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTBsCyS5c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTBsCyS5c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTBsCyS5c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTBsCyS5c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTBsCyS5c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTBsCyS5c .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-sQTBsCyS5c .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTBsCyS5c .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTBsCyS5c .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTBsCyS5c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTBsCyS5c .navbar.collapsed {
  justify-content: center;
}
.cid-sQTBsCyS5c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTBsCyS5c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTBsCyS5c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sQTBsCyS5c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTBsCyS5c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTBsCyS5c .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-sQTBsCyS5c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTBsCyS5c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTBsCyS5c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTBsCyS5c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTBsCyS5c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTBsCyS5c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTBsCyS5c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTBsCyS5c .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-sQTBsCyS5c .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTBsCyS5c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTBsCyS5c .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTBsCyS5c .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTBsCyS5c .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTBsCyS5c .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTBsCyS5c .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTBsCyS5c .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTBsCyS5c .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTBsCyS5c .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-sQTBsCyS5c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTBsCyS5c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTBsCyS5c .dropdown-item.active,
.cid-sQTBsCyS5c .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTBsCyS5c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTBsCyS5c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTBsCyS5c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTBsCyS5c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQTBsCyS5c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTBsCyS5c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTBsCyS5c ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTBsCyS5c .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTBsCyS5c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQTBsCyS5c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQTBsCyS5c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTBsCyS5c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTBsCyS5c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTBsCyS5c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTBsCyS5c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTBsCyS5c nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTBsCyS5c nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTBsCyS5c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTBsCyS5c .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQTBsCyS5c a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTBsCyS5c .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-sQTBsCyS5c .navbar {
    height: 70px;
  }
  .cid-sQTBsCyS5c .navbar.opened {
    height: auto;
  }
  .cid-sQTBsCyS5c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTBsDvUSp {
  background-image: url("../../../assets/images/250-280-super-flat-maxx-druck-2000x1052.jpg");
}
.cid-sQUCHhHx6C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUCHhHx6C .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUCHhHx6C .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUCHhHx6C .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUCHhHx6C .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUCHhHx6C .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUCHhHx6C .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQUCHhHx6C .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUCGbZbyH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUCGbZbyH .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUCGbZbyH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQUCGbZbyH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUCGbZbyH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUCGbZbyH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUCGbZbyH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUCGbZbyH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQUCGbZbyH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUCHNyyCm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQUCHNyyCm .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUCHNyyCm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUCHNyyCm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUCHNyyCm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUCHNyyCm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUCHNyyCm .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQUCHNyyCm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUCIFpbsi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUCIFpbsi .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUCIFpbsi .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQUCIFpbsi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUCIFpbsi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUCIFpbsi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUCIFpbsi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUCIFpbsi .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQUCIFpbsi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUF3PFqXg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUF3PFqXg .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUF3PFqXg .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUF3PFqXg .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUF3PFqXg .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUF3PFqXg .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUF3PFqXg .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQUF3PFqXg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUF3kdwWy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUF3kdwWy .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUF3kdwWy .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQUF3kdwWy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUF3kdwWy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUF3kdwWy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUF3kdwWy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUF3kdwWy .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQUF3kdwWy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUF4iAsMx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sQUF4iAsMx .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUF4iAsMx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUF4iAsMx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUF4iAsMx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUF4iAsMx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUF4iAsMx .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQUF4iAsMx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUFUxmTcU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUFUxmTcU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUFUxmTcU .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sQUFUxmTcU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUFUxmTcU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUFUxmTcU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUFUxmTcU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUFUxmTcU .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sQUFUxmTcU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQUFUVbRkw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQUFUVbRkw .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUFUVbRkw .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQUFUVbRkw .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sQUFUVbRkw .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQUFUVbRkw .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sQUFUVbRkw .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sQUFUVbRkw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTBsI0JGL {
  background-image: url("../../../assets/images/250200-super-flat-maxx-scheibe-web-1701x945.jpg");
}
.cid-sQTBsIH6I7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sQTBsIH6I7 .mbr-section-title {
  color: #ffffff;
}
.cid-sSuGvRxTOE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSuGvRxTOE nav.navbar {
  position: fixed;
}
.cid-sSuGvRxTOE .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-sSuGvRxTOE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSuGvRxTOE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSuGvRxTOE .dropdown-item:hover,
.cid-sSuGvRxTOE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSuGvRxTOE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSuGvRxTOE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSuGvRxTOE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSuGvRxTOE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSuGvRxTOE .nav-link {
  position: relative;
}
.cid-sSuGvRxTOE .container {
  display: flex;
  margin: auto;
}
.cid-sSuGvRxTOE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSuGvRxTOE .dropdown-menu,
.cid-sSuGvRxTOE .navbar.opened {
  background: #ffffff !important;
}
.cid-sSuGvRxTOE .nav-item:focus,
.cid-sSuGvRxTOE .nav-link:focus {
  outline: none;
}
.cid-sSuGvRxTOE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSuGvRxTOE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSuGvRxTOE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSuGvRxTOE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSuGvRxTOE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSuGvRxTOE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSuGvRxTOE .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-sSuGvRxTOE .navbar.opened {
  transition: all 0.3s;
}
.cid-sSuGvRxTOE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSuGvRxTOE .navbar .navbar-logo img {
  width: auto;
}
.cid-sSuGvRxTOE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSuGvRxTOE .navbar.collapsed {
  justify-content: center;
}
.cid-sSuGvRxTOE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSuGvRxTOE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSuGvRxTOE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSuGvRxTOE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSuGvRxTOE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSuGvRxTOE .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-sSuGvRxTOE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSuGvRxTOE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSuGvRxTOE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSuGvRxTOE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSuGvRxTOE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSuGvRxTOE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSuGvRxTOE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSuGvRxTOE .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-sSuGvRxTOE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSuGvRxTOE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSuGvRxTOE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSuGvRxTOE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSuGvRxTOE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSuGvRxTOE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSuGvRxTOE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSuGvRxTOE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSuGvRxTOE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSuGvRxTOE .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-sSuGvRxTOE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSuGvRxTOE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSuGvRxTOE .dropdown-item.active,
.cid-sSuGvRxTOE .dropdown-item:active {
  background-color: transparent;
}
.cid-sSuGvRxTOE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSuGvRxTOE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSuGvRxTOE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSuGvRxTOE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSuGvRxTOE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSuGvRxTOE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSuGvRxTOE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSuGvRxTOE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSuGvRxTOE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSuGvRxTOE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSuGvRxTOE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSuGvRxTOE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSuGvRxTOE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSuGvRxTOE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSuGvRxTOE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSuGvRxTOE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSuGvRxTOE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSuGvRxTOE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSuGvRxTOE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSuGvRxTOE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSuGvRxTOE .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-sSuGvRxTOE .navbar {
    height: 70px;
  }
  .cid-sSuGvRxTOE .navbar.opened {
    height: auto;
  }
  .cid-sSuGvRxTOE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSuGvS45A9 {
  background-image: url("../../../assets/images/058-1-1500x1500.jpg");
}
.cid-sSuGvSFcZR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSuGvSFcZR .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSuGvSFcZR .img-item {
  position: relative;
}
.cid-sSuGvSFcZR .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sSuGvSFcZR .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sSuGvSFcZR .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sSuGvTfrJx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSuGvTfrJx .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sSuGvTfrJx .card {
    margin-bottom: 2rem!important;
  }
  .cid-sSuGvTfrJx .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sSuGvTfrJx .link-wrap {
    align-items: center;
  }
}
.cid-sSuGvTfrJx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSuGvTQGF8 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sSuGvTQGF8 .carousel {
  width: 100%;
}
.cid-sSuGvTQGF8 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sSuGvTQGF8 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sSuGvTQGF8 .mbr-overlay {
  z-index: 1;
}
.cid-sSuGvTQGF8 .carousel-caption {
  bottom: 40px;
}
.cid-sSuGvTQGF8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSuGvTQGF8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSuGvTQGF8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSuGvTQGF8 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSuGvTQGF8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSuGvTQGF8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSuGvTQGF8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSuGvTQGF8 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSuGvTQGF8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSuGvTQGF8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSuGvTQGF8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSuGvTQGF8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSuGvTQGF8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sSuGvTQGF8 .carousel-indicators li.active,
.cid-sSuGvTQGF8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSuGvTQGF8 .carousel-indicators li::after,
.cid-sSuGvTQGF8 .carousel-indicators li::before {
  content: none;
}
.cid-sSuGvTQGF8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSuGvTQGF8 .carousel-indicators {
    display: none !important;
  }
}
.cid-sSuGvTQGF8 H5 {
  color: #e43f3f;
}
.cid-sSuGvTQGF8 P {
  color: #e43f3f;
}
.cid-sSuGvVdiRK {
  background-image: url("../../../assets/images/window-1500x1500.jpg");
}
.cid-sSuGvVO4aL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sSuGvVO4aL .mbr-section-title {
  color: #ffffff;
}
.cid-sSwkZJcmAJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSwkZJcmAJ nav.navbar {
  position: fixed;
}
.cid-sSwkZJcmAJ .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-sSwkZJcmAJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSwkZJcmAJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSwkZJcmAJ .dropdown-item:hover,
.cid-sSwkZJcmAJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSwkZJcmAJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSwkZJcmAJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSwkZJcmAJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSwkZJcmAJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSwkZJcmAJ .nav-link {
  position: relative;
}
.cid-sSwkZJcmAJ .container {
  display: flex;
  margin: auto;
}
.cid-sSwkZJcmAJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSwkZJcmAJ .dropdown-menu,
.cid-sSwkZJcmAJ .navbar.opened {
  background: #ffffff !important;
}
.cid-sSwkZJcmAJ .nav-item:focus,
.cid-sSwkZJcmAJ .nav-link:focus {
  outline: none;
}
.cid-sSwkZJcmAJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSwkZJcmAJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSwkZJcmAJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSwkZJcmAJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSwkZJcmAJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSwkZJcmAJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSwkZJcmAJ .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-sSwkZJcmAJ .navbar.opened {
  transition: all 0.3s;
}
.cid-sSwkZJcmAJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSwkZJcmAJ .navbar .navbar-logo img {
  width: auto;
}
.cid-sSwkZJcmAJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSwkZJcmAJ .navbar.collapsed {
  justify-content: center;
}
.cid-sSwkZJcmAJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSwkZJcmAJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSwkZJcmAJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSwkZJcmAJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSwkZJcmAJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSwkZJcmAJ .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-sSwkZJcmAJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSwkZJcmAJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSwkZJcmAJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSwkZJcmAJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSwkZJcmAJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSwkZJcmAJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSwkZJcmAJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSwkZJcmAJ .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-sSwkZJcmAJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSwkZJcmAJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSwkZJcmAJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSwkZJcmAJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSwkZJcmAJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSwkZJcmAJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSwkZJcmAJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSwkZJcmAJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSwkZJcmAJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSwkZJcmAJ .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-sSwkZJcmAJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSwkZJcmAJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSwkZJcmAJ .dropdown-item.active,
.cid-sSwkZJcmAJ .dropdown-item:active {
  background-color: transparent;
}
.cid-sSwkZJcmAJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSwkZJcmAJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSwkZJcmAJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSwkZJcmAJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSwkZJcmAJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSwkZJcmAJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSwkZJcmAJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSwkZJcmAJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSwkZJcmAJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSwkZJcmAJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSwkZJcmAJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSwkZJcmAJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSwkZJcmAJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSwkZJcmAJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSwkZJcmAJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSwkZJcmAJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSwkZJcmAJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSwkZJcmAJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSwkZJcmAJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSwkZJcmAJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSwkZJcmAJ .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-sSwkZJcmAJ .navbar {
    height: 70px;
  }
  .cid-sSwkZJcmAJ .navbar.opened {
    height: auto;
  }
  .cid-sSwkZJcmAJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSwkZJXsPc {
  background-image: url("../../../assets/images/001-610-1500x1500.jpg");
}
.cid-sSwkZKuQdY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSwkZKuQdY .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSwkZKuQdY .img-item {
  position: relative;
}
.cid-sSwkZKuQdY .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sSwkZKuQdY .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sSwkZKuQdY .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sSwkZL7mAv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSwkZL7mAv .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sSwkZL7mAv .card {
    margin-bottom: 2rem!important;
  }
  .cid-sSwkZL7mAv .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sSwkZL7mAv .link-wrap {
    align-items: center;
  }
}
.cid-sSwkZL7mAv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSwkZLVISr {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sSwkZLVISr .carousel {
  width: 100%;
}
.cid-sSwkZLVISr .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sSwkZLVISr .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sSwkZLVISr .mbr-overlay {
  z-index: 1;
}
.cid-sSwkZLVISr .carousel-caption {
  bottom: 40px;
}
.cid-sSwkZLVISr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSwkZLVISr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSwkZLVISr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSwkZLVISr .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSwkZLVISr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSwkZLVISr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSwkZLVISr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSwkZLVISr .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSwkZLVISr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSwkZLVISr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSwkZLVISr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSwkZLVISr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSwkZLVISr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sSwkZLVISr .carousel-indicators li.active,
.cid-sSwkZLVISr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSwkZLVISr .carousel-indicators li::after,
.cid-sSwkZLVISr .carousel-indicators li::before {
  content: none;
}
.cid-sSwkZLVISr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSwkZLVISr .carousel-indicators {
    display: none !important;
  }
}
.cid-sSwkZLVISr H5 {
  color: #e43f3f;
}
.cid-sSwkZLVISr P {
  color: #e43f3f;
}
.cid-sSwkZNGesw {
  background-image: url("../../../assets/images/alca-rear-classic-scheibe-web-2000x1200.jpg");
}
.cid-sSwkZOgxBl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sSwkZOgxBl .mbr-section-title {
  color: #ffffff;
}
.cid-sSBtcgQcLW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSBtcgQcLW nav.navbar {
  position: fixed;
}
.cid-sSBtcgQcLW .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-sSBtcgQcLW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSBtcgQcLW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSBtcgQcLW .dropdown-item:hover,
.cid-sSBtcgQcLW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSBtcgQcLW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSBtcgQcLW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSBtcgQcLW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSBtcgQcLW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSBtcgQcLW .nav-link {
  position: relative;
}
.cid-sSBtcgQcLW .container {
  display: flex;
  margin: auto;
}
.cid-sSBtcgQcLW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSBtcgQcLW .dropdown-menu,
.cid-sSBtcgQcLW .navbar.opened {
  background: #ffffff !important;
}
.cid-sSBtcgQcLW .nav-item:focus,
.cid-sSBtcgQcLW .nav-link:focus {
  outline: none;
}
.cid-sSBtcgQcLW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSBtcgQcLW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSBtcgQcLW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSBtcgQcLW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSBtcgQcLW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSBtcgQcLW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSBtcgQcLW .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-sSBtcgQcLW .navbar.opened {
  transition: all 0.3s;
}
.cid-sSBtcgQcLW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSBtcgQcLW .navbar .navbar-logo img {
  width: auto;
}
.cid-sSBtcgQcLW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSBtcgQcLW .navbar.collapsed {
  justify-content: center;
}
.cid-sSBtcgQcLW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSBtcgQcLW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSBtcgQcLW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSBtcgQcLW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSBtcgQcLW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSBtcgQcLW .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-sSBtcgQcLW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSBtcgQcLW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSBtcgQcLW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSBtcgQcLW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSBtcgQcLW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSBtcgQcLW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSBtcgQcLW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSBtcgQcLW .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-sSBtcgQcLW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSBtcgQcLW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSBtcgQcLW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSBtcgQcLW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSBtcgQcLW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSBtcgQcLW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSBtcgQcLW .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSBtcgQcLW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSBtcgQcLW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSBtcgQcLW .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-sSBtcgQcLW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSBtcgQcLW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSBtcgQcLW .dropdown-item.active,
.cid-sSBtcgQcLW .dropdown-item:active {
  background-color: transparent;
}
.cid-sSBtcgQcLW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSBtcgQcLW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSBtcgQcLW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSBtcgQcLW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSBtcgQcLW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSBtcgQcLW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSBtcgQcLW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSBtcgQcLW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSBtcgQcLW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSBtcgQcLW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSBtcgQcLW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSBtcgQcLW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSBtcgQcLW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSBtcgQcLW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSBtcgQcLW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSBtcgQcLW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSBtcgQcLW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSBtcgQcLW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSBtcgQcLW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSBtcgQcLW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSBtcgQcLW .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-sSBtcgQcLW .navbar {
    height: 70px;
  }
  .cid-sSBtcgQcLW .navbar.opened {
    height: auto;
  }
  .cid-sSBtcgQcLW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSBtchvaOs {
  background-image: url("../../../assets/images/001-641-1500x1500.jpg");
}
.cid-sSRYnqt4yF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSRYnqt4yF .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSRYnqt4yF .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sSRYnqt4yF .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sSBtcirKOh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSBtcirKOh .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sSBtcirKOh .card {
    margin-bottom: 2rem!important;
  }
  .cid-sSBtcirKOh .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sSBtcirKOh .link-wrap {
    align-items: center;
  }
}
.cid-sSBtcirKOh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSBtcjbGIz {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sSBtcjbGIz .carousel {
  width: 100%;
}
.cid-sSBtcjbGIz .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sSBtcjbGIz .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sSBtcjbGIz .mbr-overlay {
  z-index: 1;
}
.cid-sSBtcjbGIz .carousel-caption {
  bottom: 40px;
}
.cid-sSBtcjbGIz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSBtcjbGIz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSBtcjbGIz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSBtcjbGIz .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSBtcjbGIz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSBtcjbGIz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSBtcjbGIz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSBtcjbGIz .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSBtcjbGIz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSBtcjbGIz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSBtcjbGIz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSBtcjbGIz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSBtcjbGIz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sSBtcjbGIz .carousel-indicators li.active,
.cid-sSBtcjbGIz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSBtcjbGIz .carousel-indicators li::after,
.cid-sSBtcjbGIz .carousel-indicators li::before {
  content: none;
}
.cid-sSBtcjbGIz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSBtcjbGIz .carousel-indicators {
    display: none !important;
  }
}
.cid-sSBtcjbGIz H5 {
  color: #e43f3f;
}
.cid-sSBtcjbGIz P {
  color: #e43f3f;
}
.cid-sSBtckgi2W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1b216d;
}
.cid-sSBtckgi2W .mbr-section-title {
  color: #ffffff;
}
.cid-sSBvctdXrF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSBvctdXrF nav.navbar {
  position: fixed;
}
.cid-sSBvctdXrF .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-sSBvctdXrF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSBvctdXrF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSBvctdXrF .dropdown-item:hover,
.cid-sSBvctdXrF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSBvctdXrF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSBvctdXrF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSBvctdXrF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSBvctdXrF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSBvctdXrF .nav-link {
  position: relative;
}
.cid-sSBvctdXrF .container {
  display: flex;
  margin: auto;
}
.cid-sSBvctdXrF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSBvctdXrF .dropdown-menu,
.cid-sSBvctdXrF .navbar.opened {
  background: #ffffff !important;
}
.cid-sSBvctdXrF .nav-item:focus,
.cid-sSBvctdXrF .nav-link:focus {
  outline: none;
}
.cid-sSBvctdXrF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSBvctdXrF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSBvctdXrF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSBvctdXrF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSBvctdXrF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSBvctdXrF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSBvctdXrF .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-sSBvctdXrF .navbar.opened {
  transition: all 0.3s;
}
.cid-sSBvctdXrF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSBvctdXrF .navbar .navbar-logo img {
  width: auto;
}
.cid-sSBvctdXrF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSBvctdXrF .navbar.collapsed {
  justify-content: center;
}
.cid-sSBvctdXrF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSBvctdXrF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSBvctdXrF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSBvctdXrF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSBvctdXrF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSBvctdXrF .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-sSBvctdXrF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSBvctdXrF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSBvctdXrF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSBvctdXrF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSBvctdXrF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSBvctdXrF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSBvctdXrF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSBvctdXrF .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-sSBvctdXrF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSBvctdXrF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSBvctdXrF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSBvctdXrF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSBvctdXrF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSBvctdXrF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSBvctdXrF .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSBvctdXrF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSBvctdXrF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSBvctdXrF .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-sSBvctdXrF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSBvctdXrF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSBvctdXrF .dropdown-item.active,
.cid-sSBvctdXrF .dropdown-item:active {
  background-color: transparent;
}
.cid-sSBvctdXrF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSBvctdXrF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSBvctdXrF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSBvctdXrF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSBvctdXrF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSBvctdXrF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSBvctdXrF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSBvctdXrF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSBvctdXrF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSBvctdXrF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSBvctdXrF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSBvctdXrF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSBvctdXrF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSBvctdXrF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSBvctdXrF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSBvctdXrF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSBvctdXrF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSBvctdXrF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSBvctdXrF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSBvctdXrF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSBvctdXrF .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-sSBvctdXrF .navbar {
    height: 70px;
  }
  .cid-sSBvctdXrF .navbar.opened {
    height: auto;
  }
  .cid-sSBvctdXrF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSBvcu8SQH {
  background-image: url("../../../assets/images/001-631-1500x1500.jpg");
}
.cid-sSBxeEJd3q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSBxeEJd3q .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSBxeEJd3q .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sSBxeEJd3q .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sSBvcv5jYp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSBvcv5jYp .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sSBvcv5jYp .card {
    margin-bottom: 2rem!important;
  }
  .cid-sSBvcv5jYp .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sSBvcv5jYp .link-wrap {
    align-items: center;
  }
}
.cid-sSBvcv5jYp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSBvcvPPPg {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sSBvcvPPPg .carousel {
  width: 100%;
}
.cid-sSBvcvPPPg .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sSBvcvPPPg .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sSBvcvPPPg .mbr-overlay {
  z-index: 1;
}
.cid-sSBvcvPPPg .carousel-caption {
  bottom: 40px;
}
.cid-sSBvcvPPPg .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSBvcvPPPg .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSBvcvPPPg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSBvcvPPPg .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSBvcvPPPg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSBvcvPPPg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSBvcvPPPg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSBvcvPPPg .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSBvcvPPPg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSBvcvPPPg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSBvcvPPPg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSBvcvPPPg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSBvcvPPPg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sSBvcvPPPg .carousel-indicators li.active,
.cid-sSBvcvPPPg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSBvcvPPPg .carousel-indicators li::after,
.cid-sSBvcvPPPg .carousel-indicators li::before {
  content: none;
}
.cid-sSBvcvPPPg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSBvcvPPPg .carousel-indicators {
    display: none !important;
  }
}
.cid-sSBvcvPPPg H5 {
  color: #e43f3f;
}
.cid-sSBvcvPPPg P {
  color: #e43f3f;
}
.cid-sSBxD38LMJ {
  background-image: url("../../../assets/images/heyner-rear-classic-scheibe-web-1701x945.jpg");
}
.cid-sSBvcwSigH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sSBvcwSigH .mbr-section-title {
  color: #ffffff;
}
.cid-sSBz5eRCOE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSBz5eRCOE nav.navbar {
  position: fixed;
}
.cid-sSBz5eRCOE .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-sSBz5eRCOE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSBz5eRCOE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSBz5eRCOE .dropdown-item:hover,
.cid-sSBz5eRCOE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSBz5eRCOE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSBz5eRCOE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSBz5eRCOE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSBz5eRCOE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSBz5eRCOE .nav-link {
  position: relative;
}
.cid-sSBz5eRCOE .container {
  display: flex;
  margin: auto;
}
.cid-sSBz5eRCOE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSBz5eRCOE .dropdown-menu,
.cid-sSBz5eRCOE .navbar.opened {
  background: #ffffff !important;
}
.cid-sSBz5eRCOE .nav-item:focus,
.cid-sSBz5eRCOE .nav-link:focus {
  outline: none;
}
.cid-sSBz5eRCOE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSBz5eRCOE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSBz5eRCOE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSBz5eRCOE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSBz5eRCOE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSBz5eRCOE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSBz5eRCOE .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-sSBz5eRCOE .navbar.opened {
  transition: all 0.3s;
}
.cid-sSBz5eRCOE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSBz5eRCOE .navbar .navbar-logo img {
  width: auto;
}
.cid-sSBz5eRCOE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSBz5eRCOE .navbar.collapsed {
  justify-content: center;
}
.cid-sSBz5eRCOE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSBz5eRCOE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSBz5eRCOE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSBz5eRCOE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSBz5eRCOE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSBz5eRCOE .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-sSBz5eRCOE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSBz5eRCOE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSBz5eRCOE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSBz5eRCOE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSBz5eRCOE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSBz5eRCOE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSBz5eRCOE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSBz5eRCOE .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-sSBz5eRCOE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSBz5eRCOE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSBz5eRCOE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSBz5eRCOE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSBz5eRCOE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSBz5eRCOE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSBz5eRCOE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSBz5eRCOE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSBz5eRCOE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSBz5eRCOE .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-sSBz5eRCOE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSBz5eRCOE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSBz5eRCOE .dropdown-item.active,
.cid-sSBz5eRCOE .dropdown-item:active {
  background-color: transparent;
}
.cid-sSBz5eRCOE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSBz5eRCOE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSBz5eRCOE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSBz5eRCOE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSBz5eRCOE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSBz5eRCOE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSBz5eRCOE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSBz5eRCOE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSBz5eRCOE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSBz5eRCOE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSBz5eRCOE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSBz5eRCOE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSBz5eRCOE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSBz5eRCOE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSBz5eRCOE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSBz5eRCOE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSBz5eRCOE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSBz5eRCOE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSBz5eRCOE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSBz5eRCOE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSBz5eRCOE .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-sSBz5eRCOE .navbar {
    height: 70px;
  }
  .cid-sSBz5eRCOE .navbar.opened {
    height: auto;
  }
  .cid-sSBz5eRCOE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSBz5fKEpy {
  background-image: url("../../../assets/images/001-621-1500x1500.jpg");
}
.cid-sSBz5gT5Qj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSBz5gT5Qj .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sSBz5gT5Qj .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sSBz5gT5Qj .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sSBz5hKxmJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSBz5hKxmJ .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sSBz5hKxmJ .card {
    margin-bottom: 2rem!important;
  }
  .cid-sSBz5hKxmJ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sSBz5hKxmJ .link-wrap {
    align-items: center;
  }
}
.cid-sSBz5hKxmJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSBz5ix0kx {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sSBz5ix0kx .carousel {
  width: 100%;
}
.cid-sSBz5ix0kx .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sSBz5ix0kx .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sSBz5ix0kx .mbr-overlay {
  z-index: 1;
}
.cid-sSBz5ix0kx .carousel-caption {
  bottom: 40px;
}
.cid-sSBz5ix0kx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSBz5ix0kx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSBz5ix0kx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSBz5ix0kx .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSBz5ix0kx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSBz5ix0kx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSBz5ix0kx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSBz5ix0kx .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSBz5ix0kx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSBz5ix0kx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSBz5ix0kx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSBz5ix0kx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSBz5ix0kx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sSBz5ix0kx .carousel-indicators li.active,
.cid-sSBz5ix0kx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSBz5ix0kx .carousel-indicators li::after,
.cid-sSBz5ix0kx .carousel-indicators li::before {
  content: none;
}
.cid-sSBz5ix0kx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSBz5ix0kx .carousel-indicators {
    display: none !important;
  }
}
.cid-sSBz5ix0kx H5 {
  color: #e43f3f;
}
.cid-sSBz5ix0kx P {
  color: #e43f3f;
}
.cid-sSBz5jAaOV {
  background-image: url("../../../assets/images/heyner-rear-flat-window-1701x945.jpg");
}
.cid-sSBz5kexuW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sSBz5kexuW .mbr-section-title {
  color: #ffffff;
}
