.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.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.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((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: #bedad4 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #2299aa !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bedad4 !important;
  border-color: #bedad4 !important;
  color: #386259 !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: #87bbaf !important;
  border-color: #87bbaf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #386259 !important;
  background-color: #87bbaf !important;
  border-color: #87bbaf !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d2e7e2 !important;
  border-color: #d2e7e2 !important;
  color: #41796c !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: #99c9be !important;
  border-color: #99c9be !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #41796c !important;
  background-color: #99c9be !important;
  border-color: #99c9be !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: #2299aa !important;
  border-color: #2299aa !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: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !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: #bedad4;
  color: #bedad4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #87bbaf !important;
  background-color: transparent!important;
  border-color: #87bbaf !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #386259 !important;
  background-color: #bedad4 !important;
  border-color: #bedad4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #d2e7e2;
  color: #d2e7e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #99c9be !important;
  background-color: transparent!important;
  border-color: #99c9be !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #41796c !important;
  background-color: #d2e7e2 !important;
  border-color: #d2e7e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #2299aa;
  color: #2299aa;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #145862 !important;
  background-color: transparent!important;
  border-color: #145862 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bedad4 !important;
}
.text-secondary {
  color: #d2e7e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #2299aa !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7db5a9 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #8fc4b7 !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: #114c55 !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: #bedad4;
}
.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: #2299aa;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bedad4;
  border-color: #bedad4;
  color: #417267;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bedad4;
}
.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: #6ad2e1;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #bedad4 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #bedad4;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bedad4;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bedad4;
}
.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: #bedad4;
  border-bottom-color: #bedad4;
}
.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: #000000 !important;
  background-color: #bedad4 !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: #d2e7e2 !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='%23bedad4' %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-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-su4sNr2NiI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-su4pkhZufw {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-su4pkhZufw .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-su4pkhZufw h4 {
  text-align: center;
}
.cid-su4pkhZufw p {
  text-align: center;
}
.cid-su4pkhZufw .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-su4ONcXg4O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-su4ONcXg4O img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su4ONcXg4O img:hover {
  transform: scale(1.1);
}
.cid-su4ONcXg4O .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su4ONcXg4O h2 {
  padding: 0;
  margin: 0;
}
.cid-su4ONcXg4O .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su4ONcXg4O .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su4ONcXg4O .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-su4ONcXg4O .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su4ONcXg4O .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su4ONcXg4O .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su4ONcXg4O .mbr-iconfont {
  margin: 0!important;
}
.cid-su4ONcXg4O .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su4ONcXg4O .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su4ONcXg4O .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su4ONcXg4O .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su4ONcXg4O .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su4ONcXg4O H2 {
  color: #333333;
}
.cid-su4ONcXg4O .mbr-text {
  color: #151618;
}
.cid-su4ONcXg4O H1 {
  color: #151618;
}
.cid-su4ONcXg4O H3 {
  color: #151618;
}
.cid-su4PuxyRKZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-su4PuxyRKZ img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su4PuxyRKZ img:hover {
  transform: scale(1.1);
}
.cid-su4PuxyRKZ .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su4PuxyRKZ h2 {
  padding: 0;
  margin: 0;
}
.cid-su4PuxyRKZ .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su4PuxyRKZ .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su4PuxyRKZ .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-su4PuxyRKZ .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su4PuxyRKZ .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su4PuxyRKZ .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su4PuxyRKZ .mbr-iconfont {
  margin: 0!important;
}
.cid-su4PuxyRKZ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su4PuxyRKZ .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su4PuxyRKZ .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su4PuxyRKZ .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su4PuxyRKZ .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su4PuxyRKZ H2 {
  color: #333333;
}
.cid-su4PuxyRKZ .mbr-text {
  color: #151618;
}
.cid-su4PuxyRKZ H1 {
  color: #151618;
}
.cid-su4PuxyRKZ H3 {
  color: #151618;
}
.cid-svOa7xEGZD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-svOa7xEGZD img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svOa7xEGZD img:hover {
  transform: scale(1.1);
}
.cid-svOa7xEGZD .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svOa7xEGZD h2 {
  padding: 0;
  margin: 0;
}
.cid-svOa7xEGZD .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svOa7xEGZD .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svOa7xEGZD .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-svOa7xEGZD .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-svOa7xEGZD .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-svOa7xEGZD .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-svOa7xEGZD .mbr-iconfont {
  margin: 0!important;
}
.cid-svOa7xEGZD .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svOa7xEGZD .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svOa7xEGZD .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-svOa7xEGZD .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-svOa7xEGZD .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svOa7xEGZD H2 {
  color: #333333;
}
.cid-svOa7xEGZD .mbr-text {
  color: #151618;
}
.cid-svOa7xEGZD H1 {
  color: #151618;
}
.cid-svOa7xEGZD H3 {
  color: #151618;
}
.cid-sx6WBpU7FI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sx6WBpU7FI img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sx6WBpU7FI img:hover {
  transform: scale(1.1);
}
.cid-sx6WBpU7FI .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sx6WBpU7FI h2 {
  padding: 0;
  margin: 0;
}
.cid-sx6WBpU7FI .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx6WBpU7FI .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sx6WBpU7FI .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-sx6WBpU7FI .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sx6WBpU7FI .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sx6WBpU7FI .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sx6WBpU7FI .mbr-iconfont {
  margin: 0!important;
}
.cid-sx6WBpU7FI .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sx6WBpU7FI .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sx6WBpU7FI .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sx6WBpU7FI .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sx6WBpU7FI .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sx6WBpU7FI H2 {
  color: #333333;
}
.cid-sx6WBpU7FI .mbr-text {
  color: #151618;
}
.cid-sx6WBpU7FI H1 {
  color: #151618;
}
.cid-sx6WBpU7FI H3 {
  color: #151618;
}
.cid-svObTYZKiT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2e7e2;
}
.cid-svObTYZKiT .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-svObTYZKiT .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-svObTYZKiT .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svObTYZKiT .text-box {
    padding: 2rem;
  }
}
.cid-svObTYZKiT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-svObTYZKiT .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-svObTYZKiT .line {
  left: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #bedad4;
  opacity: 0;
}
.cid-svObTYZKiT .lin:hover .line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s;
}
.cid-svObTYZKiT .small-img {
  width: 40%;
  margin: auto;
}
.cid-svObTYZKiT .text-box {
  text-align: center;
}
.cid-svObTYZKiT .mbr-section-title {
  text-align: center;
}
.cid-svObTYZKiT .mbr-text {
  padding-top: 10px;
}
.cid-svObTYZKiT .mbr-section-subtitle {
  color: #626262;
}
.cid-svObTYZKiT .text-white:hover {
  color: #000000 !important;
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-tz9kVMJCSt.popup-builder {
  background-color: #ffffff;
}
.cid-tz9kVMJCSt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9kVMJCSt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9kVMJCSt .modal-content,
.cid-tz9kVMJCSt .modal-dialog {
  height: auto;
}
.cid-tz9kVMJCSt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9kVMJCSt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9kVMJCSt .form-wrapper .mbr-form .form-group,
  .cid-tz9kVMJCSt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9kVMJCSt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9kVMJCSt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9kVMJCSt .mbr-text {
  text-align: center;
}
.cid-tz9kVMJCSt .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9kVMJCSt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9kVMJCSt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9kVMJCSt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9kVMJCSt .modal-open {
  overflow: hidden;
}
.cid-tz9kVMJCSt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9kVMJCSt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9kVMJCSt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9kVMJCSt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9kVMJCSt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9kVMJCSt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9kVMJCSt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9kVMJCSt .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9kVMJCSt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9kVMJCSt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9kVMJCSt .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9kVMJCSt .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9kVMJCSt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9kVMJCSt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9kVMJCSt .modal-header {
    padding: 1rem;
  }
}
.cid-tz9kVMJCSt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9kVMJCSt .modal-header .close svg {
  fill: #353535;
}
.cid-tz9kVMJCSt .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9kVMJCSt .modal-header .close:focus {
  outline: none;
}
.cid-tz9kVMJCSt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9kVMJCSt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9kVMJCSt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9kVMJCSt .modal-body {
    padding: 1rem;
  }
}
.cid-tz9kVMJCSt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9kVMJCSt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9kVMJCSt .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9kVMJCSt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9kVMJCSt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9kVMJCSt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9kVMJCSt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9kVMJCSt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9kVMJCSt .modal-lg,
  .cid-tz9kVMJCSt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9kVMJCSt .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9kVMJCSt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9kVMJCSt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9kVMJCSt .form-group {
  margin-bottom: 1rem;
}
.cid-tz9kVMJCSt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9kVMJCSt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9kVMJCSt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9kVMJCSt .mbr-section-btn {
  margin: 0;
}
.cid-tz9kVMJCSt .mbr-section-btn .btn {
  margin: 0;
}
.cid-sxcri9oM18.popup-builder {
  background-color: #ffffff;
}
.cid-sxcri9oM18.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcri9oM18.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcri9oM18 .modal-content,
.cid-sxcri9oM18 .modal-dialog {
  height: auto;
}
.cid-sxcri9oM18 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcri9oM18 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcri9oM18 .form-wrapper .mbr-form .form-group,
  .cid-sxcri9oM18 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcri9oM18 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcri9oM18 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcri9oM18 .mbr-text {
  text-align: center;
}
.cid-sxcri9oM18 .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcri9oM18 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcri9oM18 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcri9oM18 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcri9oM18 .modal-open {
  overflow: hidden;
}
.cid-sxcri9oM18 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcri9oM18 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcri9oM18 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcri9oM18 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcri9oM18 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcri9oM18 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcri9oM18 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcri9oM18 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcri9oM18 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcri9oM18 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcri9oM18 .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcri9oM18 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcri9oM18 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcri9oM18 .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcri9oM18 .modal-header .close:focus {
  outline: none;
}
.cid-sxcri9oM18 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcri9oM18 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcri9oM18 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcri9oM18 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcri9oM18 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcri9oM18 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcri9oM18 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcri9oM18 .modal-sm {
    max-width: 300px;
  }
  .cid-sxcri9oM18 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcri9oM18 .modal-lg,
  .cid-sxcri9oM18 .modal-xl {
    max-width: 800px;
  }
  .cid-sxcri9oM18 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcri9oM18 .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcri9oM18 .container {
    max-width: 1140px;
  }
}
.cid-sxcri9oM18 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcri9oM18 .container {
    max-width: 720px;
  }
}
.cid-sxcri9oM18 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcri9oM18 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcri9oM18 .form-group {
  margin-bottom: 1rem;
}
.cid-sxcri9oM18 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcri9oM18 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcri9oM18 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sv7Hc66Wx3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d2e7e2;
}
.cid-sv7Hc66Wx3 .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sv7Hc66Wx3 .panel-group {
  border: none;
}
.cid-sv7Hc66Wx3 .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-sv7Hc66Wx3 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sv7Hc66Wx3 .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sv7Hc66Wx3 .panel-body {
    padding: 0rem;
  }
}
.cid-sv7Hc66Wx3 .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-sv7Hc66Wx3 .img-col {
  padding: 0;
}
.cid-sv7Hc66Wx3 .img-item {
  height: 100%;
}
.cid-sv7Hc66Wx3 img {
  height: 100%;
  object-fit: cover;
}
.cid-sv7Hc66Wx3 .container-fluid {
  padding: 0 1rem;
}
.cid-sv7Hc66Wx3 .collapsed span {
  transform: rotate(0deg);
}
.cid-sv7Hc66Wx3 .panel-title {
  display: flex;
  align-items: center;
}
.cid-sv7Hc66Wx3 .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sv7Hc66Wx3 .panel-title-edit {
  color: #000000;
}
.cid-sv7Hc66Wx3 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sv7Hc66Wx3 .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sv7Hc66Wx3 .panel-title-edit,
.cid-sv7Hc66Wx3 .mbr-iconfont {
  color: #1b2026;
}
.cid-sv7Hc66Wx3 .panel-text {
  color: #151618;
}
.cid-sv7Hc66Wx3 H4 {
  color: #777777;
}
.cid-sw00BcaPKc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-sw00BcaPKc .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sw00BcaPKc .panel-group {
  border: none;
}
.cid-sw00BcaPKc .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-sw00BcaPKc .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sw00BcaPKc .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sw00BcaPKc .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sw00BcaPKc .content {
  margin: 5rem auto;
}
.cid-sw00BcaPKc .img-col {
  padding: 0;
}
.cid-sw00BcaPKc .img-item {
  height: 100%;
}
.cid-sw00BcaPKc img {
  height: 100%;
  object-fit: cover;
}
.cid-sw00BcaPKc .collapsed span {
  transform: rotate(0deg);
}
.cid-sw00BcaPKc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sw00BcaPKc p {
  margin-bottom: 0.3rem;
}
.cid-sw00BcaPKc .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sw00BcaPKc .panel-title-edit {
  color: #000000;
}
.cid-sw00BcaPKc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sw00BcaPKc .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sw00BcaPKc .panel-title-edit,
.cid-sw00BcaPKc .mbr-iconfont {
  color: #000000;
}
.cid-sw00BcaPKc .panel-text {
  color: #151618;
}
.cid-sw00BcaPKc H4 {
  color: #151618;
}
.cid-sw01AbJEE9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-sw01AbJEE9 .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sw01AbJEE9 .panel-group {
  border: none;
}
.cid-sw01AbJEE9 .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-sw01AbJEE9 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sw01AbJEE9 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sw01AbJEE9 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sw01AbJEE9 .content {
  margin: 5rem auto;
}
.cid-sw01AbJEE9 .img-col {
  padding: 0;
}
.cid-sw01AbJEE9 .img-item {
  height: 100%;
}
.cid-sw01AbJEE9 img {
  height: 100%;
  object-fit: cover;
}
.cid-sw01AbJEE9 .collapsed span {
  transform: rotate(0deg);
}
.cid-sw01AbJEE9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sw01AbJEE9 p {
  margin-bottom: 0.3rem;
}
.cid-sw01AbJEE9 .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sw01AbJEE9 .panel-title-edit {
  color: #000000;
}
.cid-sw01AbJEE9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sw01AbJEE9 .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sw01AbJEE9 .panel-title-edit,
.cid-sw01AbJEE9 .mbr-iconfont {
  color: #000000;
}
.cid-sw01AbJEE9 .panel-text {
  color: #151618;
}
.cid-sw01AbJEE9 H4 {
  color: #777777;
}
.cid-sv8ikWzHBs {
  padding-top: 60px;
  padding-bottom: 15px;
}
.cid-sv8ikWzHBs .mbr-subtitle {
  color: #ffffff;
  font-weight: 800;
}
.cid-sv8ikWzHBs .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sv8ikWzHBs .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.cid-sv8ikWzHBs .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sv8ikWzHBs .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-sv8ikWzHBs .timelines-container {
  margin-top: 60px;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #000000;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sv8ikWzHBs .container-fluid {
  padding: 0 2rem;
}
.cid-sv8ikWzHBs .separline:before,
.cid-sv8ikWzHBs .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #000000;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-sv8ikWzHBs .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #000000;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sv8ikWzHBs .container-fluid {
    padding: 0 1rem;
  }
  .cid-sv8ikWzHBs .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-sv8ikWzHBs .separline:before,
  .cid-sv8ikWzHBs .first-separline:before {
    left: -10px !important;
  }
  .cid-sv8ikWzHBs .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-sv8ikWzHBs .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sv8ikWzHBs .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sv8ikWzHBs .time-line-date-content p {
    float: left !important;
  }
  .cid-sv8ikWzHBs .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-sv8ikWzHBs .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-sv8ikWzHBs .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #000000;
}
.cid-sv8ikWzHBs .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  color: #000000;
}
.cid-sw4jZWqauL {
  padding-top: 15px;
  padding-bottom: 60px;
}
.cid-sw4jZWqauL .mbr-subtitle {
  color: #ffffff;
  font-weight: 800;
}
.cid-sw4jZWqauL .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sw4jZWqauL .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.cid-sw4jZWqauL .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sw4jZWqauL .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-sw4jZWqauL .timelines-container {
  margin-top: 60px;
}
.cid-sw4jZWqauL .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-sw4jZWqauL .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #000000;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sw4jZWqauL .container-fluid {
  padding: 0 2rem;
}
.cid-sw4jZWqauL .separline:before,
.cid-sw4jZWqauL .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #000000;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-sw4jZWqauL .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #000000;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sw4jZWqauL .container-fluid {
    padding: 0 1rem;
  }
  .cid-sw4jZWqauL .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-sw4jZWqauL .separline:before,
  .cid-sw4jZWqauL .first-separline:before {
    left: -10px !important;
  }
  .cid-sw4jZWqauL .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-sw4jZWqauL .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sw4jZWqauL .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sw4jZWqauL .time-line-date-content p {
    float: left !important;
  }
  .cid-sw4jZWqauL .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-sw4jZWqauL .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-sw4jZWqauL .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #000000;
}
.cid-sw4jZWqauL .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  color: #000000;
}
.cid-szb97DEVey {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/leggero-camp-89-90-554x462.jpg");
}
.cid-szb97DEVey .container-fluid {
  padding: 0 3rem;
}
.cid-szb97DEVey .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-szb97DEVey .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-szb97DEVey .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-szb97DEVey .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-szb97DEVey .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-szb97DEVey a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-szb97DEVey a.close:hover {
  color: #ffffff;
}
.cid-szb97DEVey svg {
  transition: all 0.5s ease-in;
}
.cid-szb97DEVey svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-szb97DEVey svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-szb97DEVey svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-szb97DEVey .container-fluid {
    padding: 0 1rem;
  }
}
.cid-szb9nLjP4B {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/leggero-classico-96-3-554x462.jpg");
}
.cid-szb9nLjP4B .container-fluid {
  padding: 0 3rem;
}
.cid-szb9nLjP4B .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-szb9nLjP4B .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-szb9nLjP4B .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-szb9nLjP4B .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-szb9nLjP4B .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-szb9nLjP4B a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-szb9nLjP4B a.close:hover {
  color: #ffffff;
}
.cid-szb9nLjP4B svg {
  transition: all 0.5s ease-in;
}
.cid-szb9nLjP4B svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-szb9nLjP4B svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-szb9nLjP4B svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-szb9nLjP4B .container-fluid {
    padding: 0 1rem;
  }
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd1lGQ.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd1lGQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd1lGQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd1lGQ .modal-content,
.cid-sxcrnd1lGQ .modal-dialog {
  height: auto;
}
.cid-sxcrnd1lGQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd1lGQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd1lGQ .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd1lGQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd1lGQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd1lGQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd1lGQ .mbr-text {
  text-align: center;
}
.cid-sxcrnd1lGQ .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd1lGQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd1lGQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd1lGQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd1lGQ .modal-open {
  overflow: hidden;
}
.cid-sxcrnd1lGQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd1lGQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd1lGQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd1lGQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd1lGQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd1lGQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd1lGQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd1lGQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd1lGQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd1lGQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd1lGQ .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd1lGQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd1lGQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd1lGQ .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd1lGQ .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd1lGQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd1lGQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd1lGQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd1lGQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd1lGQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd1lGQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd1lGQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd1lGQ .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd1lGQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd1lGQ .modal-lg,
  .cid-sxcrnd1lGQ .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd1lGQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd1lGQ .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd1lGQ .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd1lGQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd1lGQ .container {
    max-width: 720px;
  }
}
.cid-sxcrnd1lGQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd1lGQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd1lGQ .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd1lGQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd1lGQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd1lGQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfQWT.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUfQWT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUfQWT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUfQWT .modal-content,
.cid-tz9ldUfQWT .modal-dialog {
  height: auto;
}
.cid-tz9ldUfQWT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUfQWT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUfQWT .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUfQWT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUfQWT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUfQWT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUfQWT .mbr-text {
  text-align: center;
}
.cid-tz9ldUfQWT .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUfQWT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUfQWT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUfQWT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUfQWT .modal-open {
  overflow: hidden;
}
.cid-tz9ldUfQWT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUfQWT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUfQWT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUfQWT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUfQWT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUfQWT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUfQWT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUfQWT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUfQWT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUfQWT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUfQWT .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUfQWT .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUfQWT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUfQWT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfQWT .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUfQWT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUfQWT .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUfQWT .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUfQWT .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUfQWT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUfQWT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUfQWT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfQWT .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUfQWT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUfQWT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfQWT .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUfQWT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUfQWT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUfQWT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUfQWT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUfQWT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUfQWT .modal-lg,
  .cid-tz9ldUfQWT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUfQWT .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUfQWT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUfQWT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUfQWT .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUfQWT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUfQWT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUfQWT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfQWT .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUfQWT .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIpI9J6GK0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIpI9J6GK0 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sIpI9J6GK0 img:hover {
  transform: scale(1.1);
}
.cid-sIpI9J6GK0 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sIpI9J6GK0 h2 {
  padding: 0;
  margin: 0;
}
.cid-sIpI9J6GK0 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIpI9J6GK0 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sIpI9J6GK0 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sIpI9J6GK0 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-sIpI9J6GK0 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sIpI9J6GK0 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sIpI9J6GK0 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sIpI9J6GK0 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sIpI9J6GK0 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sIpI9J6GK0 H2 {
  color: #333333;
}
.cid-sIpI9J6GK0 .mbr-text {
  color: #151618;
}
.cid-svHpX5Krer {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHpX5Krer img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svHpX5Krer img:hover {
  transform: scale(1.1);
}
.cid-svHpX5Krer .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svHpX5Krer h2 {
  padding: 0;
  margin: 0;
}
.cid-svHpX5Krer .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svHpX5Krer .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svHpX5Krer .mbr-section-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-svHpX5Krer .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-svHpX5Krer .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-svHpX5Krer .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svHpX5Krer .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svHpX5Krer .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-svHpX5Krer .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svHpX5Krer H2 {
  color: #333333;
}
.cid-svHpX5Krer .mbr-text {
  color: #151618;
}
.cid-svHpX5Wj5x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHpX5Wj5x img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svHpX5Wj5x img:hover {
  transform: scale(1.1);
}
.cid-svHpX5Wj5x .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svHpX5Wj5x h2 {
  padding: 0;
  margin: 0;
}
.cid-svHpX5Wj5x .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svHpX5Wj5x .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svHpX5Wj5x .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-svHpX5Wj5x .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-svHpX5Wj5x .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-svHpX5Wj5x .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svHpX5Wj5x .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svHpX5Wj5x .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-svHpX5Wj5x .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svHpX5Wj5x H2 {
  color: #333333;
}
.cid-svHpX5Wj5x .mbr-text {
  color: #151618;
}
.cid-svHpX679Yf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHpX679Yf img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svHpX679Yf img:hover {
  transform: scale(1.1);
}
.cid-svHpX679Yf .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svHpX679Yf h2 {
  padding: 0;
  margin: 0;
}
.cid-svHpX679Yf .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svHpX679Yf .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svHpX679Yf .mbr-section-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-svHpX679Yf .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-svHpX679Yf .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-svHpX679Yf .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svHpX679Yf .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svHpX679Yf .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-svHpX679Yf .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svHpX679Yf H2 {
  color: #333333;
}
.cid-svHpX679Yf .mbr-text {
  color: #151618;
}
.cid-svLMVvmzYs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svLMVvmzYs img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svLMVvmzYs img:hover {
  transform: scale(1.1);
}
.cid-svLMVvmzYs .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svLMVvmzYs h2 {
  padding: 0;
  margin: 0;
}
.cid-svLMVvmzYs .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svLMVvmzYs .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svLMVvmzYs .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-svLMVvmzYs .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-svLMVvmzYs .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-svLMVvmzYs .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svLMVvmzYs .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svLMVvmzYs .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-svLMVvmzYs .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svLMVvmzYs H2 {
  color: #333333;
}
.cid-svLMVvmzYs .mbr-text {
  color: #151618;
}
.cid-svMPDnoNRB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-svMPDnoNRB .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-svMPDnoNRB .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svMPDnoNRB .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-svMPDnoNRB .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-svMPDnoNRB .row .row {
    flex-direction: column-reverse;
  }
  .cid-svMPDnoNRB .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svMPDnoNRB .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-svMPDnoNRB .card-subtitle {
  color: #0095ff;
}
.cid-svMPDnoNRB .mbr-text {
  color: #555555;
}
.cid-svMPDnoNRB .mbr-text,
.cid-svMPDnoNRB .mbr-section-btn {
  color: #000000;
}
.cid-svMQ7qh3wC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-svMQ7qh3wC .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-svMQ7qh3wC .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svMQ7qh3wC .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-svMQ7qh3wC .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-svMQ7qh3wC .row .row {
    flex-direction: column-reverse;
  }
  .cid-svMQ7qh3wC .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svMQ7qh3wC .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-svMQ7qh3wC .card-subtitle {
  color: #0095ff;
}
.cid-svMQ7qh3wC .mbr-text {
  color: #555555;
}
.cid-svMQ7qh3wC .mbr-text,
.cid-svMQ7qh3wC .mbr-section-btn {
  color: #151618;
}
.cid-svLL9YaSP3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leggero-enso-fahrradanhaenger-fuer-1-kind-1920x1280.jpg");
}
.cid-svLL9YaSP3 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-svLL9YaSP3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-svLL9YaSP3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-svLL9YaSP3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-svMAVgpNne {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #d2e7e2;
}
@media (max-width: 767px) {
  .cid-svMAVgpNne .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-svMAVgpNne .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-svMAVgpNne .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-svMAVgpNne .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-svMAVgpNne .row {
    margin: 0;
  }
}
.cid-svMAVgpNne .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-sx5xAsVWpf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx5xAsVWpf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sx5xAsVWpf .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sx5xAsVWpf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sx5xAsVWpf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sx5xAsVWpf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sx5xAsVWpf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sx5xAsVWpf .carousel-control,
.cid-sx5xAsVWpf .close {
  background: #1b1b1b;
}
.cid-sx5xAsVWpf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sx5xAsVWpf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sx5xAsVWpf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sx5xAsVWpf .carousel-control-next span {
  margin-left: 5px;
}
.cid-sx5xAsVWpf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sx5xAsVWpf .close::before {
  content: '\e91a';
}
.cid-sx5xAsVWpf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sx5xAsVWpf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sx5xAsVWpf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5xAsVWpf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sx5xAsVWpf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sx5xAsVWpf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sx5xAsVWpf .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-sx5xAsVWpf .carousel-indicators li.active,
.cid-sx5xAsVWpf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sx5xAsVWpf .carousel-indicators li::after,
.cid-sx5xAsVWpf .carousel-indicators li::before {
  content: none;
}
.cid-sx5xAsVWpf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sx5xAsVWpf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sx5xAsVWpf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sx5xAsVWpf .carousel-indicators {
    display: none;
  }
}
.cid-sx5xAsVWpf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sx5xAsVWpf .carousel-inner > .active {
  display: block;
}
.cid-sx5xAsVWpf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5xAsVWpf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5xAsVWpf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sx5xAsVWpf .carousel-control,
  .cid-sx5xAsVWpf .carousel-indicators,
  .cid-sx5xAsVWpf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sx5xAsVWpf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sx5xAsVWpf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sx5xAsVWpf .carousel-indicators .active,
