body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Oxygen', sans-serif;
  font-size: 2.6rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Oxygen', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-4 {
  font-family: 'Mukta', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.7rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.12rem;
}
.display-7 {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #d4af37 !important;
}
.bg-warning {
  background-color: #465052 !important;
}
.bg-danger {
  background-color: #b7fa06 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #9d8022 !important;
  border-color: #9d8022 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #9d8022 !important;
  border-color: #9d8022 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #465052 !important;
  border-color: #465052 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #232829 !important;
  border-color: #232829 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #232829 !important;
  border-color: #232829 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b7fa06 !important;
  border-color: #b7fa06 !important;
  color: #010100 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #010100 !important;
  background-color: #81b004 !important;
  border-color: #81b004 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #010100 !important;
  background-color: #81b004 !important;
  border-color: #81b004 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #886f1d;
  color: #886f1d;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #d4af37;
  border-color: #d4af37;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #171a1b;
  color: #171a1b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #465052;
  border-color: #465052;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #465052 !important;
  border-color: #465052 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #6e9703;
  color: #6e9703;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #010100;
  background-color: #b7fa06;
  border-color: #b7fa06;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #010100 !important;
  background-color: #b7fa06 !important;
  border-color: #b7fa06 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #d4af37 !important;
}
.text-warning {
  color: #465052 !important;
}
.text-danger {
  color: #b7fa06 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #886f1d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #171a1b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #6e9703 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d4af37;
}
.alert-warning {
  background-color: #465052;
}
.alert-danger {
  background-color: #b7fa06;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f8f2df;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #bac2c4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f1fece;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23149dcc' %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.3;
}
.cid-rxqgTmCYNZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rxqgTmCYNZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxqgTmCYNZ .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-rxqgTmCYNZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxqgTmCYNZ .inner-container {
    width: 100% !important;
  }
}
.cid-rxqgTmCYNZ .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-roaW8BwBAu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaW8BwBAu .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-roaW8BwBAu .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-roaW8BwBAu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-roaW8BwBAu .inner-container {
    width: 100% !important;
  }
}
.cid-roaW8BwBAu gold {
  color: #ebb000;
}
.cid-roaW8BwBAu h3 {
  font-size: 18px;
}
.cid-roaCHfMH6X {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaCHfMH6X .card-img {
  padding: 0 0 3rem;
}
.cid-roaCHfMH6X .mbr-section-btn {
  margin-left: 0;
}
.cid-roaCHfMH6X .card-days {
  background-color: #333333;
  border-radius: 5px;
}
.cid-roaCHfMH6X .card-days .schedule {
  display: block;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.cid-roaCHfMH6X .card-days .schedule li {
  border-top: 1px solid;
  padding-top: 10px;
}
.cid-roaCHfMH6X .card-days .schedule li:first-child {
  border-top: none;
}
.cid-roaCHfMH6X .card-days .schedule li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-roaCHfMH6X .card-days .schedule li:after {
  display: block;
  content: '';
  clear: both;
}
@media (min-width: 992px) {
  .cid-roaCHfMH6X .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-roaCHfMH6X .days-subtitle {
  color: #232323;
}
.cid-roaCHfMH6X .days-title {
  color: #d4af37;
  text-align: left;
}
.cid-roaCHfMH6X .card-title {
  color: #EBB000;
}
.cid-roaCHfMH6X UL {
  color: #efefef;
}
.cid-roaCHfMH6X .days-title B {
  color: #ebb000;
}
.cid-roaDbp2YgM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaDbp2YgM .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-roaDbp2YgM .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-roaDbp2YgM .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-roaDbp2YgM .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-roaDbp2YgM .card-overlay {
  display: none;
  background: #92b5d5;
}
@media (min-width: 768px) {
  .cid-roaDbp2YgM .image-element:hover .card-overlay {
    opacity: 0.5;
    border-bottom-right-radius: 7rem;
  }
  .cid-roaDbp2YgM .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-roaDbp2YgM .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-roaDbp2YgM .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-roaDbp2YgM .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-roaDbp2YgM .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-roaDbp2YgM .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-roaDbp2YgM .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-roaDbp2YgM .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-roaDbp2YgM .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-roaDbp2YgM .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-roaDbp2YgM .card-title,
  .cid-roaDbp2YgM .underline,
  .cid-roaDbp2YgM .mbr-text,
  .cid-roaDbp2YgM .mbr-section-btn,
  .cid-roaDbp2YgM .mbr-section-subtitle,
  .cid-roaDbp2YgM .mbr-section-title {
    text-align: center !important;
  }
  .cid-roaDbp2YgM .wrapper {
    background-color: #92b5d5;
  }
}
.cid-roaDbp2YgM .mbr-section-title {
  text-align: left;
  padding-left: 15px;
}
.cid-roaDbp2YgM .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-robl2tKScv {
  padding-top: 240px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-robl2tKScv h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-robl2tKScv h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ff3366;
  margin-left: 10px;
}
.cid-robl2tKScv .mbr-text,
.cid-robl2tKScv .mbr-section-btn {
  color: #232323;
}
.cid-robl2tKScv H1 {
  color: #232323;
}
.cid-robl2tKScv H3 {
  color: #d4af37;
}
.cid-rxvrcs8oJH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrcs8oJH .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrcs8oJH .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrcs8oJH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrcs8oJH .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrcs8oJH aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrcs8oJH seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-roaCIKOcuE {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-roaCIKOcuE .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-roaCIKOcuE .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-roaCIKOcuE .media-wrap img {
  height: 6rem;
}
.cid-roaCIKOcuE .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-roaCIKOcuE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-roaCIKOcuE .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-roaCIKOcuE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-roaCIKOcuE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-roaCIKOcuE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-roaCIKOcuE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-roaCIKOcuE .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-roaCIKOcuE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-roaCIKOcuE .links {
  color: #232323;
}
.cid-roaCIKOcuE .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rycAVsiY46 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/doll-1083819-2000x1333.jpg");
}
.cid-rycAVsiY46 .card-text,
.cid-rycAVsiY46 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rycAVsiY46 .main,
.cid-rycAVsiY46 .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #232323;
}
.cid-rycAVsiY46 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rycAVsiY46 .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rycAVsiY46 .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rycAVsiY46 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rycAVsiY46 .text-element {
  padding: 3rem 2rem;
}
.cid-rycAVsiY46 .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-rycAVsiY46 .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-rycAVsiY46 .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-rycAVsiY46 .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-rycAVsiY46 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-rycAVsiY46 .image-element,
  .cid-rycAVsiY46 .text-element {
    margin-bottom: 0;
  }
  .cid-rycAVsiY46 .main:first-child {
    padding-top: 0;
  }
}
.cid-rycAVsiY46 .card-text,
.cid-rycAVsiY46 .mbr-section-btn {
  text-align: center;
}
.cid-rxvrkftKKr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrkftKKr .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrkftKKr .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrkftKKr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrkftKKr .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrkftKKr aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrkftKKr seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDHW8pKn {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDHW8pKn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDHW8pKn .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDHW8pKn .media-wrap img {
  height: 6rem;
}
.cid-sucDHW8pKn .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDHW8pKn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDHW8pKn .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDHW8pKn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDHW8pKn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDHW8pKn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDHW8pKn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDHW8pKn .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDHW8pKn .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDHW8pKn .links {
  color: #232323;
}
.cid-sucDHW8pKn .copyright > p {
  color: #465052;
}
.cid-roaCDqBrkr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaCDqBrkr .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-roaCDqBrkr .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #ebb000;
}
.cid-roaCDqBrkr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-roaCDqBrkr .inner-container {
    width: 100% !important;
  }
}
.cid-roaCDqBrkr blau {
  font-size: 42px;
  color: #0082c3;
}
.cid-robnTMpCCd {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/s1-2000x900.jpg");
}
.cid-robnTMpCCd .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-robnTMpCCd .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-robnTMpCCd .mbr-figure img {
    width: 100% !important;
  }
}
.cid-robnTMpCCd H1 {
  text-align: center;
}
.cid-robnTMpCCd SPAN {
  color: #000000;
}
.cid-robofURbTs {
  padding-top: 150px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-robofURbTs .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-robofURbTs .card-wrap {
  background-color: #232323;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-robofURbTs .card-wrap:hover h4,
.cid-robofURbTs .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-robofURbTs h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-robofURbTs h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #d4af37;
  margin-left: 10px;
}
.cid-robofURbTs img {
  width: 100%;
}
.cid-robofURbTs h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-robofURbTs h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-robofURbTs .card-title1,
.cid-robofURbTs .title-wrap1 {
  color: #ffffff;
}
.cid-robofURbTs .card-title,
.cid-robofURbTs .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-robofURbTs .mdpb {
    padding-bottom: 2rem;
  }
  .cid-robofURbTs .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-robofURbTs H3 {
  color: #d4af37;
}
.cid-rxvrgxjioZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrgxjioZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrgxjioZ .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrgxjioZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrgxjioZ .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrgxjioZ aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrgxjioZ seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDLn0ERs {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDLn0ERs .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDLn0ERs .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDLn0ERs .media-wrap img {
  height: 6rem;
}
.cid-sucDLn0ERs .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDLn0ERs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDLn0ERs .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDLn0ERs .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDLn0ERs .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDLn0ERs .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDLn0ERs .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDLn0ERs .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDLn0ERs .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDLn0ERs .links {
  color: #232323;
}
.cid-sucDLn0ERs .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-ryc0vl9KNE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryc0vl9KNE .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryc0vl9KNE .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #ebb000;
}
.cid-ryc0vl9KNE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryc0vl9KNE .inner-container {
    width: 100% !important;
  }
}
.cid-ryc0vl9KNE blau {
  font-size: 42px;
  color: #0082c3;
}
.cid-ryc0vlu3Hk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryc0vlu3Hk .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryc0vlu3Hk .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-ryc0vlu3Hk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryc0vlu3Hk .inner-container {
    width: 100% !important;
  }
}
.cid-ryc0vlu3Hk .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-ryc7Rxmb87 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryc7Rxmb87 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-ryc7Rxmb87 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-ryc7Rxmb87 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryc7Rxmb87 .inner-container {
    width: 100% !important;
  }
}
.cid-ryc7Rxmb87 ga {
  color: #017b04;
  font-size: 26px;
}
.cid-rychx9dyj0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rychx9dyj0 h4 {
  margin-bottom: 0;
}
.cid-rychx9dyj0 p {
  color: #767676;
}
.cid-rychx9dyj0 .btn-info-outline {
  border: none;
  color: #d4af37 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rychx9dyj0 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rychx9dyj0 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-rychx9dyj0 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #149dcc !important;
  box-shadow: none!important;
}
.cid-rychx9dyj0 .btn-info-outline:active,
.cid-rychx9dyj0 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rychx9dyj0 .card-box {
  padding-top: 2rem;
}
.cid-rychx9dyj0 .card-wrapper {
  height: 100%;
}
.cid-rychx9dyj0 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rychx9dyj0 img {
  border-radius: 8px;
}
.cid-rychx9dyj0 .card-title {
  color: #465052;
}
.cid-rychx9dyj0 .main-title {
  color: #57468b;
  text-align: center;
}
.cid-rychx9dyj0 DIV {
  color: #57468b;
}
.cid-ryc0vmHflf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ryc0vmHflf .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryc0vmHflf .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-ryc0vmHflf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryc0vmHflf .inner-container {
    width: 100% !important;
  }
}
.cid-ryc0vmHflf aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-ryc0vmHflf seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDOVnvqx {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDOVnvqx .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDOVnvqx .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDOVnvqx .media-wrap img {
  height: 6rem;
}
.cid-sucDOVnvqx .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDOVnvqx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDOVnvqx .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDOVnvqx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDOVnvqx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDOVnvqx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDOVnvqx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDOVnvqx .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDOVnvqx .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDOVnvqx .links {
  color: #232323;
}
.cid-sucDOVnvqx .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnUfX8WPE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnUfX8WPE .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnUfX8WPE .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnUfX8WPE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnUfX8WPE .inner-container {
    width: 100% !important;
  }
}
.cid-sEnUfX8WPE .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-rycaWIzYNR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rycaWIzYNR .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rycaWIzYNR .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-rycaWIzYNR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rycaWIzYNR .inner-container {
    width: 100% !important;
  }
}
.cid-rycaWIzYNR .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-rycaWIYkgg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rycaWIYkgg .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-rycaWIYkgg .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-rycaWIYkgg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rycaWIYkgg .inner-container {
    width: 100% !important;
  }
}
.cid-rycaWIYkgg ga {
  color: #017b04;
  font-size: 26px;
}
.cid-rycicghKl7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rycicghKl7 h4 {
  margin-bottom: 0;
}
.cid-rycicghKl7 p {
  color: #767676;
}
.cid-rycicghKl7 .btn-info-outline {
  border: none;
  color: #d4af37 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rycicghKl7 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rycicghKl7 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-rycicghKl7 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #149dcc !important;
  box-shadow: none!important;
}
.cid-rycicghKl7 .btn-info-outline:active,
.cid-rycicghKl7 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rycicghKl7 .card-box {
  padding-top: 2rem;
}
.cid-rycicghKl7 .card-wrapper {
  height: 100%;
}
.cid-rycicghKl7 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rycicghKl7 img {
  border-radius: 8px;
}
.cid-rycicghKl7 .card-title {
  color: #465052;
}
.cid-rycicghKl7 .main-title {
  color: #57468b;
  text-align: center;
}
.cid-rycicghKl7 DIV {
  color: #57468b;
}
.cid-rycaWKjoFf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rycaWKjoFf .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rycaWKjoFf .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rycaWKjoFf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rycaWKjoFf .inner-container {
    width: 100% !important;
  }
}
.cid-rycaWKjoFf aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rycaWKjoFf seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDRdlIAA {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDRdlIAA .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDRdlIAA .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDRdlIAA .media-wrap img {
  height: 6rem;
}
.cid-sucDRdlIAA .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDRdlIAA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDRdlIAA .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDRdlIAA .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDRdlIAA .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDRdlIAA .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDRdlIAA .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDRdlIAA .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDRdlIAA .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDRdlIAA .links {
  color: #232323;
}
.cid-sucDRdlIAA .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-ryckwb4mXw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryckwb4mXw .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryckwb4mXw .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-ryckwb4mXw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryckwb4mXw .inner-container {
    width: 100% !important;
  }
}
.cid-ryckwb4mXw .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-ryckwbsqjc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryckwbsqjc .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-ryckwbsqjc .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-ryckwbsqjc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryckwbsqjc .inner-container {
    width: 100% !important;
  }
}
.cid-ryckwbsqjc ga {
  color: #017b04;
  font-size: 26px;
}
.cid-ryckwbStN4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryckwbStN4 h4 {
  margin-bottom: 0;
}
.cid-ryckwbStN4 p {
  color: #767676;
}
.cid-ryckwbStN4 .btn-info-outline {
  border: none;
  color: #d4af37 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-ryckwbStN4 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-ryckwbStN4 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-ryckwbStN4 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #149dcc !important;
  box-shadow: none!important;
}
.cid-ryckwbStN4 .btn-info-outline:active,
.cid-ryckwbStN4 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-ryckwbStN4 .card-box {
  padding-top: 2rem;
}
.cid-ryckwbStN4 .card-wrapper {
  height: 100%;
}
.cid-ryckwbStN4 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ryckwbStN4 img {
  border-radius: 8px;
}
.cid-ryckwbStN4 .card-title {
  color: #465052;
}
.cid-ryckwbStN4 .main-title {
  color: #57468b;
  text-align: center;
}
.cid-ryckwbStN4 DIV {
  color: #57468b;
}
.cid-ryckwdAqtY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ryckwdAqtY .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryckwdAqtY .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-ryckwdAqtY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryckwdAqtY .inner-container {
    width: 100% !important;
  }
}
.cid-ryckwdAqtY aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-ryckwdAqtY seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDU713pn {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDU713pn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDU713pn .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDU713pn .media-wrap img {
  height: 6rem;
}
.cid-sucDU713pn .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDU713pn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDU713pn .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDU713pn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDU713pn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDU713pn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDU713pn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDU713pn .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDU713pn .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDU713pn .links {
  color: #232323;
}
.cid-sucDU713pn .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnUMnfwNw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnUMnfwNw .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnUMnfwNw .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnUMnfwNw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnUMnfwNw .inner-container {
    width: 100% !important;
  }
}
.cid-sEnUMnfwNw .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-sEnV6MDebG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnV6MDebG .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnV6MDebG .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnV6MDebG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnV6MDebG .inner-container {
    width: 100% !important;
  }
}
.cid-sEnV6MDebG .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-rycm6iQxIU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rycm6iQxIU .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rycm6iQxIU .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-rycm6iQxIU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rycm6iQxIU .inner-container {
    width: 100% !important;
  }
}
.cid-rycm6iQxIU .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-rycm6jaaFp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rycm6jaaFp .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-rycm6jaaFp .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-rycm6jaaFp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rycm6jaaFp .inner-container {
    width: 100% !important;
  }
}
.cid-rycm6jaaFp ga {
  color: #017b04;
  font-size: 26px;
}
.cid-rycm6jFYLi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rycm6jFYLi h4 {
  margin-bottom: 0;
}
.cid-rycm6jFYLi p {
  color: #767676;
}
.cid-rycm6jFYLi .btn-info-outline {
  border: none;
  color: #d4af37 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rycm6jFYLi .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rycm6jFYLi .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-rycm6jFYLi .btn-info-outline:hover {
  background-color: transparent!important;
  color: #149dcc !important;
  box-shadow: none!important;
}
.cid-rycm6jFYLi .btn-info-outline:active,
.cid-rycm6jFYLi .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rycm6jFYLi .card-box {
  padding-top: 2rem;
}
.cid-rycm6jFYLi .card-wrapper {
  height: 100%;
}
.cid-rycm6jFYLi .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rycm6jFYLi img {
  border-radius: 8px;
}
.cid-rycm6jFYLi .card-title {
  color: #465052;
}
.cid-rycm6jFYLi .main-title {
  color: #57468b;
  text-align: center;
}
.cid-rycm6jFYLi DIV {
  color: #57468b;
}
.cid-rycm6kwg0o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rycm6kwg0o .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rycm6kwg0o .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rycm6kwg0o .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rycm6kwg0o .inner-container {
    width: 100% !important;
  }
}
.cid-rycm6kwg0o aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rycm6kwg0o seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDWDljiA {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDWDljiA .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDWDljiA .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDWDljiA .media-wrap img {
  height: 6rem;
}
.cid-sucDWDljiA .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDWDljiA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDWDljiA .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDWDljiA .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDWDljiA .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDWDljiA .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDWDljiA .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDWDljiA .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDWDljiA .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDWDljiA .links {
  color: #232323;
}
.cid-sucDWDljiA .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnVoapbhg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnVoapbhg .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnVoapbhg .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnVoapbhg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnVoapbhg .inner-container {
    width: 100% !important;
  }
}
.cid-sEnVoapbhg .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-ryco3hQ2fd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryco3hQ2fd .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryco3hQ2fd .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-ryco3hQ2fd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryco3hQ2fd .inner-container {
    width: 100% !important;
  }
}
.cid-ryco3hQ2fd .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-ryco3ibSwS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryco3ibSwS .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-ryco3ibSwS .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-ryco3ibSwS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryco3ibSwS .inner-container {
    width: 100% !important;
  }
}
.cid-ryco3ibSwS ga {
  color: #017b04;
  font-size: 26px;
}
.cid-ryco3iTnj9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ryco3iTnj9 h4 {
  margin-bottom: 0;
}
.cid-ryco3iTnj9 p {
  color: #767676;
}
.cid-ryco3iTnj9 .btn-info-outline {
  border: none;
  color: #d4af37 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-ryco3iTnj9 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-ryco3iTnj9 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-ryco3iTnj9 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #149dcc !important;
  box-shadow: none!important;
}
.cid-ryco3iTnj9 .btn-info-outline:active,
.cid-ryco3iTnj9 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-ryco3iTnj9 .card-box {
  padding-top: 2rem;
}
.cid-ryco3iTnj9 .card-wrapper {
  height: 100%;
}
.cid-ryco3iTnj9 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ryco3iTnj9 img {
  border-radius: 8px;
}
.cid-ryco3iTnj9 .card-title {
  color: #465052;
}
.cid-ryco3iTnj9 .main-title {
  color: #57468b;
  text-align: center;
}
.cid-ryco3iTnj9 DIV {
  color: #57468b;
}
.cid-ryco3iwtVN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ryco3iwtVN .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ryco3iwtVN .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-ryco3iwtVN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ryco3iwtVN .inner-container {
    width: 100% !important;
  }
}
.cid-ryco3iwtVN aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-ryco3iwtVN seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucDZmA1aa {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucDZmA1aa .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDZmA1aa .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucDZmA1aa .media-wrap img {
  height: 6rem;
}
.cid-sucDZmA1aa .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucDZmA1aa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucDZmA1aa .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucDZmA1aa .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucDZmA1aa .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucDZmA1aa .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucDZmA1aa .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucDZmA1aa .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucDZmA1aa .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucDZmA1aa .links {
  color: #232323;
}
.cid-sucDZmA1aa .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnVHIPEUV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnVHIPEUV .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnVHIPEUV .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnVHIPEUV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnVHIPEUV .inner-container {
    width: 100% !important;
  }
}
.cid-sEnVHIPEUV .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-roaVAPPLvv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaVAPPLvv .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-roaVAPPLvv .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-roaVAPPLvv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-roaVAPPLvv .inner-container {
    width: 100% !important;
  }
}
.cid-roaVAPPLvv .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-roaW8BwBAu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaW8BwBAu .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-roaW8BwBAu .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-roaW8BwBAu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-roaW8BwBAu .inner-container {
    width: 100% !important;
  }
}
.cid-roaW8BwBAu gold {
  color: #ebb000;
}
.cid-roaW8BwBAu h3 {
  font-size: 18px;
}
.cid-rxvrqykDhX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrqykDhX .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrqykDhX .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrqykDhX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrqykDhX .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrqykDhX aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrqykDhX seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucE24cDoi {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucE24cDoi .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucE24cDoi .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucE24cDoi .media-wrap img {
  height: 6rem;
}
.cid-sucE24cDoi .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucE24cDoi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucE24cDoi .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucE24cDoi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucE24cDoi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucE24cDoi .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucE24cDoi .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucE24cDoi .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucE24cDoi .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucE24cDoi .links {
  color: #232323;
}
.cid-sucE24cDoi .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rxjZSL6l0Q {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2a2a2a;
}
.cid-rxjZSL6l0Q .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-rxjZSL6l0Q .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (min-width: 767px) {
  .cid-rxjZSL6l0Q .row {
    padding: 0 4rem;
  }
}
@media (max-width: 1400px) {
  .cid-rxjZSL6l0Q .card-wrapper {
    margin: 0rem;
  }
}
.cid-rxjZSL6l0Q .card {
  height: fit-content;
}
.cid-rxjZSL6l0Q .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-rxjZSL6l0Q .text-wrap {
  max-width: 400px;
}
.cid-rxjZSL6l0Q .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #e15a00;
}
.cid-rxjZSL6l0Q .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-rxjZSL6l0Q .card-box {
  background-color: #333333;
  padding: 4rem 4rem 6rem 4rem;
  width: 100%;
}
.cid-rxjZSL6l0Q img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-rxjZSL6l0Q .img-wrap {
  max-height: 250px;
  overflow: hidden;
}
.cid-rxjZSL6l0Q .container {
  max-width: 1500px;
}
.cid-rxjZSL6l0Q .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rxjZSL6l0Q .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-rxjZSL6l0Q P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-rxjZSL6l0Q .img-wrap {
    max-height: 230px;
  }
  .cid-rxjZSL6l0Q .text-wrap {
    padding: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-rxjZSL6l0Q .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-rxjZSL6l0Q .text-wrap {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-rxjZSL6l0Q .card-box {
    padding: 2rem 1rem 5rem 1rem;
  }
  .cid-rxjZSL6l0Q .number {
    margin: auto;
  }
}
.cid-rxjZSL6l0Q .mbr-text {
  color: #cccccc;
}
.cid-rxvrtqWlxZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrtqWlxZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrtqWlxZ .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrtqWlxZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrtqWlxZ .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrtqWlxZ aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrtqWlxZ seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucE4O9NsX {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucE4O9NsX .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucE4O9NsX .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucE4O9NsX .media-wrap img {
  height: 6rem;
}
.cid-sucE4O9NsX .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucE4O9NsX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucE4O9NsX .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucE4O9NsX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucE4O9NsX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucE4O9NsX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucE4O9NsX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucE4O9NsX .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucE4O9NsX .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucE4O9NsX .links {
  color: #232323;
}
.cid-sucE4O9NsX .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnWiRfdVH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnWiRfdVH .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnWiRfdVH .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnWiRfdVH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnWiRfdVH .inner-container {
    width: 100% !important;
  }
}
.cid-sEnWiRfdVH .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-robxoPoJY6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-robxoPoJY6 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robxoPoJY6 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-robxoPoJY6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robxoPoJY6 .inner-container {
    width: 100% !important;
  }
}
.cid-robxoPoJY6 .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-robxCnPaj0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-robxCnPaj0 .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robxCnPaj0 .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-robxCnPaj0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robxCnPaj0 .inner-container {
    width: 100% !important;
  }
}
.cid-robxCnPaj0 pink {
  color: #cc2952;
}
.cid-robxEwGr9y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-robxEwGr9y .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robxEwGr9y .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-robxEwGr9y .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robxEwGr9y .inner-container {
    width: 100% !important;
  }
}
.cid-robxWO6BQg {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-robxWO6BQg .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robxWO6BQg .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-robxWO6BQg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robxWO6BQg .inner-container {
    width: 100% !important;
  }
}
.cid-robxWO6BQg pink {
  color: #cc2952;
}
.cid-roby4BQERx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roby4BQERx .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-roby4BQERx .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-roby4BQERx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-roby4BQERx .inner-container {
    width: 100% !important;
  }
}
.cid-robxuLXeIl {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-robxuLXeIl .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robxuLXeIl .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-robxuLXeIl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robxuLXeIl .inner-container {
    width: 100% !important;
  }
}
.cid-robxuLXeIl pink {
  color: #cc2952;
}
.cid-rxk0X5SQcu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxk0X5SQcu .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxk0X5SQcu .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxk0X5SQcu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxk0X5SQcu .inner-container {
    width: 100% !important;
  }
}
.cid-rxk0X5SQcu aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxk0X5SQcu seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucE7tDRxd {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucE7tDRxd .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucE7tDRxd .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucE7tDRxd .media-wrap img {
  height: 6rem;
}
.cid-sucE7tDRxd .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucE7tDRxd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucE7tDRxd .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucE7tDRxd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucE7tDRxd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucE7tDRxd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucE7tDRxd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucE7tDRxd .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucE7tDRxd .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucE7tDRxd .links {
  color: #232323;
}
.cid-sucE7tDRxd .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnWfMKzyd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnWfMKzyd .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnWfMKzyd .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnWfMKzyd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnWfMKzyd .inner-container {
    width: 100% !important;
  }
}
.cid-sEnWfMKzyd .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-robyATMJcJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-robyATMJcJ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robyATMJcJ .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-robyATMJcJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robyATMJcJ .inner-container {
    width: 100% !important;
  }
}
.cid-robyATMJcJ .section-text H2 {
  color: #465052;
  font-size: 28px;
  font-family: Oxygen;
}
.cid-robyzLkRuj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-robyzLkRuj .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robyzLkRuj .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #000000;
}
.cid-robyzLkRuj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robyzLkRuj .inner-container {
    width: 100% !important;
  }
}
.cid-robyN1yR8P {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-robyN1yR8P .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-robyN1yR8P .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-robyN1yR8P .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-robyN1yR8P .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrz2zcOZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrz2zcOZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrz2zcOZ .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrz2zcOZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrz2zcOZ .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrz2zcOZ aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrz2zcOZ seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucEaLRk4c {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucEaLRk4c .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucEaLRk4c .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucEaLRk4c .media-wrap img {
  height: 6rem;
}
.cid-sucEaLRk4c .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucEaLRk4c .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucEaLRk4c .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucEaLRk4c .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucEaLRk4c .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucEaLRk4c .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucEaLRk4c .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucEaLRk4c .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucEaLRk4c .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucEaLRk4c .links {
  color: #232323;
}
.cid-sucEaLRk4c .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sEnWaKrvND {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEnWaKrvND .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEnWaKrvND .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-sEnWaKrvND .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEnWaKrvND .inner-container {
    width: 100% !important;
  }
}
.cid-sEnWaKrvND .section-text h1 {
  color: #d4af37;
  font-size: 36px;
  font-family: Oxygen;
}
.cid-roaRQGNpJS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaRQGNpJS .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-roaRQGNpJS .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #7796ab;
}
.cid-roaRQGNpJS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-roaRQGNpJS .inner-container {
    width: 100% !important;
  }
}
.cid-roaRQGNpJS .section-text H2 {
  color: #232323;
}
.cid-sucig6Y1mx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sucig6Y1mx .mbr-overlay {
  background: #efefef;
}
.cid-sucig6Y1mx .mbr-section-subtitle {
  color: #8d97ad;
  text-align: left;
}
.cid-sucig6Y1mx .client-name {
  color: #8d97ad;
}
.cid-sucig6Y1mx .wrap-img {
  padding-bottom: 1rem;
}
.cid-sucig6Y1mx .wrap-img img {
  max-width: 100%;
}
.cid-sucig6Y1mx .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rxvrCxXAiP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rxvrCxXAiP .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rxvrCxXAiP .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-rxvrCxXAiP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rxvrCxXAiP .inner-container {
    width: 100% !important;
  }
}
.cid-rxvrCxXAiP aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-rxvrCxXAiP seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucEdQsF34 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucEdQsF34 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucEdQsF34 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucEdQsF34 .media-wrap img {
  height: 6rem;
}
.cid-sucEdQsF34 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucEdQsF34 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucEdQsF34 .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucEdQsF34 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucEdQsF34 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucEdQsF34 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucEdQsF34 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucEdQsF34 .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucEdQsF34 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucEdQsF34 .links {
  color: #232323;
}
.cid-sucEdQsF34 .copyright > p {
  color: #465052;
}
.cid-suchpndATy {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-suchpndATy .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-suchpndATy .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-suchpndATy .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-suchpndATy .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-suchpndATy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suchpndATy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suchpndATy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suchpndATy .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-suchpndATy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suchpndATy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suchpndATy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-suchpndATy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suchpndATy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suchpndATy .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-suchpndATy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suchpndATy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suchpndATy .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-suchpndATy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-suchpndATy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suchpndATy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-suchpndATy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suchpndATy .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-suchpndATy .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-suchpndATy .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-suchpndATy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suchpndATy .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-suchpndATy .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-suchpndATy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suchpndATy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suchpndATy .dropdown-item.active,
.cid-suchpndATy .dropdown-item:active {
  background-color: transparent;
}
.cid-suchpndATy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-suchpndATy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suchpndATy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suchpndATy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suchpndATy .navbar-buttons {
  text-align: center;
}
.cid-suchpndATy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suchpndATy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-suchpndATy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-suchpndATy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suchpndATy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-suchpndATy .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-suchpndATy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suchpndATy .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-suchpndATy .nav-link:hover,
.cid-suchpndATy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suchpndATy .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-suchpndATy .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-suchpndATy .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sud28rLpRT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-sud28rLpRT .card-box {
  padding: 0rem;
}
.cid-sud28rLpRT .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sud28rLpRT .card {
  padding: 0;
  margin: auto;
}
.cid-sud28rLpRT .card-img {
  height: 400px;
}
.cid-sud28rLpRT .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sud28rLpRT .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sud28rLpRT .card-wrapper {
    padding: 4rem;
  }
}
.cid-sud28rLpRT .card-title {
  color: #ffffff;
}
.cid-sud3qsQeOK {
  padding-top: 60px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-sud3qsQeOK .card-header {
  background: transparent;
}
.cid-sud3qsQeOK .mbr-iconfont {
  font-size: 1.4rem!important;
  font-family: 'Moririse2' !important;
  color: #149dcc;
  margin-left: 1rem;
}
.cid-sud3qsQeOK .panel-body {
  padding: 1rem 0;
}
.cid-sud3qsQeOK .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sud3qsQeOK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sud3qsQeOK .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;
}
.cid-sud3qsQeOK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sud3qsQeOK .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sud3qsQeOK .card .panel-body {
  color: #767676;
}
.cid-sud3qsQeOK h4 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border-bottom: 1px solid lightgray;
  padding: 0.8rem 0rem;
}
.cid-sud3qsQeOK H4 {
  color: #000000;
  text-align: left;
}
.cid-sud3qsQeOK H2 {
  color: #000000;
}
.cid-sud3qsQeOK .panel-text {
  color: #073b4c;
}
.cid-sud3qsQeOK orange {
  color: #e15a00;
}
.cid-sud3qsQeOK blau {
  color: #0082c3;
}
.cid-sud3rq7CuS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3rq7CuS .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sud3rq7CuS .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #e15a00;
}
.cid-sud3rq7CuS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sud3rq7CuS .inner-container {
    width: 100% !important;
  }
}
.cid-sud3rq7CuS blau {
  color: #0082c3;
  font-size: 24px;
}
.cid-sud3rq7CuS .section-text BLAU {
  color: #c30027;
}
.cid-sud3s4Urc3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3s4Urc3 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sud3s4Urc3 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #009e89;
}
.cid-sud3s4Urc3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sud3s4Urc3 .inner-container {
    width: 100% !important;
  }
}
.cid-sud3s4Urc3 blau {
  color: #0082c3;
  font-size: 24px;
}
.cid-sud3s4Urc3 .section-text BLAU {
  color: #c30027;
}
.cid-sud3t9SW2g {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3t9SW2g .image-block {
  margin: auto;
}
.cid-sud3t9SW2g figcaption {
  position: relative;
}
.cid-sud3t9SW2g figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3t9SW2g .image-block {
    width: 100% !important;
  }
}
.cid-sud3tMHZUa {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sud3tMHZUa .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-sud3tMHZUa .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #f51c11;
}
.cid-sud3tMHZUa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sud3tMHZUa .inner-container {
    width: 100% !important;
  }
}
.cid-sud3tMHZUa black {
  color: #333333;
  font-size: 34px;
  line-height: 22px;
}
.cid-sud3w2Qzqx {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3w2Qzqx .media-content .btn-bgr {
  z-index: 0;
}
.cid-sud3w2Qzqx .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sud3w2Qzqx h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sud3w2Qzqx p {
  color: #464646;
}
.cid-sud3w2Qzqx h2 {
  color: #000000;
}
.cid-sud3w2Qzqx .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sud3w2Qzqx .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud3w2Qzqx .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sud3w2Qzqx .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sud3w2Qzqx .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sud3w2Qzqx .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sud3w2Qzqx .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sud3w2Qzqx .mbr-text {
    text-align: center;
  }
}
.cid-sud3w2Qzqx .mbr-section-subtitle {
  color: #951d19;
}
.cid-sud3w2Qzqx .mbr-section-title,
.cid-sud3w2Qzqx .mbr-section-btn {
  color: #b99808;
}
.cid-sud3w2Qzqx P {
  color: #232323;
}
.cid-sud3IfydUa {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3IfydUa .image-block {
  margin: auto;
}
.cid-sud3IfydUa figcaption {
  position: relative;
}
.cid-sud3IfydUa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3IfydUa .image-block {
    width: 100% !important;
  }
}
.cid-sud3wOdiwW {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3wOdiwW .media-content .btn-bgr {
  z-index: 0;
}
.cid-sud3wOdiwW .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sud3wOdiwW h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sud3wOdiwW p {
  color: #464646;
}
.cid-sud3wOdiwW h2 {
  color: #000000;
}
.cid-sud3wOdiwW .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sud3wOdiwW .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud3wOdiwW .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sud3wOdiwW .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sud3wOdiwW .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sud3wOdiwW .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sud3wOdiwW .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sud3wOdiwW .mbr-text {
    text-align: center;
  }
}
.cid-sud3wOdiwW .mbr-section-subtitle {
  color: #951d19;
}
.cid-sud3wOdiwW .mbr-section-title,
.cid-sud3wOdiwW .mbr-section-btn {
  color: #b99808;
}
.cid-sud3wOdiwW P {
  color: #232323;
}
.cid-sud3IIQdkf {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3IIQdkf .image-block {
  margin: auto;
}
.cid-sud3IIQdkf figcaption {
  position: relative;
}
.cid-sud3IIQdkf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3IIQdkf .image-block {
    width: 100% !important;
  }
}
.cid-sud3xvcGgA {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3xvcGgA .media-content .btn-bgr {
  z-index: 0;
}
.cid-sud3xvcGgA .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sud3xvcGgA h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sud3xvcGgA p {
  color: #464646;
}
.cid-sud3xvcGgA h2 {
  color: #000000;
}
.cid-sud3xvcGgA .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sud3xvcGgA .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud3xvcGgA .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sud3xvcGgA .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sud3xvcGgA .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sud3xvcGgA .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sud3xvcGgA .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sud3xvcGgA .mbr-text {
    text-align: center;
  }
}
.cid-sud3xvcGgA .mbr-section-subtitle {
  color: #951d19;
}
.cid-sud3xvcGgA .mbr-section-title,
.cid-sud3xvcGgA .mbr-section-btn {
  color: #b99808;
}
.cid-sud3xvcGgA P {
  color: #232323;
}
.cid-sud3JeUiMQ {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3JeUiMQ .image-block {
  margin: auto;
}
.cid-sud3JeUiMQ figcaption {
  position: relative;
}
.cid-sud3JeUiMQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3JeUiMQ .image-block {
    width: 100% !important;
  }
}
.cid-sud3y4KLFb {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3y4KLFb .media-content .btn-bgr {
  z-index: 0;
}
.cid-sud3y4KLFb .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sud3y4KLFb h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sud3y4KLFb p {
  color: #464646;
}
.cid-sud3y4KLFb h2 {
  color: #000000;
}
.cid-sud3y4KLFb .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sud3y4KLFb .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud3y4KLFb .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sud3y4KLFb .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sud3y4KLFb .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sud3y4KLFb .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sud3y4KLFb .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sud3y4KLFb .mbr-text {
    text-align: center;
  }
}
.cid-sud3y4KLFb .mbr-section-subtitle {
  color: #951d19;
}
.cid-sud3y4KLFb .mbr-section-title,
.cid-sud3y4KLFb .mbr-section-btn {
  color: #b99808;
}
.cid-sud3y4KLFb P {
  color: #232323;
}
.cid-sud3JMMkdc {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3JMMkdc .image-block {
  margin: auto;
}
.cid-sud3JMMkdc figcaption {
  position: relative;
}
.cid-sud3JMMkdc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3JMMkdc .image-block {
    width: 100% !important;
  }
}
.cid-sud3yD5t2y {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3yD5t2y .media-content .btn-bgr {
  z-index: 0;
}
.cid-sud3yD5t2y .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sud3yD5t2y h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sud3yD5t2y p {
  color: #464646;
}
.cid-sud3yD5t2y h2 {
  color: #000000;
}
.cid-sud3yD5t2y .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sud3yD5t2y .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud3yD5t2y .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sud3yD5t2y .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sud3yD5t2y .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sud3yD5t2y .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sud3yD5t2y .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sud3yD5t2y .mbr-text {
    text-align: center;
  }
}
.cid-sud3yD5t2y .mbr-section-subtitle {
  color: #951d19;
}
.cid-sud3yD5t2y .mbr-section-title,
.cid-sud3yD5t2y .mbr-section-btn {
  color: #b99808;
}
.cid-sud3yD5t2y P {
  color: #232323;
}
.cid-sud3KjA0Bl {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3KjA0Bl .image-block {
  margin: auto;
}
.cid-sud3KjA0Bl figcaption {
  position: relative;
}
.cid-sud3KjA0Bl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3KjA0Bl .image-block {
    width: 100% !important;
  }
}
.cid-sud3ze99QR {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sud3ze99QR .media-content .btn-bgr {
  z-index: 0;
}
.cid-sud3ze99QR .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sud3ze99QR h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sud3ze99QR p {
  color: #464646;
}
.cid-sud3ze99QR h2 {
  color: #000000;
}
.cid-sud3ze99QR .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sud3ze99QR .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud3ze99QR .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sud3ze99QR .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sud3ze99QR .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sud3ze99QR .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sud3ze99QR .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sud3ze99QR .mbr-text {
    text-align: center;
  }
}
.cid-sud3ze99QR .mbr-section-subtitle {
  color: #951d19;
}
.cid-sud3ze99QR .mbr-section-title,
.cid-sud3ze99QR .mbr-section-btn {
  color: #b99808;
}
.cid-sud3ze99QR P {
  color: #232323;
}
.cid-sud3L4tnYx {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sud3L4tnYx .image-block {
  margin: auto;
}
.cid-sud3L4tnYx figcaption {
  position: relative;
}
.cid-sud3L4tnYx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sud3L4tnYx .image-block {
    width: 100% !important;
  }
}
.cid-sucYEP4VPt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sucYEP4VPt .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sucYEP4VPt .section-text {
  padding: 1rem 0;
  text-align: right;
}
.cid-sucYEP4VPt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sucYEP4VPt .inner-container {
    width: 100% !important;
  }
}
.cid-sucYEP4VPt aus {
  font-size: 22px;
  color: #e17c00;
}
.cid-sucYEP4VPt seit {
  font-size: 13px;
  color: #A5B5A7;
}
.cid-sucYEPge6p {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sucYEPge6p .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucYEPge6p .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-sucYEPge6p .media-wrap img {
  height: 6rem;
}
.cid-sucYEPge6p .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sucYEPge6p .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sucYEPge6p .footer-lower hr {
  margin: 1rem 0;
  border-color: #556C80;
  opacity: 0.6;
}
.cid-sucYEPge6p .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sucYEPge6p .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sucYEPge6p .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sucYEPge6p .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sucYEPge6p .footer-lower .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sucYEPge6p .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sucYEPge6p .links {
  color: #232323;
}
.cid-sucYEPge6p .copyright > p {
  color: #465052;
}
.cid-sucYEPIbHq {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-sucYEPIbHq .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-sucYEPIbHq .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sucYEPIbHq .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-sucYEPIbHq .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-sucYEPIbHq .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #444d4f;
  color: #132c70;
  background: #5b686b !important;
}
.cid-sucYEPIbHq .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sucYEPIbHq .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sucYEPIbHq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sucYEPIbHq .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-sucYEPIbHq .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #149dcc;
}
.cid-sucYEPIbHq .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sucYEPIbHq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sucYEPIbHq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-sucYEPIbHq .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sucYEPIbHq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sucYEPIbHq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sucYEPIbHq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sucYEPIbHq .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sucYEPIbHq .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-sucYEPIbHq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sucYEPIbHq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sucYEPIbHq .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sucYEPIbHq .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-sucYEPIbHq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sucYEPIbHq .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sucYEPIbHq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sucYEPIbHq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sucYEPIbHq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sucYEPIbHq .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sucYEPIbHq .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-sucYEPIbHq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sucYEPIbHq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-sucYEPIbHq .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sucYEPIbHq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-sucYEPIbHq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sucYEPIbHq .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-sucYEPIbHq .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-sucYEPIbHq .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-sucYEPIbHq .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-sucYEPIbHq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sucYEPIbHq .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-sucYEPIbHq .navbar-brand {
  height: 8rem;
  min-height: 1.2rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-sucYEPIbHq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sucYEPIbHq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sucYEPIbHq .dropdown-item.active,
.cid-sucYEPIbHq .dropdown-item:active {
  background-color: transparent;
}
.cid-sucYEPIbHq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-sucYEPIbHq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sucYEPIbHq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sucYEPIbHq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sucYEPIbHq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sucYEPIbHq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sucYEPIbHq ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sucYEPIbHq .navbar-buttons {
  text-align: center;
}
.cid-sucYEPIbHq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sucYEPIbHq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sucYEPIbHq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sucYEPIbHq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sucYEPIbHq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sucYEPIbHq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sucYEPIbHq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sucYEPIbHq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-sucYEPIbHq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-sucYEPIbHq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sucYEPIbHq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-sucYEPIbHq .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-sucYEPIbHq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sucYEPIbHq .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-sucYEPIbHq .nav-link:hover,
.cid-sucYEPIbHq .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sucYEPIbHq .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-sucYEPIbHq .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-sucYEPIbHq .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