.cid-sx5xAsVWpf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sx5xAsVWpf .carousel-indicators .active {
  background: #fff;
}
.cid-sx5xAsVWpf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sx5xAsVWpf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sx5xAsVWpf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sx5xAsVWpf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sx5xAsVWpf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sx5xAsVWpf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sx5xAsVWpf .carousel {
  width: 100%;
}
.cid-sx5xAsVWpf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sx5xAsVWpf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sx5xAsVWpf .modal.fade .modal-dialog,
.cid-sx5xAsVWpf .modal.in .modal-dialog {
  transform: none;
}
.cid-sx5xAsVWpf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sx5xAsVWpf H6 {
  text-align: center;
}
.cid-sy2nLqjJ7k {
  background-color: #ffffff;
}
.cid-sy2nLqjJ7k [class^="socicon-"]:before,
.cid-sy2nLqjJ7k [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sy2nLqjJ7k .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sy2nLqjJ7k .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bedad4, #d2e7e2);
  display: inline-block;
}
.cid-sy2nLqjJ7k .socicon {
  color: #232323;
}
.cid-sy2nLqjJ7k .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #232323;
  color: #232323;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer;
}
.cid-sy2nLqjJ7k .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sy2nLqjJ7k .btn-social:hover {
  color: #fff;
  background: #232323;
}
.cid-sy2nLqjJ7k .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sy2nLqjJ7k .btn-social:hover + .btn {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .cid-sy2nLqjJ7k {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .cid-sy2nLqjJ7k .btn {
    font-size: 20px !important;
  }
  .cid-sy2nLqjJ7k .btn-social {
    margin-right: 0.1rem !important;
    margin-left: 0.1rem !important;
  }
}
@media (min-width: 767px) {
  .cid-sy2nLqjJ7k {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd1dJE.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd1dJE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd1dJE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd1dJE .modal-content,
.cid-sxcrnd1dJE .modal-dialog {
  height: auto;
}
.cid-sxcrnd1dJE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd1dJE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd1dJE .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd1dJE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd1dJE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd1dJE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd1dJE .mbr-text {
  text-align: center;
}
.cid-sxcrnd1dJE .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd1dJE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd1dJE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd1dJE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd1dJE .modal-open {
  overflow: hidden;
}
.cid-sxcrnd1dJE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd1dJE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd1dJE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd1dJE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd1dJE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd1dJE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd1dJE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd1dJE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd1dJE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd1dJE .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd1dJE .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd1dJE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd1dJE .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd1dJE .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd1dJE .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd1dJE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd1dJE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd1dJE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd1dJE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd1dJE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd1dJE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd1dJE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd1dJE .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd1dJE .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd1dJE .modal-lg,
  .cid-sxcrnd1dJE .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd1dJE .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd1dJE .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd1dJE .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd1dJE .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd1dJE .container {
    max-width: 720px;
  }
}
.cid-sxcrnd1dJE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd1dJE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd1dJE .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd1dJE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd1dJE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd1dJE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfIEX.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUfIEX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUfIEX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUfIEX .modal-content,
.cid-tz9ldUfIEX .modal-dialog {
  height: auto;
}
.cid-tz9ldUfIEX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUfIEX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUfIEX .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUfIEX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUfIEX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUfIEX .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUfIEX .mbr-text {
  text-align: center;
}
.cid-tz9ldUfIEX .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUfIEX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUfIEX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUfIEX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUfIEX .modal-open {
  overflow: hidden;
}
.cid-tz9ldUfIEX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUfIEX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUfIEX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUfIEX .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUfIEX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUfIEX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUfIEX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUfIEX .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUfIEX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUfIEX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUfIEX .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUfIEX .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUfIEX .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUfIEX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfIEX .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUfIEX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUfIEX .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUfIEX .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUfIEX .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUfIEX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUfIEX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUfIEX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfIEX .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUfIEX .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUfIEX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfIEX .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUfIEX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUfIEX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUfIEX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUfIEX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUfIEX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUfIEX .modal-lg,
  .cid-tz9ldUfIEX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUfIEX .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUfIEX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUfIEX .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUfIEX .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUfIEX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUfIEX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUfIEX .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfIEX .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUfIEX .mbr-section-btn .btn {
  margin: 0;
}
.cid-svY7hmYncC {
  background-image: url("../../../assets/images/leggero-trolley-max-kaufen-1-1920x1280.jpg");
}
.cid-svY7hmYncC .mbr-section-title {
  color: #151618;
}
.cid-svY7hmYncC .mbr-text,
.cid-svY7hmYncC .mbr-section-btn {
  color: #151618;
}
.cid-svY7L2lheX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #8bc3ca;
}
@media (min-width: 992px) {
  .cid-svY7L2lheX .carousel {
    min-height: 500px;
  }
  .cid-svY7L2lheX .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-svY7L2lheX .carousel {
    min-height: 325px;
  }
  .cid-svY7L2lheX .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-svY7L2lheX .carousel {
    min-height: 275px;
  }
  .cid-svY7L2lheX .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-svY7L2lheX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-svY7L2lheX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-svY7L2lheX .carousel,
.cid-svY7L2lheX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-svY7L2lheX .item-wrapper {
  width: 100%;
}
.cid-svY7L2lheX .carousel-caption {
  bottom: 40px;
}
.cid-svY7L2lheX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-svY7L2lheX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-svY7L2lheX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-svY7L2lheX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-svY7L2lheX .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-svY7L2lheX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svY7L2lheX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-svY7L2lheX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svY7L2lheX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-svY7L2lheX .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-svY7L2lheX .carousel-indicators li.active,
.cid-svY7L2lheX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-svY7L2lheX .carousel-indicators li::after,
.cid-svY7L2lheX .carousel-indicators li::before {
  content: none;
}
.cid-svY7L2lheX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-svY7L2lheX .carousel-indicators {
    display: none !important;
  }
}
.cid-svYfqORAf4 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-svYfqORAf4 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-svYfqORAf4 .card {
    margin-bottom: 2rem!important;
  }
  .cid-svYfqORAf4 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-svYfqORAf4 .link-wrap {
    align-items: center;
  }
}
.cid-svYfqORAf4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-svYceEYAUg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #8bc3ca;
}
.cid-svYceEYAUg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-svYceEYAUg .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-svYceEYAUg .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-svYceEYAUg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-svYceEYAUg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-svYceEYAUg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-svYceEYAUg .carousel-control,
.cid-svYceEYAUg .close {
  background: #1b1b1b;
}
.cid-svYceEYAUg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-svYceEYAUg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-svYceEYAUg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-svYceEYAUg .carousel-control-next span {
  margin-left: 5px;
}
.cid-svYceEYAUg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-svYceEYAUg .close::before {
  content: '\e91a';
}
.cid-svYceEYAUg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-svYceEYAUg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-svYceEYAUg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svYceEYAUg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-svYceEYAUg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svYceEYAUg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-svYceEYAUg .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-svYceEYAUg .carousel-indicators li.active,
.cid-svYceEYAUg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-svYceEYAUg .carousel-indicators li::after,
.cid-svYceEYAUg .carousel-indicators li::before {
  content: none;
}
.cid-svYceEYAUg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-svYceEYAUg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-svYceEYAUg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-svYceEYAUg .carousel-indicators {
    display: none;
  }
}
.cid-svYceEYAUg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-svYceEYAUg .carousel-inner > .active {
  display: block;
}
.cid-svYceEYAUg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svYceEYAUg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svYceEYAUg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-svYceEYAUg .carousel-control,
  .cid-svYceEYAUg .carousel-indicators,
  .cid-svYceEYAUg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-svYceEYAUg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-svYceEYAUg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svYceEYAUg .carousel-indicators .active,
.cid-svYceEYAUg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-svYceEYAUg .carousel-indicators .active {
  background: #fff;
}
.cid-svYceEYAUg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-svYceEYAUg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-svYceEYAUg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-svYceEYAUg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-svYceEYAUg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-svYceEYAUg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-svYceEYAUg .carousel {
  width: 100%;
}
.cid-svYceEYAUg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-svYceEYAUg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-svYceEYAUg .modal.fade .modal-dialog,
.cid-svYceEYAUg .modal.in .modal-dialog {
  transform: none;
}
.cid-svYceEYAUg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-svYceEYAUg H6 {
  text-align: center;
}
.cid-svYceEYAUg H3 {
  color: #ffffff;
}
.cid-svYceEYAUg H4 {
  color: #ffffff;
}
.cid-svYbAR9S1J {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-svYbAR9S1J .mbr-section-title {
  color: #8bc3ca;
}
.cid-svYbAR9S1J .mbr-section-subtitle {
  color: #8bc3ca;
}
.cid-svY8xvJjD9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-svY8xvJjD9 img,
.cid-svY8xvJjD9 .item-img {
  width: 100%;
}
.cid-svY8xvJjD9 .item:focus,
.cid-svY8xvJjD9 span:focus {
  outline: none;
}
.cid-svY8xvJjD9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svY8xvJjD9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svY8xvJjD9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svY8xvJjD9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-svY8xvJjD9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svY8xvJjD9 .mbr-section-title {
  color: #232323;
}
.cid-svY8xvJjD9 .mbr-text,
.cid-svY8xvJjD9 .mbr-section-btn {
  text-align: left;
}
.cid-svY8xvJjD9 .item-title {
  text-align: left;
}
.cid-svY8xvJjD9 .item-subtitle {
  text-align: left;
}
.cid-svY9CNjisc {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #e6e6e6;
}
.cid-svY9CNjisc .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: fit-content;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  box-shadow: 0px 16px 32px 0px #0000000a;
}
.cid-svY9CNjisc .item-content {
  background: #fafafa;
  transition: all 0.3s;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
@media (max-width: 767px) {
  .cid-svY9CNjisc .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-svY9CNjisc .mbr-iconfont {
  position: absolute;
  bottom: -1.9rem;
  font-size: 1.4rem;
  right: 2rem;
  padding: 1.2rem 1.2rem;
  box-shadow: 0px 16px 32px 0px #0000000a;
  background: #ffffff;
  border-radius: 10px;
  color: #1b2026;
}
@media (max-width: 767px) {
  .cid-svY9CNjisc .mbr-iconfont {
    right: 1rem;
  }
}
.cid-svY9CNjisc img,
.cid-svY9CNjisc .item-img {
  position: relative;
  width: 100%;
}
.cid-svY9CNjisc .item:focus,
.cid-svY9CNjisc span:focus {
  outline: none;
}
.cid-svY9CNjisc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svY9CNjisc .mbr-section-title {
  color: #232323;
}
.cid-svY9CNjisc .mbr-text,
.cid-svY9CNjisc .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-svY9CNjisc .item-title {
  text-align: center;
  color: #1b2026;
}
.cid-svY9CNjisc .item-subtitle {
  text-align: left;
  color: #777777;
}
.cid-svY9CNjisc .mbr-section-subtitle {
  color: #777777;
}
.cid-szb8fy1UXX {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/leggero-trolley-max-kaufen-1-1920x1280.jpg");
}
.cid-szb8fy1UXX .container-fluid {
  padding: 0 3rem;
}
.cid-szb8fy1UXX .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-szb8fy1UXX .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-szb8fy1UXX .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-szb8fy1UXX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-szb8fy1UXX .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-szb8fy1UXX a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-szb8fy1UXX a.close:hover {
  color: #ffffff;
}
.cid-szb8fy1UXX svg {
  transition: all 0.5s ease-in;
}
.cid-szb8fy1UXX svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-szb8fy1UXX svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-szb8fy1UXX svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-szb8fy1UXX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swnrwWWit5 {
  background-image: url("../../../assets/images/leggero-trolley-max-kaufen-3-1920x1280.jpg");
}
.cid-swnrwWWit5 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-swnrwWWit5 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-swnrwWWit5 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swnrwWWit5 .card-wrapper {
    padding: 4rem;
  }
}
.cid-szOVJSzuPH {
  background-color: #ffffff;
}
.cid-szOVJSzuPH [class^="socicon-"]:before,
.cid-szOVJSzuPH [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-szOVJSzuPH .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-szOVJSzuPH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bedad4, #d2e7e2);
  display: inline-block;
}
.cid-szOVJSzuPH .socicon {
  color: #232323;
}
.cid-szOVJSzuPH .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #232323;
  color: #232323;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer;
}
.cid-szOVJSzuPH .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-szOVJSzuPH .btn-social:hover {
  color: #fff;
  background: #232323;
}
.cid-szOVJSzuPH .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-szOVJSzuPH .btn-social:hover + .btn {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .cid-szOVJSzuPH {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .cid-szOVJSzuPH .btn {
    font-size: 20px !important;
  }
  .cid-szOVJSzuPH .btn-social {
    margin-right: 0.1rem !important;
    margin-left: 0.1rem !important;
  }
}
@media (min-width: 767px) {
  .cid-szOVJSzuPH {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd2Osa.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd2Osa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd2Osa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd2Osa .modal-content,
.cid-sxcrnd2Osa .modal-dialog {
  height: auto;
}
.cid-sxcrnd2Osa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd2Osa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd2Osa .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd2Osa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd2Osa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd2Osa .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd2Osa .mbr-text {
  text-align: center;
}
.cid-sxcrnd2Osa .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd2Osa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd2Osa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd2Osa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd2Osa .modal-open {
  overflow: hidden;
}
.cid-sxcrnd2Osa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd2Osa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd2Osa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd2Osa .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd2Osa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd2Osa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd2Osa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd2Osa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd2Osa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd2Osa .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd2Osa .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd2Osa .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd2Osa .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd2Osa .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd2Osa .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd2Osa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd2Osa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd2Osa .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd2Osa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd2Osa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd2Osa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd2Osa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd2Osa .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd2Osa .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd2Osa .modal-lg,
  .cid-sxcrnd2Osa .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd2Osa .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd2Osa .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd2Osa .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd2Osa .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd2Osa .container {
    max-width: 720px;
  }
}
.cid-sxcrnd2Osa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd2Osa .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd2Osa .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd2Osa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd2Osa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd2Osa .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfagC.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUfagC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUfagC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUfagC .modal-content,
.cid-tz9ldUfagC .modal-dialog {
  height: auto;
}
.cid-tz9ldUfagC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUfagC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUfagC .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUfagC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUfagC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUfagC .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUfagC .mbr-text {
  text-align: center;
}
.cid-tz9ldUfagC .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUfagC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUfagC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUfagC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUfagC .modal-open {
  overflow: hidden;
}
.cid-tz9ldUfagC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUfagC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUfagC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUfagC .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUfagC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUfagC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUfagC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUfagC .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUfagC .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUfagC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUfagC .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUfagC .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUfagC .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUfagC .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfagC .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUfagC .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUfagC .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUfagC .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUfagC .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUfagC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUfagC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUfagC .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfagC .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUfagC .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUfagC .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfagC .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUfagC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUfagC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUfagC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUfagC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUfagC .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUfagC .modal-lg,
  .cid-tz9ldUfagC .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUfagC .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUfagC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUfagC .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUfagC .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUfagC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUfagC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUfagC .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfagC .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUfagC .mbr-section-btn .btn {
  margin: 0;
}
.cid-sxQt48pG16 {
  background-image: url("../../../assets/images/leggero-fahrradanhaenger-broschuere-3-1920x1280.jpg");
}
.cid-sxQt48pG16 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sxQt48pG16 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sxQt48pG16 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxQt48pG16 .card-wrapper {
    padding: 4rem;
  }
}
.cid-svTHUtr0ju {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svTHUtr0ju img {
  width: 100%;
}
.cid-svTHUtr0ju .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTHUtr0ju .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTHUtr0ju .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTHUtr0ju .mbr-text {
  color: #606060;
}
.cid-svTHUtr0ju .panel-group {
  margin-top: 36px;
}
.cid-svTHUtr0ju .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTHUtr0ju .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTHUtr0ju .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTHUtr0ju .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTHUtr0ju .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTHUtr0ju .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svTHUtr0ju .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTHUtr0ju .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svTHUtr0ju .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTHUtr0ju .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTHUtr0ju .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTHUtr0ju .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTHUtr0ju .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTHUtr0ju .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svTHUtr0ju .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTHUtr0ju .card .panel-body p {
  font-weight: 400;
}
.cid-svTHUtr0ju .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTHUtr0ju .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTHUtr0ju * {
    text-align: left;
  }
}
.cid-svTHUtr0ju .panel-text {
  color: #151618;
}
.cid-svTKlKc17B {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svTKlKc17B img {
  width: 100%;
}
.cid-svTKlKc17B .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTKlKc17B .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTKlKc17B .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTKlKc17B .mbr-text {
  color: #606060;
}
.cid-svTKlKc17B .panel-group {
  margin-top: 36px;
}
.cid-svTKlKc17B .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTKlKc17B .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTKlKc17B .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTKlKc17B .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTKlKc17B .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTKlKc17B .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svTKlKc17B .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTKlKc17B .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svTKlKc17B .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTKlKc17B .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTKlKc17B .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTKlKc17B .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTKlKc17B .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTKlKc17B .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svTKlKc17B .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTKlKc17B .card .panel-body p {
  font-weight: 400;
}
.cid-svTKlKc17B .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTKlKc17B .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTKlKc17B * {
    text-align: left;
  }
}
.cid-svTKlKc17B .panel-text {
  color: #151618;
}
.cid-svTLjmilU5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svTLjmilU5 img {
  width: 100%;
}
.cid-svTLjmilU5 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTLjmilU5 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTLjmilU5 .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTLjmilU5 .mbr-text {
  color: #606060;
}
.cid-svTLjmilU5 .panel-group {
  margin-top: 36px;
}
.cid-svTLjmilU5 .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTLjmilU5 .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTLjmilU5 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTLjmilU5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTLjmilU5 .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTLjmilU5 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svTLjmilU5 .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTLjmilU5 .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svTLjmilU5 .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTLjmilU5 .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTLjmilU5 .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTLjmilU5 .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTLjmilU5 .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTLjmilU5 .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svTLjmilU5 .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTLjmilU5 .card .panel-body p {
  font-weight: 400;
}
.cid-svTLjmilU5 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTLjmilU5 .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTLjmilU5 * {
    text-align: left;
  }
}
.cid-svTLjmilU5 .panel-text {
  color: #151618;
}
.cid-svTMEVQNaI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dce8eb;
}
.cid-svTMEVQNaI .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-svTMEVQNaI .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-svTMEVQNaI .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-svTMEVQNaI .card-wrapper {
    padding: 4rem;
  }
}
.cid-svTMEVQNaI .mbr-text,
.cid-svTMEVQNaI .mbr-section-btn {
  color: #151618;
}
.cid-svTMEVQNaI .card-title,
.cid-svTMEVQNaI .card-box {
  text-align: left;
  color: #151618;
}
.cid-svTMo60KMA {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svTMo60KMA img {
  width: 100%;
}
.cid-svTMo60KMA .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTMo60KMA .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTMo60KMA .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTMo60KMA .mbr-text {
  color: #606060;
}
.cid-svTMo60KMA .panel-group {
  margin-top: 36px;
}
.cid-svTMo60KMA .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTMo60KMA .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTMo60KMA .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTMo60KMA .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTMo60KMA .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTMo60KMA .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svTMo60KMA .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTMo60KMA .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svTMo60KMA .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTMo60KMA .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTMo60KMA .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTMo60KMA .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTMo60KMA .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTMo60KMA .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svTMo60KMA .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTMo60KMA .card .panel-body p {
  font-weight: 400;
}
.cid-svTMo60KMA .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTMo60KMA .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTMo60KMA * {
    text-align: left;
  }
}
.cid-svTMo60KMA .panel-text {
  color: #151618;
}
.cid-svTOMEqcEC {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #d2e7e2;
}
.cid-svTOMEqcEC img {
  width: 100%;
}
.cid-svTOMEqcEC .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTOMEqcEC .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTOMEqcEC .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTOMEqcEC .mbr-text {
  color: #606060;
}
.cid-svTOMEqcEC .panel-group {
  margin-top: 36px;
}
.cid-svTOMEqcEC .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTOMEqcEC .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTOMEqcEC .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTOMEqcEC .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTOMEqcEC .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTOMEqcEC .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svTOMEqcEC .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTOMEqcEC .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svTOMEqcEC .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTOMEqcEC .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTOMEqcEC .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTOMEqcEC .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTOMEqcEC .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTOMEqcEC .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svTOMEqcEC .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTOMEqcEC .card .panel-body p {
  font-weight: 400;
}
.cid-svTOMEqcEC .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTOMEqcEC .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTOMEqcEC * {
    text-align: left;
  }
}
.cid-svTOMEqcEC .panel-text {
  color: #151618;
}
.cid-svTQiYOy0Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d2e7e2;
}
.cid-svTQiYOy0Q img {
  width: 100%;
}
.cid-svTQiYOy0Q .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTQiYOy0Q .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTQiYOy0Q .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTQiYOy0Q .mbr-text {
  color: #606060;
}
.cid-svTQiYOy0Q .panel-group {
  margin-top: 36px;
}
.cid-svTQiYOy0Q .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTQiYOy0Q .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTQiYOy0Q .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTQiYOy0Q .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTQiYOy0Q .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svTQiYOy0Q .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTQiYOy0Q .card .panel-body p {
  font-weight: 400;
}
.cid-svTQiYOy0Q .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTQiYOy0Q .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTQiYOy0Q * {
    text-align: left;
  }
}
.cid-svTQiYOy0Q .panel-text {
  color: #151618;
}
.cid-svTRDcEvrG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #d2e7e2;
}
.cid-svTRDcEvrG img {
  width: 100%;
}
.cid-svTRDcEvrG .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTRDcEvrG .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTRDcEvrG .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTRDcEvrG .mbr-text {
  color: #606060;
}
.cid-svTRDcEvrG .panel-group {
  margin-top: 36px;
}
.cid-svTRDcEvrG .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTRDcEvrG .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTRDcEvrG .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTRDcEvrG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTRDcEvrG .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTRDcEvrG .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svTRDcEvrG .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTRDcEvrG .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svTRDcEvrG .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTRDcEvrG .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTRDcEvrG .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTRDcEvrG .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTRDcEvrG .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTRDcEvrG .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svTRDcEvrG .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTRDcEvrG .card .panel-body p {
  font-weight: 400;
}
.cid-svTRDcEvrG .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTRDcEvrG .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTRDcEvrG * {
    text-align: left;
  }
}
.cid-svTRDcEvrG .panel-text {
  color: #151618;
}
.cid-svTSCWDAbs {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #d2e7e2;
}
.cid-svTSCWDAbs img {
  width: 100%;
}
.cid-svTSCWDAbs .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svTSCWDAbs .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svTSCWDAbs .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svTSCWDAbs .mbr-text {
  color: #606060;
}
.cid-svTSCWDAbs .panel-group {
  margin-top: 36px;
}
.cid-svTSCWDAbs .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svTSCWDAbs .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svTSCWDAbs .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svTSCWDAbs .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svTSCWDAbs .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svTSCWDAbs .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svTSCWDAbs .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svTSCWDAbs .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svTSCWDAbs .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svTSCWDAbs .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svTSCWDAbs .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svTSCWDAbs .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svTSCWDAbs .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svTSCWDAbs .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svTSCWDAbs .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svTSCWDAbs .card .panel-body p {
  font-weight: 400;
}
.cid-svTSCWDAbs .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svTSCWDAbs .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svTSCWDAbs * {
    text-align: left;
  }
}
.cid-svTSCWDAbs .panel-text {
  color: #151618;
}
.cid-svTU5M05Xd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-svTU5M05Xd .mbr-section-subtitle {
  color: #767676;
}
.cid-svTU5M05Xd H2 {
  color: #d2e7e2;
}
.cid-svTTwypYfT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-svTTwypYfT .mbr-text {
  color: #767676;
}
.cid-svTTwypYfT h4 {
  text-align: center;
}
.cid-svTTwypYfT p {
  text-align: center;
}
.cid-svTTwypYfT .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-svTTwypYfT .card-title,
.cid-svTTwypYfT .card-img {
  color: #bedad4;
}
.cid-svTTvbNxiB {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-svTTvbNxiB .mbr-text {
  color: #767676;
}
.cid-svTTvbNxiB h4 {
  text-align: center;
}
.cid-svTTvbNxiB p {
  text-align: center;
}
.cid-svTTvbNxiB .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-svTTvbNxiB .card-title,
.cid-svTTvbNxiB .card-img {
  color: #d2e7e2;
}
.cid-svU0XOkCTX {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svU0XOkCTX img {
  width: 100%;
}
.cid-svU0XOkCTX .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU0XOkCTX .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU0XOkCTX .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU0XOkCTX .mbr-text {
  color: #606060;
}
.cid-svU0XOkCTX .panel-group {
  margin-top: 36px;
}
.cid-svU0XOkCTX .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU0XOkCTX .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU0XOkCTX .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU0XOkCTX .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU0XOkCTX .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU0XOkCTX .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svU0XOkCTX .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU0XOkCTX .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svU0XOkCTX .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU0XOkCTX .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU0XOkCTX .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU0XOkCTX .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU0XOkCTX .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU0XOkCTX .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svU0XOkCTX .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU0XOkCTX .card .panel-body p {
  font-weight: 400;
}
.cid-svU0XOkCTX .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU0XOkCTX .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU0XOkCTX * {
    text-align: left;
  }
}
.cid-svU0XOkCTX .panel-text {
  color: #151618;
}
.cid-svU421wZlr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dce8eb;
}
.cid-svU421wZlr img {
  width: 100%;
}
.cid-svU421wZlr .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU421wZlr .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU421wZlr .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU421wZlr .mbr-text {
  color: #606060;
}
.cid-svU421wZlr .panel-group {
  margin-top: 36px;
}
.cid-svU421wZlr .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU421wZlr .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU421wZlr .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU421wZlr .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU421wZlr .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU421wZlr .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svU421wZlr .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU421wZlr .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svU421wZlr .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU421wZlr .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU421wZlr .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU421wZlr .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU421wZlr .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU421wZlr .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svU421wZlr .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU421wZlr .card .panel-body p {
  font-weight: 400;
}
.cid-svU421wZlr .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU421wZlr .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU421wZlr * {
    text-align: left;
  }
}
.cid-svU421wZlr .panel-text {
  color: #151618;
}
.cid-svU6iPkzpu {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svU6iPkzpu img {
  width: 100%;
}
.cid-svU6iPkzpu .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU6iPkzpu .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU6iPkzpu .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU6iPkzpu .mbr-text {
  color: #606060;
}
.cid-svU6iPkzpu .panel-group {
  margin-top: 36px;
}
.cid-svU6iPkzpu .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU6iPkzpu .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU6iPkzpu .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU6iPkzpu .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU6iPkzpu .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU6iPkzpu .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svU6iPkzpu .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU6iPkzpu .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svU6iPkzpu .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU6iPkzpu .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU6iPkzpu .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU6iPkzpu .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU6iPkzpu .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU6iPkzpu .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svU6iPkzpu .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU6iPkzpu .card .panel-body p {
  font-weight: 400;
}
.cid-svU6iPkzpu .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU6iPkzpu .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU6iPkzpu * {
    text-align: left;
  }
}
.cid-svU6iPkzpu .panel-text {
  color: #151618;
}
.cid-svU7cZuI7Z {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dce8eb;
}
.cid-svU7cZuI7Z img {
  width: 100%;
}
.cid-svU7cZuI7Z .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU7cZuI7Z .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU7cZuI7Z .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU7cZuI7Z .mbr-text {
  color: #606060;
}
.cid-svU7cZuI7Z .panel-group {
  margin-top: 36px;
}
.cid-svU7cZuI7Z .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU7cZuI7Z .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #dce8eb;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #dce8eb;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU7cZuI7Z .card .card-header a.panel-title h4:hover {
  color: #dce8eb;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU7cZuI7Z .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU7cZuI7Z .card .card-header a.panel-title.collapsed h4:hover {
  color: #dce8eb;
}
.cid-svU7cZuI7Z .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU7cZuI7Z .card .panel-body p {
  font-weight: 400;
}
.cid-svU7cZuI7Z .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU7cZuI7Z .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU7cZuI7Z * {
    text-align: left;
  }
}
.cid-svU7cZuI7Z .panel-text {
  color: #151618;
}
.cid-svU7GdHLJI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-svU7GdHLJI .mbr-section-subtitle {
  color: #767676;
}
.cid-svU7GdHLJI H2 {
  color: #d2e7e2;
}
.cid-svU7HdAh55 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-svU7HdAh55 .mbr-text {
  color: #767676;
}
.cid-svU7HdAh55 h4 {
  text-align: center;
}
.cid-svU7HdAh55 p {
  text-align: center;
}
.cid-svU7HdAh55 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-svU7HdAh55 .card-title,
.cid-svU7HdAh55 .card-img {
  color: #dce8eb;
}
.cid-svU82pBC1y {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #d2e7e2;
}
.cid-svU82pBC1y img {
  width: 100%;
}
.cid-svU82pBC1y .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU82pBC1y .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU82pBC1y .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU82pBC1y .mbr-text {
  color: #606060;
}
.cid-svU82pBC1y .panel-group {
  margin-top: 36px;
}
.cid-svU82pBC1y .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU82pBC1y .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU82pBC1y .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU82pBC1y .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU82pBC1y .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU82pBC1y .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svU82pBC1y .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU82pBC1y .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svU82pBC1y .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU82pBC1y .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU82pBC1y .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU82pBC1y .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU82pBC1y .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU82pBC1y .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svU82pBC1y .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU82pBC1y .card .panel-body p {
  font-weight: 400;
}
.cid-svU82pBC1y .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU82pBC1y .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU82pBC1y * {
    text-align: left;
  }
}
.cid-svU82pBC1y .panel-text {
  color: #151618;
}
.cid-svU8RIHscG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #d2e7e2;
}
.cid-svU8RIHscG img {
  width: 100%;
}
.cid-svU8RIHscG .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU8RIHscG .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU8RIHscG .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU8RIHscG .mbr-text {
  color: #606060;
}
.cid-svU8RIHscG .panel-group {
  margin-top: 36px;
}
.cid-svU8RIHscG .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU8RIHscG .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU8RIHscG .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU8RIHscG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU8RIHscG .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU8RIHscG .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svU8RIHscG .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU8RIHscG .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svU8RIHscG .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU8RIHscG .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU8RIHscG .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU8RIHscG .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU8RIHscG .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU8RIHscG .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svU8RIHscG .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU8RIHscG .card .panel-body p {
  font-weight: 400;
}
.cid-svU8RIHscG .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU8RIHscG .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU8RIHscG * {
    text-align: left;
  }
}
.cid-svU8RIHscG .panel-text {
  color: #151618;
}
.cid-svU9sgVJN1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #d2e7e2;
}
.cid-svU9sgVJN1 img {
  width: 100%;
}
.cid-svU9sgVJN1 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bedad4;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-svU9sgVJN1 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svU9sgVJN1 .mbr-section-subtitle {
  color: #151618;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svU9sgVJN1 .mbr-text {
  color: #606060;
}
.cid-svU9sgVJN1 .panel-group {
  margin-top: 36px;
}
.cid-svU9sgVJN1 .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-svU9sgVJN1 .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #d2e7e2;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #d2e7e2;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-svU9sgVJN1 .card .card-header a.panel-title h4:hover {
  color: #d2e7e2;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-svU9sgVJN1 .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-svU9sgVJN1 .card .card-header a.panel-title.collapsed h4:hover {
  color: #d2e7e2;
}
.cid-svU9sgVJN1 .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-svU9sgVJN1 .card .panel-body p {
  font-weight: 400;
}
.cid-svU9sgVJN1 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-svU9sgVJN1 .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-svU9sgVJN1 * {
    text-align: left;
  }
}
.cid-svU9sgVJN1 .panel-text {
  color: #151618;
}
.cid-svU9TUthaS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-svU9TUthaS .mbr-section-subtitle {
  color: #767676;
}
.cid-svU9TUthaS H2 {
  color: #d2e7e2;
}
.cid-svU9QBtHqL {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-svU9QBtHqL .mbr-text {
  color: #767676;
}
.cid-svU9QBtHqL h4 {
  text-align: center;
}
.cid-svU9QBtHqL p {
  text-align: center;
}
.cid-svU9QBtHqL .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-svU9QBtHqL .card-title,
.cid-svU9QBtHqL .card-img {
  color: #d2e7e2;
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd2ORp.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd2ORp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd2ORp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd2ORp .modal-content,
.cid-sxcrnd2ORp .modal-dialog {
  height: auto;
}
.cid-sxcrnd2ORp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd2ORp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd2ORp .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd2ORp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd2ORp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd2ORp .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd2ORp .mbr-text {
  text-align: center;
}
.cid-sxcrnd2ORp .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd2ORp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd2ORp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd2ORp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd2ORp .modal-open {
  overflow: hidden;
}
.cid-sxcrnd2ORp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd2ORp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd2ORp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd2ORp .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd2ORp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd2ORp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd2ORp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd2ORp .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd2ORp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd2ORp .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd2ORp .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd2ORp .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd2ORp .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd2ORp .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd2ORp .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd2ORp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd2ORp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd2ORp .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd2ORp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd2ORp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd2ORp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd2ORp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd2ORp .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd2ORp .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd2ORp .modal-lg,
  .cid-sxcrnd2ORp .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd2ORp .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd2ORp .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd2ORp .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd2ORp .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd2ORp .container {
    max-width: 720px;
  }
}
.cid-sxcrnd2ORp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd2ORp .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd2ORp .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd2ORp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd2ORp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd2ORp .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfbE1.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUfbE1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUfbE1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUfbE1 .modal-content,
.cid-tz9ldUfbE1 .modal-dialog {
  height: auto;
}
.cid-tz9ldUfbE1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUfbE1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUfbE1 .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUfbE1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUfbE1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUfbE1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUfbE1 .mbr-text {
  text-align: center;
}
.cid-tz9ldUfbE1 .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUfbE1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUfbE1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUfbE1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUfbE1 .modal-open {
  overflow: hidden;
}
.cid-tz9ldUfbE1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUfbE1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUfbE1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUfbE1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUfbE1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUfbE1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUfbE1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUfbE1 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUfbE1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUfbE1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUfbE1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUfbE1 .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUfbE1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUfbE1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfbE1 .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUfbE1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUfbE1 .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUfbE1 .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUfbE1 .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUfbE1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUfbE1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUfbE1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfbE1 .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUfbE1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUfbE1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUfbE1 .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUfbE1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUfbE1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUfbE1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUfbE1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUfbE1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUfbE1 .modal-lg,
  .cid-tz9ldUfbE1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUfbE1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUfbE1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUfbE1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUfbE1 .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUfbE1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUfbE1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUfbE1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUfbE1 .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUfbE1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-svZ6UCaGs8 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-svZ6UCaGs8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-svZ6UCaGs8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-svZ6UCaGs8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-suyqyFaQhs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #d2e7e2;
}
.cid-suyqyFaQhs img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-suyqyFaQhs img {
    width: 100%;
  }
}
.cid-suyqyFaQhs .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-suyqyFaQhs .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-suyqyFaQhs .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-suyqyFaQhs .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #151618;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-suyqyFaQhs .mbr-text,
.cid-suyqyFaQhs .mbr-section-btn {
  color: #777777;
}
.cid-suyqyFaQhs .mbr-section-subtitle {
  color: #777777;
}
.cid-suyqyFaQhs .mbr-list {
  color: #151618;
}
@media (max-width: 767px) {
  .cid-suyqyFaQhs .mbr-list {
    justify-content: center;
    display: flex;
  }
}
#custom-html-gv {
  /* Type valid CSS here */
}
#custom-html-gv div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-gv p {
  font-size: 60px;
  color: #777;
}
.cid-sx6RybXeb8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d2e7e2;
}
.cid-sx6RybXeb8 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sx6RybXeb8 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sx6RybXeb8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sx6RybXeb8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sx6RybXeb8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sx6RybXeb8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sx6RybXeb8 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sx6RybXeb8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sx6S5xrvek {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-sx6S5xrvek .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sx6S5xrvek .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sx6S5xrvek .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sx6S5xrvek .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sx6S5xrvek .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sx6S5xrvek .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sx6S5xrvek .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sx6S5xrvek .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd2hYC.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd2hYC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd2hYC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd2hYC .modal-content,
.cid-sxcrnd2hYC .modal-dialog {
  height: auto;
}
.cid-sxcrnd2hYC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd2hYC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd2hYC .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd2hYC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd2hYC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd2hYC .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd2hYC .mbr-text {
  text-align: center;
}
.cid-sxcrnd2hYC .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd2hYC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd2hYC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd2hYC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd2hYC .modal-open {
  overflow: hidden;
}
.cid-sxcrnd2hYC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd2hYC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd2hYC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd2hYC .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd2hYC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd2hYC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd2hYC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd2hYC .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd2hYC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd2hYC .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd2hYC .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd2hYC .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd2hYC .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd2hYC .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd2hYC .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd2hYC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd2hYC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd2hYC .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd2hYC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd2hYC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd2hYC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd2hYC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd2hYC .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd2hYC .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd2hYC .modal-lg,
  .cid-sxcrnd2hYC .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd2hYC .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd2hYC .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd2hYC .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd2hYC .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd2hYC .container {
    max-width: 720px;
  }
}
.cid-sxcrnd2hYC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd2hYC .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd2hYC .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd2hYC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd2hYC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd2hYC .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgAyr.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgAyr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgAyr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgAyr .modal-content,
.cid-tz9ldUgAyr .modal-dialog {
  height: auto;
}
.cid-tz9ldUgAyr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgAyr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgAyr .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgAyr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgAyr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgAyr .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgAyr .mbr-text {
  text-align: center;
}
.cid-tz9ldUgAyr .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgAyr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgAyr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgAyr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgAyr .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgAyr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgAyr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgAyr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgAyr .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgAyr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgAyr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgAyr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgAyr .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgAyr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgAyr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgAyr .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgAyr .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgAyr .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgAyr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgAyr .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgAyr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgAyr .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgAyr .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgAyr .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgAyr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgAyr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgAyr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgAyr .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgAyr .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgAyr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgAyr .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgAyr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgAyr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgAyr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgAyr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgAyr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgAyr .modal-lg,
  .cid-tz9ldUgAyr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgAyr .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgAyr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgAyr .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgAyr .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgAyr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgAyr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgAyr .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgAyr .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgAyr .mbr-section-btn .btn {
  margin: 0;
}
.cid-svXgUB2Ews {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leggero-enso-fahrradanhaenger-online-kaufen-8-1920x1280.jpg");
}
.cid-svXgUB2Ews .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-svXgUB2Ews .img-item,
.cid-svXgUB2Ews img {
  height: 100%;
  object-fit: cover;
}
.cid-svXgUB2Ews .img-col {
  padding: 0;
}
.cid-svXgUB2Ews .col-auto {
  width: 100%;
}
.cid-svXgUB2Ews .wrapper {
  background: #dce8eb;
  padding: 6rem 4rem;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .cid-svXgUB2Ews .wrapper {
    padding: 3rem 0rem;
    margin: 0 1rem;
  }
}
.cid-svXgUB2Ews textarea {
  min-height: 200px;
}
.cid-svXgUB2Ews .btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
}
.cid-svXgUB2Ews .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-svXgUB2Ews .form-control,
.cid-svXgUB2Ews .field-input {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1b2026;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-svXgUB2Ews .form-control::-webkit-input-placeholder,
.cid-svXgUB2Ews .field-input::-webkit-input-placeholder,
.cid-svXgUB2Ews .form-control::-webkit-input-placeholder,
.cid-svXgUB2Ews .field-input::-webkit-input-placeholder {
  color: #777777;
}
.cid-svXgUB2Ews .form-control:-moz-placeholder,
.cid-svXgUB2Ews .field-input:-moz-placeholder,
.cid-svXgUB2Ews .form-control:-moz-placeholder,
.cid-svXgUB2Ews .field-input:-moz-placeholder {
  color: #777777;
}
.cid-svXgUB2Ews .form-control:hover,
.cid-svXgUB2Ews .field-input:hover,
.cid-svXgUB2Ews .form-control:focus,
.cid-svXgUB2Ews .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #1b2026;
  box-shadow: none;
  outline: none;
}
.cid-svXgUB2Ews .form-control:hover::-webkit-input-placeholder,
.cid-svXgUB2Ews .field-input:hover::-webkit-input-placeholder,
.cid-svXgUB2Ews .form-control:focus::-webkit-input-placeholder,
.cid-svXgUB2Ews .field-input:focus::-webkit-input-placeholder,
.cid-svXgUB2Ews .form-control:hover::-webkit-input-placeholder,
.cid-svXgUB2Ews .field-input:hover::-webkit-input-placeholder,
.cid-svXgUB2Ews .form-control:focus::-webkit-input-placeholder,
.cid-svXgUB2Ews .field-input:focus::-webkit-input-placeholder {
  color: #777777;
}
.cid-svXgUB2Ews .form-control:hover:-moz-placeholder,
.cid-svXgUB2Ews .field-input:hover:-moz-placeholder,
.cid-svXgUB2Ews .form-control:focus:-moz-placeholder,
.cid-svXgUB2Ews .field-input:focus:-moz-placeholder,
.cid-svXgUB2Ews .form-control:hover:-moz-placeholder,
.cid-svXgUB2Ews .field-input:hover:-moz-placeholder,
.cid-svXgUB2Ews .form-control:focus:-moz-placeholder,
.cid-svXgUB2Ews .field-input:focus:-moz-placeholder {
  color: #777777;
}
.cid-svXgUB2Ews .jq-number__spin:hover,
.cid-svXgUB2Ews .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-svXgUB2Ews .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1b2026;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-svXgUB2Ews .jq-selectbox li,
.cid-svXgUB2Ews .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-svXgUB2Ews .jq-selectbox li:hover,
.cid-svXgUB2Ews .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-svXgUB2Ews .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-svXgUB2Ews .jq-number__spin.minus:hover:after,
.cid-svXgUB2Ews .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-svXgUB2Ews .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-svXgUB2Ews .jq-number__spin.minus:after,
.cid-svXgUB2Ews .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-svXgUB2Ews input::-webkit-clear-button {
  display: none;
}
.cid-svXgUB2Ews input::-webkit-inner-spin-button {
  display: none;
}
.cid-svXgUB2Ews input::-webkit-outer-spin-button {
  display: none;
}
.cid-svXgUB2Ews input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-svXgUB2Ews H4 {
  color: #151618;
}
.cid-svUfzGF36A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dce8eb;
}
.cid-svUfzGF36A img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svUfzGF36A img:hover {
  transform: scale(1.1);
}
.cid-svUfzGF36A .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svUfzGF36A h2 {
  padding: 0;
  margin: 0;
}
.cid-svUfzGF36A .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svUfzGF36A .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svUfzGF36A .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-svUfzGF36A .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-svUfzGF36A .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-svUfzGF36A .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-svUfzGF36A .mbr-iconfont {
  margin: 0!important;
}
.cid-svUfzGF36A .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svUfzGF36A .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svUfzGF36A .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-svUfzGF36A .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-svUfzGF36A .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svUfzGF36A H2 {
  color: #333333;
}
.cid-svUfzGF36A .mbr-text {
  color: #151618;
}
.cid-svUfzGF36A H1 {
  color: #151618;
}
.cid-svUfzGF36A H3 {
  color: #151618;
}
.cid-svUfYXudkv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dce8eb;
}
.cid-svUfYXudkv img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svUfYXudkv img:hover {
  transform: scale(1.1);
}
.cid-svUfYXudkv .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svUfYXudkv h2 {
  padding: 0;
  margin: 0;
}
.cid-svUfYXudkv .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svUfYXudkv .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svUfYXudkv .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-svUfYXudkv .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-svUfYXudkv .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-svUfYXudkv .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-svUfYXudkv .mbr-iconfont {
  margin: 0!important;
}
.cid-svUfYXudkv .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svUfYXudkv .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svUfYXudkv .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-svUfYXudkv .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-svUfYXudkv .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svUfYXudkv H2 {
  color: #333333;
}
.cid-svUfYXudkv .mbr-text {
  color: #151618;
}
.cid-svUfYXudkv H1 {
  color: #151618;
}
.cid-svUfYXudkv H3 {
  color: #151618;
}
.cid-svUgepIF1T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dce8eb;
}
.cid-svUgepIF1T img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-svUgepIF1T img:hover {
  transform: scale(1.1);
}
.cid-svUgepIF1T .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-svUgepIF1T h2 {
  padding: 0;
  margin: 0;
}
.cid-svUgepIF1T .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svUgepIF1T .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-svUgepIF1T .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-svUgepIF1T .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-svUgepIF1T .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-svUgepIF1T .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-svUgepIF1T .mbr-iconfont {
  margin: 0!important;
}
.cid-svUgepIF1T .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-svUgepIF1T .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svUgepIF1T .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-svUgepIF1T .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-svUgepIF1T .text-col {
    padding: 2rem 1rem;
  }
}
.cid-svUgepIF1T H2 {
  color: #333333;
}
.cid-svUgepIF1T .mbr-text {
  color: #151618;
}
.cid-svUgepIF1T H1 {
  color: #151618;
}
.cid-svUgepIF1T H3 {
  color: #151618;
}
.cid-sx72tljXeE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d2e7e2;
}
.cid-sx72jNppIv {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #d2e7e2;
}
.cid-sx72jNppIv .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-sx72jNppIv h4 {
  text-align: center;
}
.cid-sx72jNppIv p {
  text-align: center;
}
.cid-sx72jNppIv .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sy2o4mqexs {
  background-color: #d2e7e2;
}
.cid-sy2o4mqexs [class^="socicon-"]:before,
.cid-sy2o4mqexs [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sy2o4mqexs .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sy2o4mqexs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bedad4, #d2e7e2);
  display: inline-block;
}
.cid-sy2o4mqexs .socicon {
  color: #232323;
}
.cid-sy2o4mqexs .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #232323;
  color: #232323;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer;
}
.cid-sy2o4mqexs .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sy2o4mqexs .btn-social:hover {
  color: #fff;
  background: #232323;
}
.cid-sy2o4mqexs .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sy2o4mqexs .btn-social:hover + .btn {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .cid-sy2o4mqexs {
    padding-top: 2px;
    padding-bottom: 4px;
  }
  .cid-sy2o4mqexs .btn {
    font-size: 20px !important;
  }
  .cid-sy2o4mqexs .btn-social {
    margin-right: 0.1rem !important;
    margin-left: 0.1rem !important;
  }
}
@media (min-width: 767px) {
  .cid-sy2o4mqexs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd2hsg.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd2hsg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd2hsg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd2hsg .modal-content,
.cid-sxcrnd2hsg .modal-dialog {
  height: auto;
}
.cid-sxcrnd2hsg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd2hsg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd2hsg .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd2hsg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd2hsg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd2hsg .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd2hsg .mbr-text {
  text-align: center;
}
.cid-sxcrnd2hsg .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd2hsg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd2hsg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd2hsg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd2hsg .modal-open {
  overflow: hidden;
}
.cid-sxcrnd2hsg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd2hsg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd2hsg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd2hsg .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd2hsg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd2hsg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd2hsg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd2hsg .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd2hsg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd2hsg .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd2hsg .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd2hsg .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd2hsg .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd2hsg .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd2hsg .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd2hsg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd2hsg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd2hsg .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd2hsg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd2hsg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd2hsg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd2hsg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd2hsg .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd2hsg .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd2hsg .modal-lg,
  .cid-sxcrnd2hsg .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd2hsg .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd2hsg .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd2hsg .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd2hsg .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd2hsg .container {
    max-width: 720px;
  }
}
.cid-sxcrnd2hsg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd2hsg .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd2hsg .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd2hsg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd2hsg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd2hsg .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgztV.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgztV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgztV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgztV .modal-content,
.cid-tz9ldUgztV .modal-dialog {
  height: auto;
}
.cid-tz9ldUgztV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgztV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgztV .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgztV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgztV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgztV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgztV .mbr-text {
  text-align: center;
}
.cid-tz9ldUgztV .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgztV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgztV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgztV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgztV .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgztV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgztV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgztV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgztV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgztV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgztV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgztV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgztV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgztV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgztV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgztV .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgztV .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgztV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgztV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgztV .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgztV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgztV .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgztV .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgztV .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgztV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgztV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgztV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgztV .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgztV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgztV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgztV .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgztV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgztV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgztV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgztV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgztV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgztV .modal-lg,
  .cid-tz9ldUgztV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgztV .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgztV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgztV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgztV .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgztV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgztV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgztV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgztV .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgztV .mbr-section-btn .btn {
  margin: 0;
}
.cid-swl878U0Tr .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-swl878U0Tr .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-swl878U0Tr .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swl878U0Tr .card-wrapper {
    padding: 4rem;
  }
}
.cid-svdnUVEAcM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d2e7e2;
}
.cid-svdnUVEAcM img,
.cid-svdnUVEAcM .item-img {
  width: 100%;
}
.cid-svdnUVEAcM .item:focus,
.cid-svdnUVEAcM span:focus {
  outline: none;
}
.cid-svdnUVEAcM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svdnUVEAcM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svdnUVEAcM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svdnUVEAcM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-svdnUVEAcM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svdnUVEAcM .mbr-section-title {
  color: #151618;
}
.cid-svdnUVEAcM .mbr-text,
.cid-svdnUVEAcM .mbr-section-btn {
  text-align: left;
}
.cid-svdnUVEAcM .item-title {
  text-align: left;
}
.cid-svdnUVEAcM .item-subtitle {
  text-align: center;
}
.cid-svdnUVEAcM .mbr-section-subtitle {
  color: #151618;
}
.cid-svdpEfmDrQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d2e7e2;
}
.cid-svdpEfmDrQ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-svdpEfmDrQ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-svdpEfmDrQ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-svdpEfmDrQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-svdpEfmDrQ .mbr-text,
.cid-svdpEfmDrQ .mbr-section-btn {
  color: #151618;
}
.cid-svdpEfmDrQ .card-title,
.cid-svdpEfmDrQ .card-box {
  text-align: left;
}
#custom-html-4m {
  /* Type valid CSS here */
}
#custom-html-4m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4m p {
  font-size: 60px;
  color: #777;
}
.cid-sxbfvBg4Cm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sy2oo5YgTU {
  background-color: #d2e7e2;
}
.cid-sy2oo5YgTU [class^="socicon-"]:before,
.cid-sy2oo5YgTU [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sy2oo5YgTU .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sy2oo5YgTU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bedad4, #d2e7e2);
  display: inline-block;
}
.cid-sy2oo5YgTU .socicon {
  color: #232323;
}
.cid-sy2oo5YgTU .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #232323;
  color: #232323;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer;
}
.cid-sy2oo5YgTU .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sy2oo5YgTU .btn-social:hover {
  color: #fff;
  background: #232323;
}
.cid-sy2oo5YgTU .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sy2oo5YgTU .btn-social:hover + .btn {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .cid-sy2oo5YgTU {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .cid-sy2oo5YgTU .btn {
    font-size: 20px !important;
  }
  .cid-sy2oo5YgTU .btn-social {
    margin-right: 0.1rem !important;
    margin-left: 0.1rem !important;
  }
}
@media (min-width: 767px) {
  .cid-sy2oo5YgTU {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd2Bwr.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd2Bwr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd2Bwr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd2Bwr .modal-content,
.cid-sxcrnd2Bwr .modal-dialog {
  height: auto;
}
.cid-sxcrnd2Bwr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd2Bwr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd2Bwr .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd2Bwr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd2Bwr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd2Bwr .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd2Bwr .mbr-text {
  text-align: center;
}
.cid-sxcrnd2Bwr .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd2Bwr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd2Bwr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd2Bwr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd2Bwr .modal-open {
  overflow: hidden;
}
.cid-sxcrnd2Bwr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd2Bwr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd2Bwr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd2Bwr .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd2Bwr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd2Bwr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd2Bwr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd2Bwr .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd2Bwr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd2Bwr .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd2Bwr .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd2Bwr .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd2Bwr .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd2Bwr .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd2Bwr .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd2Bwr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd2Bwr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd2Bwr .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd2Bwr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd2Bwr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd2Bwr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd2Bwr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd2Bwr .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd2Bwr .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd2Bwr .modal-lg,
  .cid-sxcrnd2Bwr .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd2Bwr .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd2Bwr .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd2Bwr .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd2Bwr .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd2Bwr .container {
    max-width: 720px;
  }
}
.cid-sxcrnd2Bwr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd2Bwr .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd2Bwr .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd2Bwr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd2Bwr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd2Bwr .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgtQr.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgtQr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgtQr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgtQr .modal-content,
.cid-tz9ldUgtQr .modal-dialog {
  height: auto;
}
.cid-tz9ldUgtQr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgtQr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgtQr .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgtQr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgtQr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgtQr .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgtQr .mbr-text {
  text-align: center;
}
.cid-tz9ldUgtQr .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgtQr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgtQr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgtQr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgtQr .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgtQr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgtQr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgtQr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgtQr .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgtQr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgtQr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgtQr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgtQr .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgtQr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgtQr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgtQr .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgtQr .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgtQr .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgtQr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgtQr .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgtQr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgtQr .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgtQr .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgtQr .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgtQr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgtQr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgtQr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgtQr .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgtQr .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgtQr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgtQr .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgtQr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgtQr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgtQr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgtQr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgtQr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgtQr .modal-lg,
  .cid-tz9ldUgtQr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgtQr .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgtQr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgtQr .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgtQr .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgtQr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgtQr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgtQr .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgtQr .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgtQr .mbr-section-btn .btn {
  margin: 0;
}
.cid-sxQtEYRmYo {
  background-image: url("../../../assets/images/leggero-vento-kinderwagen-2-1920x1280.jpg");
}
.cid-sxQtEYRmYo .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sxQtEYRmYo .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sxQtEYRmYo .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxQtEYRmYo .card-wrapper {
    padding: 4rem;
  }
}
.cid-sw3202iVev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd2L4n.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd2L4n.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd2L4n.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd2L4n .modal-content,
.cid-sxcrnd2L4n .modal-dialog {
  height: auto;
}
.cid-sxcrnd2L4n .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd2L4n .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd2L4n .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd2L4n .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd2L4n .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd2L4n .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd2L4n .mbr-text {
  text-align: center;
}
.cid-sxcrnd2L4n .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd2L4n .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd2L4n .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd2L4n .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd2L4n .modal-open {
  overflow: hidden;
}
.cid-sxcrnd2L4n .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd2L4n .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd2L4n .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd2L4n .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd2L4n .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd2L4n .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd2L4n .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd2L4n .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd2L4n .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd2L4n .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd2L4n .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd2L4n .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd2L4n .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd2L4n .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd2L4n .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd2L4n .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd2L4n .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd2L4n .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd2L4n .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd2L4n .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd2L4n .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd2L4n .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd2L4n .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd2L4n .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd2L4n .modal-lg,
  .cid-sxcrnd2L4n .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd2L4n .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd2L4n .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd2L4n .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd2L4n .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd2L4n .container {
    max-width: 720px;
  }
}
.cid-sxcrnd2L4n .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd2L4n .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd2L4n .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd2L4n .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd2L4n .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd2L4n .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgiZG.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgiZG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgiZG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgiZG .modal-content,
.cid-tz9ldUgiZG .modal-dialog {
  height: auto;
}
.cid-tz9ldUgiZG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgiZG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgiZG .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgiZG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgiZG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgiZG .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgiZG .mbr-text {
  text-align: center;
}
.cid-tz9ldUgiZG .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgiZG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgiZG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgiZG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgiZG .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgiZG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgiZG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgiZG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgiZG .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgiZG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgiZG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgiZG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgiZG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgiZG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgiZG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgiZG .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgiZG .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgiZG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgiZG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgiZG .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgiZG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgiZG .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgiZG .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgiZG .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgiZG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgiZG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgiZG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgiZG .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgiZG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgiZG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgiZG .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgiZG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgiZG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgiZG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgiZG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgiZG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgiZG .modal-lg,
  .cid-tz9ldUgiZG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgiZG .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgiZG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgiZG .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgiZG .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgiZG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgiZG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgiZG .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgiZG .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgiZG .mbr-section-btn .btn {
  margin: 0;
}
.cid-swna5r9JeA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-swna5r9JeA img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-swna5r9JeA img:hover {
  transform: scale(1.1);
}
.cid-swna5r9JeA .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-swna5r9JeA h2 {
  padding: 0;
  margin: 0;
}
.cid-swna5r9JeA .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swna5r9JeA .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-swna5r9JeA .mbr-section-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-swna5r9JeA .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-swna5r9JeA .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-swna5r9JeA .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-swna5r9JeA .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-swna5r9JeA .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-swna5r9JeA .text-col {
    padding: 2rem 1rem;
  }
}
.cid-swna5r9JeA H2 {
  color: #333333;
}
.cid-swna5r9JeA .mbr-text {
  color: #151618;
}
.cid-swna5rlvBj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-swna5rlvBj img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-swna5rlvBj img:hover {
  transform: scale(1.1);
}
.cid-swna5rlvBj .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-swna5rlvBj h2 {
  padding: 0;
  margin: 0;
}
.cid-swna5rlvBj .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swna5rlvBj .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-swna5rlvBj .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-swna5rlvBj .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-swna5rlvBj .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-swna5rlvBj .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-swna5rlvBj .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-swna5rlvBj .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-swna5rlvBj .text-col {
    padding: 2rem 1rem;
  }
}
.cid-swna5rlvBj H2 {
  color: #333333;
}
.cid-swna5rlvBj .mbr-text {
  color: #151618;
}
.cid-swna5rxsUY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-swna5rxsUY img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-swna5rxsUY img:hover {
  transform: scale(1.1);
}
.cid-swna5rxsUY .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-swna5rxsUY h2 {
  padding: 0;
  margin: 0;
}
.cid-swna5rxsUY .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swna5rxsUY .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-swna5rxsUY .mbr-section-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-swna5rxsUY .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-swna5rxsUY .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-swna5rxsUY .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-swna5rxsUY .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-swna5rxsUY .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-swna5rxsUY .text-col {
    padding: 2rem 1rem;
  }
}
.cid-swna5rxsUY H2 {
  color: #333333;
}
.cid-swna5rxsUY .mbr-text {
  color: #151618;
}
.cid-swna5rJ6RJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-swna5rJ6RJ .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-swna5rJ6RJ .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-swna5rJ6RJ .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-swna5rJ6RJ .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-swna5rJ6RJ .row .row {
    flex-direction: column-reverse;
  }
  .cid-swna5rJ6RJ .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-swna5rJ6RJ .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swna5rJ6RJ .card-subtitle {
  color: #0095ff;
}
.cid-swna5rJ6RJ .mbr-text {
  color: #555555;
}
.cid-swna5rJ6RJ .mbr-text,
.cid-swna5rJ6RJ .mbr-section-btn {
  color: #000000;
}
.cid-swna5rZIqZ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-swna5rZIqZ .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-swna5rZIqZ .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-swna5rZIqZ .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-swna5rZIqZ .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-swna5rZIqZ .row .row {
    flex-direction: column-reverse;
  }
  .cid-swna5rZIqZ .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-swna5rZIqZ .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swna5rZIqZ .card-subtitle {
  color: #0095ff;
}
.cid-swna5rZIqZ .mbr-text {
  color: #555555;
}
.cid-swna5rZIqZ .mbr-text,
.cid-swna5rZIqZ .mbr-section-btn {
  color: #000000;
}
.cid-swna5sfhaX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leggero-enso-fahrradanhaenger-fuer-1-kind-1920x1280.jpg");
}
.cid-swna5sfhaX .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-swna5sfhaX .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-swna5sfhaX .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swna5sfhaX .card-wrapper {
    padding: 4rem;
  }
}
.cid-sxETLLN2Nf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #d2e7e2;
}
@media (max-width: 767px) {
  .cid-sxETLLN2Nf .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-sxETLLN2Nf .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sxETLLN2Nf .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxETLLN2Nf .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sxETLLN2Nf .row {
    margin: 0;
  }
}
.cid-sxETLLN2Nf .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-swna5srdHv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-swna5srdHv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-swna5srdHv .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-swna5srdHv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-swna5srdHv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-swna5srdHv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-swna5srdHv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-swna5srdHv .carousel-control,
.cid-swna5srdHv .close {
  background: #1b1b1b;
}
.cid-swna5srdHv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-swna5srdHv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-swna5srdHv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-swna5srdHv .carousel-control-next span {
  margin-left: 5px;
}
.cid-swna5srdHv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-swna5srdHv .close::before {
  content: '\e91a';
}
.cid-swna5srdHv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-swna5srdHv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-swna5srdHv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swna5srdHv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-swna5srdHv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-swna5srdHv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-swna5srdHv .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-swna5srdHv .carousel-indicators li.active,
.cid-swna5srdHv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-swna5srdHv .carousel-indicators li::after,
.cid-swna5srdHv .carousel-indicators li::before {
  content: none;
}
.cid-swna5srdHv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-swna5srdHv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-swna5srdHv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-swna5srdHv .carousel-indicators {
    display: none;
  }
}
.cid-swna5srdHv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-swna5srdHv .carousel-inner > .active {
  display: block;
}
.cid-swna5srdHv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swna5srdHv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-swna5srdHv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-swna5srdHv .carousel-control,
  .cid-swna5srdHv .carousel-indicators,
  .cid-swna5srdHv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-swna5srdHv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-swna5srdHv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-swna5srdHv .carousel-indicators .active,
.cid-swna5srdHv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-swna5srdHv .carousel-indicators .active {
  background: #fff;
}
.cid-swna5srdHv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-swna5srdHv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-swna5srdHv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-swna5srdHv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-swna5srdHv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-swna5srdHv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-swna5srdHv .carousel {
  width: 100%;
}
.cid-swna5srdHv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-swna5srdHv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-swna5srdHv .modal.fade .modal-dialog,
.cid-swna5srdHv .modal.in .modal-dialog {
  transform: none;
}
.cid-swna5srdHv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-swna5srdHv H6 {
  text-align: center;
}
.cid-sy2mx70IPl {
  background-color: #ffffff;
}
.cid-sy2mx70IPl [class^="socicon-"]:before,
.cid-sy2mx70IPl [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sy2mx70IPl .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sy2mx70IPl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bedad4, #d2e7e2);
  display: inline-block;
}
.cid-sy2mx70IPl .socicon {
  color: #232323;
}
.cid-sy2mx70IPl .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #232323;
  color: #232323;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer;
}
.cid-sy2mx70IPl .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sy2mx70IPl .btn-social:hover {
  color: #fff;
  background: #232323;
}
.cid-sy2mx70IPl .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sy2mx70IPl .btn-social:hover + .btn {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .cid-sy2mx70IPl {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .cid-sy2mx70IPl .btn {
    font-size: 20px !important;
  }
  .cid-sy2mx70IPl .btn-social {
    margin-right: 0.1rem !important;
    margin-left: 0.1rem !important;
  }
}
@media (min-width: 767px) {
  .cid-sy2mx70IPl {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-swna5tl6SY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-swna5tl6SY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-swna5tl6SY li {
  padding-bottom: 0.6rem;
}
.cid-swna5tl6SY .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-swna5tl6SY .border-col {
    border: 0px;
  }
}
.cid-swna5tl6SY .container {
  position: relative;
}
.cid-swna5tl6SY .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-swna5tl6SY .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-swna5tl6SY .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-swna5tl6SY .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-swna5tl6SY .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-swna5tl6SY .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-swna5tl6SY .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-swna5tl6SY .soc-item:hover {
  background: #bedad4;
}
.cid-swna5tl6SY .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-swna5tl6SY .row {
    text-align: center;
  }
  .cid-swna5tl6SY .social-row {
    justify-content: center;
  }
}
.cid-swna5tl6SY .list {
  list-style: none;
  padding-left: 0;
}
.cid-swna5tl6SY .mbr-text {
  color: #dce8eb;
}
.cid-swna5tl6SY H5 {
  color: #ffffff;
}
.cid-swna5tG088 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swna5tG088 .nav-link,
.cid-swna5tG088 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swna5tG088 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swna5tG088 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swna5tG088 .nav-link.text-primary:hover,
.cid-swna5tG088 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swna5tG088 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swna5tG088 .nav-link:hover:before {
  opacity: 1;
}
.cid-swna5tG088 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swna5tG088 .nav-link {
    margin: 0 !important;
  }
}
.cid-swna5tG088 .icons-menu {
  line-height: 0;
}
.cid-swna5tG088 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swna5tG088 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swna5tG088 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swna5tG088 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swna5tG088 .dropdown-menu a {
  overflow: hidden;
}
.cid-swna5tG088 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swna5tG088 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swna5tG088 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swna5tG088 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swna5tG088 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swna5tG088 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swna5tG088 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swna5tG088 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swna5tG088 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swna5tG088 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swna5tG088 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swna5tG088 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swna5tG088 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swna5tG088 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swna5tG088.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swna5tG088 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swna5tG088 .btn {
    white-space: nowrap;
  }
  .cid-swna5tG088 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swna5tG088 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swna5tG088 .nav-item.dropdown:hover::before,
  .cid-swna5tG088 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swna5tG088 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swna5tG088 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swna5tG088 .navbar > .container,
.cid-swna5tG088 .navbar > .container-fluid {
  align-items: center;
}
.cid-swna5tG088 .dropdown-toggle::after,
.cid-swna5tG088 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swna5tG088 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swna5tG088 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swna5tG088 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swna5tG088 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swna5tG088 .nav-item:focus,
.cid-swna5tG088 .nav-link:focus {
  outline: none;
}
.cid-swna5tG088 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swna5tG088 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swna5tG088 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swna5tG088 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swna5tG088 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swna5tG088 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swna5tG088 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swna5tG088 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swna5tG088 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swna5tG088 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swna5tG088 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swna5tG088 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swna5tG088 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swna5tG088 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swna5tG088 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swna5tG088 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swna5tG088 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swna5tG088.opened .dropdown-menu {
    top: 0;
  }
  .cid-swna5tG088 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swna5tG088 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swna5tG088 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swna5tG088 .navbar-logo {
    margin: 0;
  }
  .cid-swna5tG088 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swna5tG088 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swna5tG088 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swna5tG088 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swna5tG088 .navbar {
    padding: 13px 90px;
  }
  .cid-swna5tG088 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swna5tG088 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swna5tG088 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swna5tG088 .dropdown-toggle::after,
  .cid-swna5tG088 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swna5tG088 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swna5tG088 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swna5tG088 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swna5tG088 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swna5tG088.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swna5tG088.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swna5tG088.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swna5tG088.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swna5tG088 .navbar {
    padding: 0 !important;
  }
  .cid-swna5tG088 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swna5tG088 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swna5tG088 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swna5tG088 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swna5tG088 .dropdown-item.active,
.cid-swna5tG088 .dropdown-item:active {
  background-color: transparent;
}
.cid-swna5tG088 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swna5tG088 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swna5tG088 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swna5tG088 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swna5tG088 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swna5tG088 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swna5tG088 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swna5tG088 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swna5tG088 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swna5tG088 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swna5tG088 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swna5tG088 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swna5tG088 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swna5tG088 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swna5tG088 .navbar {
    height: 97px;
  }
  .cid-swna5tG088 .navbar.opened {
    height: auto;
  }
  .cid-swna5tG088 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcrnd24GO.popup-builder {
  background-color: #ffffff;
}
.cid-sxcrnd24GO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcrnd24GO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcrnd24GO .modal-content,
.cid-sxcrnd24GO .modal-dialog {
  height: auto;
}
.cid-sxcrnd24GO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcrnd24GO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcrnd24GO .form-wrapper .mbr-form .form-group,
  .cid-sxcrnd24GO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcrnd24GO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcrnd24GO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcrnd24GO .mbr-text {
  text-align: center;
}
.cid-sxcrnd24GO .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcrnd24GO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcrnd24GO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcrnd24GO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcrnd24GO .modal-open {
  overflow: hidden;
}
.cid-sxcrnd24GO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcrnd24GO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcrnd24GO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcrnd24GO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcrnd24GO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcrnd24GO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcrnd24GO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcrnd24GO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcrnd24GO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcrnd24GO .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcrnd24GO .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcrnd24GO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcrnd24GO .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcrnd24GO .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcrnd24GO .modal-header .close:focus {
  outline: none;
}
.cid-sxcrnd24GO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcrnd24GO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcrnd24GO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcrnd24GO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcrnd24GO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcrnd24GO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcrnd24GO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcrnd24GO .modal-sm {
    max-width: 300px;
  }
  .cid-sxcrnd24GO .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcrnd24GO .modal-lg,
  .cid-sxcrnd24GO .modal-xl {
    max-width: 800px;
  }
  .cid-sxcrnd24GO .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcrnd24GO .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcrnd24GO .container {
    max-width: 1140px;
  }
}
.cid-sxcrnd24GO .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcrnd24GO .container {
    max-width: 720px;
  }
}
.cid-sxcrnd24GO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcrnd24GO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcrnd24GO .form-group {
  margin-bottom: 1rem;
}
.cid-sxcrnd24GO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcrnd24GO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcrnd24GO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgUtT.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgUtT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgUtT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgUtT .modal-content,
.cid-tz9ldUgUtT .modal-dialog {
  height: auto;
}
.cid-tz9ldUgUtT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgUtT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgUtT .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgUtT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgUtT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgUtT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgUtT .mbr-text {
  text-align: center;
}
.cid-tz9ldUgUtT .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgUtT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgUtT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgUtT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgUtT .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgUtT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgUtT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgUtT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgUtT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgUtT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgUtT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgUtT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgUtT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgUtT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgUtT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgUtT .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgUtT .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgUtT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgUtT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgUtT .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgUtT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgUtT .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgUtT .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgUtT .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgUtT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgUtT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgUtT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgUtT .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgUtT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgUtT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgUtT .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgUtT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgUtT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgUtT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgUtT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgUtT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgUtT .modal-lg,
  .cid-tz9ldUgUtT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgUtT .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgUtT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgUtT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgUtT .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgUtT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgUtT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgUtT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgUtT .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgUtT .mbr-section-btn .btn {
  margin: 0;
}
.cid-swlVjcM0p6 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-swlVjcM0p6 .nav-link,
.cid-swlVjcM0p6 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-swlVjcM0p6 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-swlVjcM0p6 .nav-link.text-primary:hover,
.cid-swlVjcM0p6 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-swlVjcM0p6 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-swlVjcM0p6 .nav-link:hover:before {
  opacity: 1;
}
.cid-swlVjcM0p6 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .nav-link {
    margin: 0 !important;
  }
}
.cid-swlVjcM0p6 .icons-menu {
  line-height: 0;
}
.cid-swlVjcM0p6 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-swlVjcM0p6 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-swlVjcM0p6 .dropdown-menu a {
  overflow: hidden;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-swlVjcM0p6 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-swlVjcM0p6 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-swlVjcM0p6 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-swlVjcM0p6 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-swlVjcM0p6 .btn {
    white-space: nowrap;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item.dropdown:hover::before,
  .cid-swlVjcM0p6 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-swlVjcM0p6 .navbar > .container,
.cid-swlVjcM0p6 .navbar > .container-fluid {
  align-items: center;
}
.cid-swlVjcM0p6 .dropdown-toggle::after,
.cid-swlVjcM0p6 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-swlVjcM0p6 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-swlVjcM0p6 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-swlVjcM0p6 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-swlVjcM0p6 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-swlVjcM0p6 .nav-item:focus,
.cid-swlVjcM0p6 .nav-link:focus {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swlVjcM0p6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-swlVjcM0p6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-swlVjcM0p6 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-swlVjcM0p6 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-swlVjcM0p6 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-swlVjcM0p6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swlVjcM0p6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swlVjcM0p6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swlVjcM0p6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-swlVjcM0p6 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-swlVjcM0p6 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link::before {
    display: none;
  }
  .cid-swlVjcM0p6.opened .dropdown-menu {
    top: 0;
  }
  .cid-swlVjcM0p6 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-swlVjcM0p6 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-swlVjcM0p6 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-swlVjcM0p6 .navbar-logo {
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar-logo img {
    height: 60px !important;
  }
  .cid-swlVjcM0p6 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-swlVjcM0p6 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swlVjcM0p6 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-swlVjcM0p6 .navbar {
    padding: 13px 90px;
  }
  .cid-swlVjcM0p6 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-swlVjcM0p6 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-swlVjcM0p6 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-swlVjcM0p6 .dropdown-toggle::after,
  .cid-swlVjcM0p6 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-swlVjcM0p6 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-swlVjcM0p6 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-swlVjcM0p6 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-swlVjcM0p6.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-swlVjcM0p6.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swlVjcM0p6.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-swlVjcM0p6 .navbar {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-swlVjcM0p6 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-swlVjcM0p6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-swlVjcM0p6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swlVjcM0p6 .dropdown-item.active,
.cid-swlVjcM0p6 .dropdown-item:active {
  background-color: transparent;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swlVjcM0p6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-swlVjcM0p6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swlVjcM0p6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swlVjcM0p6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-swlVjcM0p6 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-swlVjcM0p6 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swlVjcM0p6 .navbar {
    height: 97px;
  }
  .cid-swlVjcM0p6 .navbar.opened {
    height: auto;
  }
  .cid-swlVjcM0p6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxcs3CGp6U {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-sxcs3CGp6U .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sxcs3CGp6U .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxcs3CGp6U .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sxcs3CGp6U .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxcs3CGp6U .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sxcs3CGp6U .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sxcs3CGp6U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxcs49C3bs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-sxcs49C3bs .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sxcs49C3bs .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxcs49C3bs .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sxcs49C3bs .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxcs49C3bs .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sxcs49C3bs .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sxcs49C3bs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxcs4Bw66O {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #d2e7e2;
}
.cid-sxcs4Bw66O .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sxcs4Bw66O .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxcs4Bw66O .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sxcs4Bw66O .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxcs4Bw66O .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sxcs4Bw66O .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sxcs4Bw66O .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBV6ZkcNgs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8bc3ca;
}
.cid-sBV6ZkcNgs .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sBV6ZkcNgs .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBV6ZkcNgs .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBV6ZkcNgs .card-wrapper {
    padding: 4rem;
  }
}
.cid-sBV4jEmvan {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #8bc3ca;
}
.cid-sBV4jEmvan .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sBV4jEmvan .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBV4jEmvan .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBV4jEmvan .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBV4jEmvan .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBV4jEmvan .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sBV4jEmvan .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBV7Qz90At {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #8bc3ca;
}
.cid-sBV7Qz90At .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sBV7Qz90At .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBV7Qz90At .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBV7Qz90At .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBV7Qz90At .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBV7Qz90At .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sBV7Qz90At .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBVaABn5Eb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #8bc3ca;
}
.cid-sBVaABn5Eb .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sBVaABn5Eb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBVaABn5Eb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBVaABn5Eb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBVaABn5Eb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBVaABn5Eb .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sBVaABn5Eb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBVcZoWVx9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #8bc3ca;
}
.cid-sBVcZoWVx9 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sBVcZoWVx9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBVcZoWVx9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBVcZoWVx9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBVcZoWVx9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBVcZoWVx9 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sBVcZoWVx9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-svYsoPJUK4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-svYsoPJUK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svYsoPJUK4 li {
  padding-bottom: 0.6rem;
}
.cid-svYsoPJUK4 .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .border-col {
    border: 0px;
  }
}
.cid-svYsoPJUK4 .container {
  position: relative;
}
.cid-svYsoPJUK4 .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-svYsoPJUK4 .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-svYsoPJUK4 .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-svYsoPJUK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-svYsoPJUK4 .soc-item:hover {
  background: #bedad4;
}
.cid-svYsoPJUK4 .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-svYsoPJUK4 .row {
    text-align: center;
  }
  .cid-svYsoPJUK4 .social-row {
    justify-content: center;
  }
}
.cid-svYsoPJUK4 .list {
  list-style: none;
  padding-left: 0;
}
.cid-svYsoPJUK4 .mbr-text {
  color: #dce8eb;
}
.cid-svYsoPJUK4 H5 {
  color: #ffffff;
}
.cid-sxcsLIleLs.popup-builder {
  background-color: #ffffff;
}
.cid-sxcsLIleLs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxcsLIleLs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxcsLIleLs .modal-content,
.cid-sxcsLIleLs .modal-dialog {
  height: auto;
}
.cid-sxcsLIleLs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxcsLIleLs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxcsLIleLs .form-wrapper .mbr-form .form-group,
  .cid-sxcsLIleLs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxcsLIleLs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxcsLIleLs .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxcsLIleLs .mbr-text {
  text-align: center;
}
.cid-sxcsLIleLs .pt-0 {
  padding-top: 0 !important;
}
.cid-sxcsLIleLs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxcsLIleLs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxcsLIleLs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxcsLIleLs .modal-open {
  overflow: hidden;
}
.cid-sxcsLIleLs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxcsLIleLs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxcsLIleLs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxcsLIleLs .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxcsLIleLs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxcsLIleLs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxcsLIleLs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxcsLIleLs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxcsLIleLs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxcsLIleLs .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxcsLIleLs .modal-backdrop.show {
  opacity: .5;
}
.cid-sxcsLIleLs .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxcsLIleLs .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxcsLIleLs .modal-header .close:hover {
  opacity: 1;
}
.cid-sxcsLIleLs .modal-header .close:focus {
  outline: none;
}
.cid-sxcsLIleLs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sxcsLIleLs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxcsLIleLs .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxcsLIleLs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxcsLIleLs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxcsLIleLs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxcsLIleLs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxcsLIleLs .modal-sm {
    max-width: 300px;
  }
  .cid-sxcsLIleLs .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxcsLIleLs .modal-lg,
  .cid-sxcsLIleLs .modal-xl {
    max-width: 800px;
  }
  .cid-sxcsLIleLs .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxcsLIleLs .modal-xl {
    max-width: 1140px;
  }
  .cid-sxcsLIleLs .container {
    max-width: 1140px;
  }
}
.cid-sxcsLIleLs .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxcsLIleLs .container {
    max-width: 720px;
  }
}
.cid-sxcsLIleLs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxcsLIleLs .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxcsLIleLs .form-group {
  margin-bottom: 1rem;
}
.cid-sxcsLIleLs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxcsLIleLs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxcsLIleLs .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgYax.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgYax.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgYax.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgYax .modal-content,
.cid-tz9ldUgYax .modal-dialog {
  height: auto;
}
.cid-tz9ldUgYax .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgYax .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgYax .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgYax .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgYax .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgYax .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgYax .mbr-text {
  text-align: center;
}
.cid-tz9ldUgYax .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgYax .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgYax .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgYax .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgYax .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgYax .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgYax .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgYax .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgYax .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgYax .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgYax .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgYax .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgYax .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgYax .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgYax .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgYax .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgYax .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgYax .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgYax .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgYax .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgYax .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgYax .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgYax .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgYax .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgYax .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgYax .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgYax .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgYax .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgYax .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgYax .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgYax .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgYax .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgYax .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgYax .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgYax .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgYax .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgYax .modal-lg,
  .cid-tz9ldUgYax .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgYax .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgYax .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgYax .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgYax .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgYax .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgYax .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgYax .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgYax .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgYax .mbr-section-btn .btn {
  margin: 0;
}
.cid-sy1BvXVFfP {
  background-image: url("../../../assets/images/leggero-enso-fahrradanhaenger-fuer-1-kind-1920x1280.jpg");
}
.cid-sy1BvXVFfP .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sy1BvXVFfP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sy1BvXVFfP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sy1BvXVFfP .card-wrapper {
    padding: 4rem;
  }
}
.cid-sy1BvYqrLW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sy1BvYPJcq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-sy1BvYPJcq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sy1BvYPJcq li {
  padding-bottom: 0.6rem;
}
.cid-sy1BvYPJcq .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-sy1BvYPJcq .border-col {
    border: 0px;
  }
}
.cid-sy1BvYPJcq .container {
  position: relative;
}
.cid-sy1BvYPJcq .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-sy1BvYPJcq .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-sy1BvYPJcq .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-sy1BvYPJcq .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sy1BvYPJcq .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-sy1BvYPJcq .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sy1BvYPJcq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-sy1BvYPJcq .soc-item:hover {
  background: #bedad4;
}
.cid-sy1BvYPJcq .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-sy1BvYPJcq .row {
    text-align: center;
  }
  .cid-sy1BvYPJcq .social-row {
    justify-content: center;
  }
}
.cid-sy1BvYPJcq .list {
  list-style: none;
  padding-left: 0;
}
.cid-sy1BvYPJcq .mbr-text {
  color: #dce8eb;
}
.cid-sy1BvYPJcq H5 {
  color: #ffffff;
}
.cid-sy1BvZfVL8 {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-sy1BvZfVL8 .nav-link,
.cid-sy1BvZfVL8 .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-sy1BvZfVL8 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-sy1BvZfVL8 .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-sy1BvZfVL8 .nav-link.text-primary:hover,
.cid-sy1BvZfVL8 .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-sy1BvZfVL8 .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-sy1BvZfVL8 .nav-link:hover:before {
  opacity: 1;
}
.cid-sy1BvZfVL8 .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-sy1BvZfVL8 .nav-link {
    margin: 0 !important;
  }
}
.cid-sy1BvZfVL8 .icons-menu {
  line-height: 0;
}
.cid-sy1BvZfVL8 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-sy1BvZfVL8 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-sy1BvZfVL8 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-sy1BvZfVL8 .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-sy1BvZfVL8 .dropdown-menu a {
  overflow: hidden;
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sy1BvZfVL8 .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-sy1BvZfVL8 .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-sy1BvZfVL8 .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-sy1BvZfVL8 .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-sy1BvZfVL8 .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-sy1BvZfVL8 .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-sy1BvZfVL8 .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-sy1BvZfVL8.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-sy1BvZfVL8 .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-sy1BvZfVL8 .btn {
    white-space: nowrap;
  }
  .cid-sy1BvZfVL8 .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-sy1BvZfVL8 .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-sy1BvZfVL8 .nav-item.dropdown:hover::before,
  .cid-sy1BvZfVL8 .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-sy1BvZfVL8 .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-sy1BvZfVL8 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-sy1BvZfVL8 .navbar > .container,
.cid-sy1BvZfVL8 .navbar > .container-fluid {
  align-items: center;
}
.cid-sy1BvZfVL8 .dropdown-toggle::after,
.cid-sy1BvZfVL8 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-sy1BvZfVL8 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-sy1BvZfVL8 .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-sy1BvZfVL8 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-sy1BvZfVL8 .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-sy1BvZfVL8 .nav-item:focus,
.cid-sy1BvZfVL8 .nav-link:focus {
  outline: none;
}
.cid-sy1BvZfVL8 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sy1BvZfVL8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy1BvZfVL8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-sy1BvZfVL8 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-sy1BvZfVL8 ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-sy1BvZfVL8 .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sy1BvZfVL8 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sy1BvZfVL8 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-sy1BvZfVL8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy1BvZfVL8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy1BvZfVL8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-sy1BvZfVL8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sy1BvZfVL8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy1BvZfVL8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sy1BvZfVL8 .dropdown-menu .menu__images {
    display: none;
  }
  .cid-sy1BvZfVL8 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-sy1BvZfVL8 .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy1BvZfVL8.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy1BvZfVL8 .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-sy1BvZfVL8 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-sy1BvZfVL8 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-sy1BvZfVL8 .navbar-logo {
    margin: 0;
  }
  .cid-sy1BvZfVL8 .navbar-logo img {
    height: 60px !important;
  }
  .cid-sy1BvZfVL8 .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-sy1BvZfVL8 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sy1BvZfVL8 .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-sy1BvZfVL8 .navbar {
    padding: 13px 90px;
  }
  .cid-sy1BvZfVL8 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-sy1BvZfVL8 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-sy1BvZfVL8 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-sy1BvZfVL8 .dropdown-toggle::after,
  .cid-sy1BvZfVL8 .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-sy1BvZfVL8 .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-sy1BvZfVL8 a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-sy1BvZfVL8 ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-sy1BvZfVL8 .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sy1BvZfVL8.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-sy1BvZfVL8.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-sy1BvZfVL8.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sy1BvZfVL8.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-sy1BvZfVL8 .navbar {
    padding: 0 !important;
  }
  .cid-sy1BvZfVL8 ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-sy1BvZfVL8 a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-sy1BvZfVL8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-sy1BvZfVL8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy1BvZfVL8 .dropdown-item.active,
.cid-sy1BvZfVL8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sy1BvZfVL8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy1BvZfVL8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-sy1BvZfVL8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sy1BvZfVL8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-sy1BvZfVL8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sy1BvZfVL8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sy1BvZfVL8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sy1BvZfVL8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sy1BvZfVL8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sy1BvZfVL8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sy1BvZfVL8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sy1BvZfVL8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-sy1BvZfVL8 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-sy1BvZfVL8 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy1BvZfVL8 .navbar {
    height: 97px;
  }
  .cid-sy1BvZfVL8 .navbar.opened {
    height: auto;
  }
  .cid-sy1BvZfVL8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy1BvZAcPP.popup-builder {
  background-color: #ffffff;
}
.cid-sy1BvZAcPP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sy1BvZAcPP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sy1BvZAcPP .modal-content,
.cid-sy1BvZAcPP .modal-dialog {
  height: auto;
}
.cid-sy1BvZAcPP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sy1BvZAcPP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sy1BvZAcPP .form-wrapper .mbr-form .form-group,
  .cid-sy1BvZAcPP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sy1BvZAcPP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sy1BvZAcPP .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sy1BvZAcPP .mbr-text {
  text-align: center;
}
.cid-sy1BvZAcPP .pt-0 {
  padding-top: 0 !important;
}
.cid-sy1BvZAcPP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sy1BvZAcPP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sy1BvZAcPP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sy1BvZAcPP .modal-open {
  overflow: hidden;
}
.cid-sy1BvZAcPP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sy1BvZAcPP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sy1BvZAcPP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sy1BvZAcPP .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sy1BvZAcPP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sy1BvZAcPP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sy1BvZAcPP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sy1BvZAcPP .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sy1BvZAcPP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sy1BvZAcPP .modal-backdrop.fade {
  opacity: 0;
}
.cid-sy1BvZAcPP .modal-backdrop.show {
  opacity: .5;
}
.cid-sy1BvZAcPP .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sy1BvZAcPP .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sy1BvZAcPP .modal-header .close:hover {
  opacity: 1;
}
.cid-sy1BvZAcPP .modal-header .close:focus {
  outline: none;
}
.cid-sy1BvZAcPP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sy1BvZAcPP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sy1BvZAcPP .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sy1BvZAcPP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sy1BvZAcPP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sy1BvZAcPP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sy1BvZAcPP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sy1BvZAcPP .modal-sm {
    max-width: 300px;
  }
  .cid-sy1BvZAcPP .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sy1BvZAcPP .modal-lg,
  .cid-sy1BvZAcPP .modal-xl {
    max-width: 800px;
  }
  .cid-sy1BvZAcPP .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sy1BvZAcPP .modal-xl {
    max-width: 1140px;
  }
  .cid-sy1BvZAcPP .container {
    max-width: 1140px;
  }
}
.cid-sy1BvZAcPP .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sy1BvZAcPP .container {
    max-width: 720px;
  }
}
.cid-sy1BvZAcPP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sy1BvZAcPP .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sy1BvZAcPP .form-group {
  margin-bottom: 1rem;
}
.cid-sy1BvZAcPP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sy1BvZAcPP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sy1BvZAcPP .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgDyk.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgDyk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgDyk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgDyk .modal-content,
.cid-tz9ldUgDyk .modal-dialog {
  height: auto;
}
.cid-tz9ldUgDyk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgDyk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgDyk .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgDyk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgDyk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgDyk .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgDyk .mbr-text {
  text-align: center;
}
.cid-tz9ldUgDyk .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgDyk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgDyk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgDyk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgDyk .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgDyk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgDyk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgDyk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgDyk .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgDyk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgDyk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgDyk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgDyk .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgDyk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgDyk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgDyk .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgDyk .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgDyk .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgDyk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgDyk .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgDyk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgDyk .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgDyk .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgDyk .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgDyk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgDyk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgDyk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgDyk .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgDyk .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgDyk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgDyk .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgDyk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgDyk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgDyk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgDyk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgDyk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgDyk .modal-lg,
  .cid-tz9ldUgDyk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgDyk .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgDyk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgDyk .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgDyk .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgDyk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgDyk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgDyk .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgDyk .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgDyk .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFTVCAT7tn {
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mtb-sieger-1920x1280.jpg");
}
.cid-sFTVCAT7tn .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-sFTVCAT7tn .wrap {
  padding: 0 25px;
}
.cid-sFTVCAT7tn .wrap:before {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #2299aa;
  top: 0px;
  right: 0px;
}
.cid-sFTVCAT7tn .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-sFTVCAT7tn .mbr-text {
  margin-bottom: 20px;
}
.cid-sFTVCAT7tn .mbr-section-btn {
  margin-top: 10px;
}
.cid-sFTVCAT7tn .mbr-media {
  display: inline-block;
}
.cid-sFTVCAT7tn .mbr-figure {
  align-self: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
.cid-sFTVCAT7tn .anim {
  width: 62px;
  height: 62px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}
.cid-sFTVCAT7tn .anim span {
  color: #000000;
  font-size: 18px;
  cursor: pointer;
  width: 62px;
  height: 62px;
  line-height: 62px;
  position: relative;
  display: inline-block;
  margin-left: 2px;
}
.cid-sFTVCAT7tn .anim span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sFTVCAT7tn .anim:before {
  content: '';
  border-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-duration: 1.2s;
  animation-name: popup__video;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.cid-sFTVCAT7tn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: #191f23;
  width: 100%;
  height: 100%;
}
.cid-sFTVCAT7tn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sFTVCAT7tn .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-sFTVCAT7tn a.close {
  position: absolute;
  right: 100px;
  top: 50px;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  padding: 10px;
  transition: all 0.2s;
}
.cid-sFTVCAT7tn a.close:hover {
  color: #ffffff;
}
@keyframes popup__video {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .cid-sFTVCAT7tn .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-sFTVCAT7tn .container,
  .cid-sFTVCAT7tn .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sFTVCAT7tn .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-sFTVCAT7tn a.close {
    right: 50px;
    top: 25px;
  }
  .cid-sFTVCAT7tn .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-sFRqjXmgvh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sFRrGp2wMW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d2e7e2;
}
.cid-sFRrGp2wMW img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sFRrGp2wMW img:hover {
  transform: scale(1.1);
}
.cid-sFRrGp2wMW .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sFRrGp2wMW h2 {
  padding: 0;
  margin: 0;
}
.cid-sFRrGp2wMW .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFRrGp2wMW .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sFRrGp2wMW .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-sFRrGp2wMW .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sFRrGp2wMW .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sFRrGp2wMW .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sFRrGp2wMW .mbr-iconfont {
  margin: 0!important;
}
.cid-sFRrGp2wMW .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sFRrGp2wMW .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sFRrGp2wMW .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sFRrGp2wMW .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sFRrGp2wMW .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sFRrGp2wMW H2 {
  color: #333333;
}
.cid-sFRrGp2wMW .mbr-text {
  color: #151618;
}
.cid-sFRrGp2wMW H1 {
  color: #151618;
}
.cid-sFRrGp2wMW H3 {
  color: #151618;
}
.cid-sFRwazXA46 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sFRwazXA46 .video-wrapper iframe {
  width: 100%;
}
.cid-sFRwazXA46 .mbr-section-title,
.cid-sFRwazXA46 .mbr-section-subtitle,
.cid-sFRwazXA46 .mbr-text {
  text-align: center;
}
.cid-sFRA6BmH6x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bedad4;
}
.cid-sFRA6BmH6x .mbr-section-title {
  color: #000000;
}
.cid-sFRqjXIdTE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #151618;
  overflow: hidden;
}
.cid-sFRqjXIdTE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sFRqjXIdTE li {
  padding-bottom: 0.6rem;
}
.cid-sFRqjXIdTE .border-col {
  border-right: 1px solid #bedad4;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-sFRqjXIdTE .border-col {
    border: 0px;
  }
}
.cid-sFRqjXIdTE .container {
  position: relative;
}
.cid-sFRqjXIdTE .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-sFRqjXIdTE .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #bedad4;
  position: absolute;
  left: -50%;
}
.cid-sFRqjXIdTE .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-sFRqjXIdTE .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sFRqjXIdTE .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-sFRqjXIdTE .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sFRqjXIdTE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #bedad4;
}
.cid-sFRqjXIdTE .soc-item:hover {
  background: #bedad4;
}
.cid-sFRqjXIdTE .soc-item .mbr-iconfont {
  color: #bedad4;
}
@media (max-width: 767px) {
  .cid-sFRqjXIdTE .row {
    text-align: center;
  }
  .cid-sFRqjXIdTE .social-row {
    justify-content: center;
  }
}
.cid-sFRqjXIdTE .list {
  list-style: none;
  padding-left: 0;
}
.cid-sFRqjXIdTE .mbr-text {
  color: #dce8eb;
}
.cid-sFRqjXIdTE H5 {
  color: #ffffff;
}
.cid-sFRqjYbJap {
  min-height: 114px !important;
  position: relative;
  overflow: visible;
  background: #ffffff;
}
.cid-sFRqjYbJap .nav-link,
.cid-sFRqjYbJap .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-sFRqjYbJap .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-sFRqjYbJap .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-sFRqjYbJap .nav-link.text-primary:hover,
.cid-sFRqjYbJap .nav-link.text-primary:focus {
  color: #bedad4 !important;
}
.cid-sFRqjYbJap .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-sFRqjYbJap .nav-link:hover:before {
  opacity: 1;
}
.cid-sFRqjYbJap .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #2299aa;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-sFRqjYbJap .nav-link {
    margin: 0 !important;
  }
}
.cid-sFRqjYbJap .icons-menu {
  line-height: 0;
}
.cid-sFRqjYbJap .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-sFRqjYbJap .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-sFRqjYbJap .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-sFRqjYbJap .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-sFRqjYbJap .dropdown-menu a {
  overflow: hidden;
}
.cid-sFRqjYbJap .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-vento-kinder-fahrradanhaenger-2-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sFRqjYbJap .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-sFRqjYbJap .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/leggero-enso-kinder-fahrradanhaenger-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sFRqjYbJap .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-sFRqjYbJap .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/einkaufstrolley-online-kaufem-leggero-max-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sFRqjYbJap .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-sFRqjYbJap .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/zubehoer-ersatzteile-leggero-696x464.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-sFRqjYbJap .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-sFRqjYbJap .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-sFRqjYbJap .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-sFRqjYbJap .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-sFRqjYbJap .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-sFRqjYbJap .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-sFRqjYbJap .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-sFRqjYbJap.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-sFRqjYbJap .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-sFRqjYbJap .btn {
    white-space: nowrap;
  }
  .cid-sFRqjYbJap .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-sFRqjYbJap .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-sFRqjYbJap .nav-item.dropdown:hover::before,
  .cid-sFRqjYbJap .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-sFRqjYbJap .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-sFRqjYbJap .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-sFRqjYbJap .navbar > .container,
.cid-sFRqjYbJap .navbar > .container-fluid {
  align-items: center;
}
.cid-sFRqjYbJap .dropdown-toggle::after,
.cid-sFRqjYbJap .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-sFRqjYbJap .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-sFRqjYbJap .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-sFRqjYbJap .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-sFRqjYbJap .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-sFRqjYbJap .nav-item:focus,
.cid-sFRqjYbJap .nav-link:focus {
  outline: none;
}
.cid-sFRqjYbJap .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sFRqjYbJap .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFRqjYbJap .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-sFRqjYbJap a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-sFRqjYbJap ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
.cid-sFRqjYbJap .navbar {
  padding: 12px 52px 11px 43px;
  min-height: 114px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sFRqjYbJap .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sFRqjYbJap .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-sFRqjYbJap .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFRqjYbJap .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFRqjYbJap .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 55px - 1rem);
  }
}
.cid-sFRqjYbJap .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sFRqjYbJap .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFRqjYbJap .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sFRqjYbJap .dropdown-menu .menu__images {
    display: none;
  }
  .cid-sFRqjYbJap .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-sFRqjYbJap .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFRqjYbJap.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFRqjYbJap .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px;
    font-size: 14px;
  }
  .cid-sFRqjYbJap .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-sFRqjYbJap .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-sFRqjYbJap .navbar-logo {
    margin: 0;
  }
  .cid-sFRqjYbJap .navbar-logo img {
    height: 60px !important;
  }
  .cid-sFRqjYbJap .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-sFRqjYbJap .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sFRqjYbJap .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-sFRqjYbJap .navbar {
    padding: 13px 90px;
  }
  .cid-sFRqjYbJap .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-sFRqjYbJap .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-sFRqjYbJap .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-sFRqjYbJap .dropdown-toggle::after,
  .cid-sFRqjYbJap .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-sFRqjYbJap .nav-item {
    border-bottom: 1px solid #ffffff;
  }
  .cid-sFRqjYbJap a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-sFRqjYbJap ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-sFRqjYbJap .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sFRqjYbJap.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-sFRqjYbJap.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-sFRqjYbJap.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFRqjYbJap.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-sFRqjYbJap .navbar {
    padding: 0 !important;
  }
  .cid-sFRqjYbJap ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-sFRqjYbJap a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-sFRqjYbJap .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-sFRqjYbJap .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFRqjYbJap .dropdown-item.active,
.cid-sFRqjYbJap .dropdown-item:active {
  background-color: transparent;
}
.cid-sFRqjYbJap .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFRqjYbJap .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-sFRqjYbJap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sFRqjYbJap button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #151618;
}
.cid-sFRqjYbJap button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFRqjYbJap button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFRqjYbJap button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFRqjYbJap button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFRqjYbJap nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFRqjYbJap nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFRqjYbJap nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFRqjYbJap nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-sFRqjYbJap .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-sFRqjYbJap .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFRqjYbJap .navbar {
    height: 97px;
  }
  .cid-sFRqjYbJap .navbar.opened {
    height: auto;
  }
  .cid-sFRqjYbJap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFRqjYxwXM.popup-builder {
  background-color: #ffffff;
}
.cid-sFRqjYxwXM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFRqjYxwXM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFRqjYxwXM .modal-content,
.cid-sFRqjYxwXM .modal-dialog {
  height: auto;
}
.cid-sFRqjYxwXM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFRqjYxwXM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFRqjYxwXM .form-wrapper .mbr-form .form-group,
  .cid-sFRqjYxwXM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFRqjYxwXM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFRqjYxwXM .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFRqjYxwXM .mbr-text {
  text-align: center;
}
.cid-sFRqjYxwXM .pt-0 {
  padding-top: 0 !important;
}
.cid-sFRqjYxwXM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFRqjYxwXM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFRqjYxwXM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFRqjYxwXM .modal-open {
  overflow: hidden;
}
.cid-sFRqjYxwXM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFRqjYxwXM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFRqjYxwXM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFRqjYxwXM .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFRqjYxwXM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFRqjYxwXM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFRqjYxwXM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFRqjYxwXM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFRqjYxwXM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFRqjYxwXM .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFRqjYxwXM .modal-backdrop.show {
  opacity: .5;
}
.cid-sFRqjYxwXM .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sFRqjYxwXM .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFRqjYxwXM .modal-header .close:hover {
  opacity: 1;
}
.cid-sFRqjYxwXM .modal-header .close:focus {
  outline: none;
}
.cid-sFRqjYxwXM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #151618;
}
.cid-sFRqjYxwXM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sFRqjYxwXM .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sFRqjYxwXM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFRqjYxwXM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFRqjYxwXM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFRqjYxwXM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFRqjYxwXM .modal-sm {
    max-width: 300px;
  }
  .cid-sFRqjYxwXM .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFRqjYxwXM .modal-lg,
  .cid-sFRqjYxwXM .modal-xl {
    max-width: 800px;
  }
  .cid-sFRqjYxwXM .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFRqjYxwXM .modal-xl {
    max-width: 1140px;
  }
  .cid-sFRqjYxwXM .container {
    max-width: 1140px;
  }
}
.cid-sFRqjYxwXM .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFRqjYxwXM .container {
    max-width: 720px;
  }
}
.cid-sFRqjYxwXM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFRqjYxwXM .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFRqjYxwXM .form-group {
  margin-bottom: 1rem;
}
.cid-sFRqjYxwXM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFRqjYxwXM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFRqjYxwXM .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgW7N.popup-builder {
  background-color: #ffffff;
}
.cid-tz9ldUgW7N.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tz9ldUgW7N.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tz9ldUgW7N .modal-content,
.cid-tz9ldUgW7N .modal-dialog {
  height: auto;
}
.cid-tz9ldUgW7N .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tz9ldUgW7N .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tz9ldUgW7N .form-wrapper .mbr-form .form-group,
  .cid-tz9ldUgW7N .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tz9ldUgW7N .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tz9ldUgW7N .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9ldUgW7N .mbr-text {
  text-align: center;
}
.cid-tz9ldUgW7N .pt-0 {
  padding-top: 0 !important;
}
.cid-tz9ldUgW7N .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tz9ldUgW7N .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tz9ldUgW7N .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tz9ldUgW7N .modal-open {
  overflow: hidden;
}
.cid-tz9ldUgW7N .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tz9ldUgW7N .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tz9ldUgW7N .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tz9ldUgW7N .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tz9ldUgW7N .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tz9ldUgW7N .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tz9ldUgW7N .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tz9ldUgW7N .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tz9ldUgW7N .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tz9ldUgW7N .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tz9ldUgW7N .modal-backdrop.fade {
  opacity: 0;
}
.cid-tz9ldUgW7N .modal-backdrop.show {
  opacity: .5;
}
.cid-tz9ldUgW7N .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tz9ldUgW7N .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgW7N .modal-header {
    padding: 1rem;
  }
}
.cid-tz9ldUgW7N .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tz9ldUgW7N .modal-header .close svg {
  fill: #353535;
}
.cid-tz9ldUgW7N .modal-header .close:hover {
  opacity: 1;
}
.cid-tz9ldUgW7N .modal-header .close:focus {
  outline: none;
}
.cid-tz9ldUgW7N .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tz9ldUgW7N .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tz9ldUgW7N .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgW7N .modal-body {
    padding: 1rem;
  }
}
.cid-tz9ldUgW7N .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tz9ldUgW7N .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9ldUgW7N .modal-footer {
    padding: 1rem;
  }
}
.cid-tz9ldUgW7N .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tz9ldUgW7N .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tz9ldUgW7N .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tz9ldUgW7N .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tz9ldUgW7N .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tz9ldUgW7N .modal-lg,
  .cid-tz9ldUgW7N .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tz9ldUgW7N .modal-xl {
    max-width: 1140px;
  }
}
.cid-tz9ldUgW7N .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tz9ldUgW7N .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tz9ldUgW7N .form-group {
  margin-bottom: 1rem;
}
.cid-tz9ldUgW7N .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tz9ldUgW7N .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tz9ldUgW7N .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tz9ldUgW7N .mbr-section-btn {
  margin: 0;
}
.cid-tz9ldUgW7N .mbr-section-btn .btn {
  margin: 0;
}
