body {
  font-family: Raleway-Regular;
}
.display-1 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 3.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-2 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 2.25rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.6rem;
}
.display-4 {
  font-family: 'Questrial', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-6 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 1.5rem;
  font-display: swap;
}
.display-6 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Comfortaa-VariableFont_wght';
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-11 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 1.25rem;
  line-height: 1.4;
}
.display-11 > .mbr-iconfont {
  font-size: 2rem;
}
.display-12 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 1rem;
  line-height: 1.4;
}
.display-12 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-13 {
  font-family: 'FiraSansCondensed-Light';
  font-size: 1.25rem;
  line-height: 1.4;
}
.display-13 > .mbr-iconfont {
  font-size: 2rem;
}
.display-14 {
  font-family: 'FiraSansExtraCondensed-Regular';
  font-size: 0.85rem;
  line-height: 1.4;
}
.display-14 > .mbr-iconfont {
  font-size: 1.36rem;
}
/* ---- 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #23434b !important;
}
.bg-info {
  background-color: #e15a00 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #6e4506 !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: #dfad10 !important;
  border-color: #dfad10 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #98760b !important;
  border-color: #98760b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #98760b !important;
  border-color: #98760b !important;
}
.btn-info,
.btn-info:active {
  background-color: #e15a00 !important;
  border-color: #e15a00 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #943b00 !important;
  border-color: #943b00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #943b00 !important;
  border-color: #943b00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #23434b !important;
  border-color: #23434b !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0b1417 !important;
  border-color: #0b1417 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0b1417 !important;
  border-color: #0b1417 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #6e4506 !important;
  border-color: #6e4506 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #251702 !important;
  border-color: #251702 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #251702 !important;
  border-color: #251702 !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: #806309;
  color: #806309;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #dfad10;
  border-color: #dfad10;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #dfad10 !important;
  border-color: #dfad10 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #7b3100;
  color: #7b3100;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #e15a00;
  border-color: #e15a00;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e15a00 !important;
  border-color: #e15a00 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #030505;
  color: #030505;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #23434b;
  border-color: #23434b;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #23434b !important;
  border-color: #23434b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #0d0801;
  color: #0d0801;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #6e4506 !important;
  border-color: #6e4506 !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: #dfad10 !important;
}
.text-success {
  color: #23434b !important;
}
.text-info {
  color: #e15a00 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #6e4506 !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: #806309 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #030505 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #7b3100 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #0d0801 !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: #e15a00;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #6e4506;
}
.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: #8bbcc9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffceae;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e7910d;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa-VariableFont_wght';
  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: #000000 !important;
  background: #dfad10 !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-uh73cAKzZ5 {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-uh73cAKzZ5 .nav-item,
.cid-uh73cAKzZ5 .nav-link,
.cid-uh73cAKzZ5 .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uh73cAKzZ5 .nav-item:hover,
.cid-uh73cAKzZ5 .nav-link:hover,
.cid-uh73cAKzZ5 .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-uh73cAKzZ5 .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-uh73cAKzZ5 .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-uh73cAKzZ5 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-uh73cAKzZ5 .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uh73cAKzZ5 .container-fluid,
.cid-uh73cAKzZ5 .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-uh73cAKzZ5 .navbar-brand {
  padding: 0;
}
.cid-uh73cAKzZ5 .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-uh73cAKzZ5 .nav-link:hover:before {
  width: 100%;
}
.cid-uh73cAKzZ5 .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-uh73cAKzZ5 .nav-link {
    margin: 0 !important;
  }
}
.cid-uh73cAKzZ5 .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uh73cAKzZ5 .widget p,
.cid-uh73cAKzZ5 .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-uh73cAKzZ5 .widget p a,
.cid-uh73cAKzZ5 .widget .icons-menu a {
  margin-left: 15px;
}
.cid-uh73cAKzZ5 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-uh73cAKzZ5 .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-uh73cAKzZ5 .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uh73cAKzZ5 .block__phone,
  .cid-uh73cAKzZ5 .icons-menu {
    display: none;
  }
  .cid-uh73cAKzZ5 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-uh73cAKzZ5 .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-uh73cAKzZ5 .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-uh73cAKzZ5 .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-uh73cAKzZ5 .navbar > .container,
.cid-uh73cAKzZ5 .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uh73cAKzZ5 .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-uh73cAKzZ5 .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-uh73cAKzZ5 .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-uh73cAKzZ5 .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-uh73cAKzZ5 .dropdown-toggle::after,
  .cid-uh73cAKzZ5 .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-uh73cAKzZ5 .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-uh73cAKzZ5 .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-uh73cAKzZ5 .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-uh73cAKzZ5 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-uh73cAKzZ5 .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-uh73cAKzZ5 .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-uh73cAKzZ5 .nav-item:focus,
.cid-uh73cAKzZ5 .nav-link:focus {
  outline: none;
}
.cid-uh73cAKzZ5 .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-uh73cAKzZ5 .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uh73cAKzZ5 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-uh73cAKzZ5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uh73cAKzZ5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uh73cAKzZ5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uh73cAKzZ5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-uh73cAKzZ5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uh73cAKzZ5 .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-uh73cAKzZ5 .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-uh73cAKzZ5 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-uh73cAKzZ5 .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-uh73cAKzZ5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uh73cAKzZ5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uh73cAKzZ5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-uh73cAKzZ5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uh73cAKzZ5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uh73cAKzZ5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uh73cAKzZ5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uh73cAKzZ5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uh73cAKzZ5 .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-uh73cAKzZ5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uh73cAKzZ5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uh73cAKzZ5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-uh73cAKzZ5 .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-uh73cAKzZ5 .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-uh73cAKzZ5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uh73cAKzZ5 .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-uh73cAKzZ5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-uh73cAKzZ5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uh73cAKzZ5 .dropdown-item.active,
.cid-uh73cAKzZ5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uh73cAKzZ5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uh73cAKzZ5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-uh73cAKzZ5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uh73cAKzZ5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-uh73cAKzZ5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uh73cAKzZ5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uh73cAKzZ5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uh73cAKzZ5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uh73cAKzZ5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uh73cAKzZ5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uh73cAKzZ5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uh73cAKzZ5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uh73cAKzZ5 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-uh73cAKzZ5 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-uh73cAKzZ5 a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-uh73cAKzZ5 .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-uh73cAKzZ5 .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-uh73cAKzZ5 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-uh73cAKzZ5 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-uh73cAKzZ5 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-uh73cAKzZ5 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-uh73cAKzZ5 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-uh73cAKzZ5 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-uh73cAKzZ5 .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-uh73cAKzZ5 .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-uh73cAKzZ5 a.nav-link {
    justify-content: flex-start;
  }
  .cid-uh73cAKzZ5 ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-uh73cAKzZ5 .navbar-brand {
    padding: 0;
  }
  .cid-uh73cAKzZ5 .block__phone,
  .cid-uh73cAKzZ5 .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-uh73cAKzZ5 .widget {
    flex-direction: column;
  }
  .cid-uh73cAKzZ5 .widget p,
  .cid-uh73cAKzZ5 .widget .icons-menu {
    margin-right: 0;
  }
  .cid-uh73cAKzZ5 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-uh73cAKzZ5 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uh73cAKzZ5 .navbar {
    height: 97px;
  }
  .cid-uh73cAKzZ5 .navbar.opened {
    height: auto;
  }
  .cid-uh73cAKzZ5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uh6Rbux2G6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uh6Rbux2G6 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-uh6Rbux2G6 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uh6Rbux2G6 .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-uh6Rbux2G6 .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-uh6Rbux2G6 .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us71TcbqFK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-us71TcbqFK .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-us71TcbqFK .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-us71TcbqFK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us71TcbqFK .inner-container {
    width: 100% !important;
  }
}
.cid-urRkiWOBJE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urRkiWOBJE .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRkiWOBJE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-urRkiWOBJE .card {
    padding: 0;
  }
  .cid-urRkiWOBJE .container-fluid {
    padding: 0 16px;
  }
}
.cid-urRkiWOBJE .card:first-child {
  background-color: #00777c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-urRkiWOBJE .card:first-child .title-wrapper {
  padding: 84px 0;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-urRkiWOBJE .card:first-child .title-wrapper {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .cid-urRkiWOBJE .card:first-child .title-wrapper {
    padding: 56px 0;
    width: 90%;
  }
}
.cid-urRkiWOBJE .card:first-child .title-wrapper .mbr-section-subtitle {
  margin: 10px 0 0 0;
}
.cid-urRkiWOBJE .card:first-child .title-wrapper .mbr-section-title {
  margin: 32px 0;
}
.cid-urRkiWOBJE .card:first-child .title-wrapper .mbr-section-btn {
  margin: 14px 0;
}
@media (max-width: 768px) {
  .cid-urRkiWOBJE .card:first-child .title-wrapper .mbr-section-btn {
    margin: 10px 0;
  }
}
@media (max-width: 992px) {
  .cid-urRkiWOBJE .card:last-child {
    padding: 0;
  }
}
.cid-urRkiWOBJE .card:last-child .image-wrapper {
  height: 100%;
}
.cid-urRkiWOBJE .card:last-child .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-urRkiWOBJE .mbr-section-title {
  color: #ffe4c1;
}
.cid-urRkiWOBJE .mbr-section-subtitle {
  color: #ffe4c1;
  text-align: left;
}
.cid-urRkiWOBJE .mbr-section-title,
.cid-urRkiWOBJE .mbr-section-btn {
  text-align: left;
}
.cid-urRkiWOBJE klein {
  font-size: 20px;
}
.cid-urVLwkYPlo {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urVLwkYPlo .mbr-fallback-image.disabled {
  display: none;
}
.cid-urVLwkYPlo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urVLwkYPlo .row {
  position: relative;
  z-index: 2;
}
.cid-urVLwkYPlo .image-wrapper {
  padding-right: 76px;
  padding-top: 6px;
}
@media (max-width: 992px) {
  .cid-urVLwkYPlo .image-wrapper {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 46px;
  }
}
.cid-urVLwkYPlo .image-wrapper .image-wrap {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-urVLwkYPlo .image-wrapper .image-wrap {
    padding-right: 0;
  }
}
.cid-urVLwkYPlo .image-wrapper .image-wrap img {
  height: 550px;
  object-fit: cover;
  padding-right: 0;
  padding-left: 4rem;
  border-top: 1px solid #dedede;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  padding: 0.5em;
}
@media (max-width: 992px) {
  .cid-urVLwkYPlo .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-urVLwkYPlo .image-wrapper .desc-wrap {
  position: relative;
  padding: 46px 32px;
  background-color: #465052;
  margin-left: 16px;
  margin-top: -7rem;
  width: 540px;
  opacity: 0.89;
}
@media (max-width: 992px) {
  .cid-urVLwkYPlo .image-wrapper .desc-wrap {
    margin-left: 0;
    padding: 32px 22px;
  }
}
.cid-urVLwkYPlo .image-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-urVLwkYPlo .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-urVLwkYPlo .content-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-urVLwkYPlo .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 100%;
  padding-top: 0em;
}
@media (max-width: 992px) {
  .cid-urVLwkYPlo .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urVLwkYPlo .mbr-section-title {
  color: #212529;
}
.cid-urVLwkYPlo .mbr-text {
  color: #51565c;
  padding-top: 10em;
}
.cid-urVLwkYPlo .mbr-desc {
  color: #efefef;
  text-align: left;
}
.cid-urVKkxLfQH {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urVKkxLfQH .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-urVKkxLfQH .mbr-section-btn {
  margin-top: 30px;
}
.cid-urVKkxLfQH .block__left,
.cid-urVKkxLfQH .block__right {
  padding: 80px;
  height: 100%;
}
@media (max-width: 575px) {
  .cid-urVKkxLfQH .block__left,
  .cid-urVKkxLfQH .block__right {
    padding: 30px;
  }
}
.cid-urVKkxLfQH .title__block {
  position: relative;
  z-index: 2;
}
.cid-urVKkxLfQH .left__image {
  background-image: url("../../../assets/images/conference21.jpg");
}
.cid-urVKkxLfQH .block__left > .mbr-overlay {
  background-color: #191f23;
  opacity: 0.5;
  z-index: 1;
}
.cid-urVKkxLfQH .block__right > .mbr-overlay {
  background-color: #00777c;
  opacity: 0.8;
  z-index: 1;
}
.cid-urVKkxLfQH .right__image {
  background-image: url("../../../assets/images/conference22.jpg");
}
.cid-urVKkxLfQH .left__image,
.cid-urVKkxLfQH .right__image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 991px) {
  .cid-urVKkxLfQH .container,
  .cid-urVKkxLfQH .container-fluid,
  .cid-urVKkxLfQH .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
  .cid-urVKkxLfQH .wrap_left,
  .cid-urVKkxLfQH .wrap_right {
    padding: 0;
  }
}
.cid-urVKkxLfQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-urVKkxLfQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urRre4Mj7k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-urRre4Mj7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRre4Mj7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urRre4Mj7k .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-urRre4Mj7k .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-urRre4Mj7k .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-urRre4Mj7k .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-urRre4Mj7k .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-urRre4Mj7k .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-urRre4Mj7k .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-urRre4Mj7k .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-urRre4Mj7k .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-urRre4Mj7k .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-urRre4Mj7k .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-urRre4Mj7k .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-urRre4Mj7k .items-wrapper .card {
  padding: 0 32px;
}
.cid-urRre4Mj7k .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-urRre4Mj7k .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-urRre4Mj7k .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-urRre4Mj7k .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-urRre4Mj7k .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-urRre4Mj7k .list-wrapper .list .item-wrap:hover,
.cid-urRre4Mj7k .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-urRre4Mj7k .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-urRre4Mj7k .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-urRre4Mj7k .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-urRre4Mj7k .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-urRre4Mj7k .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-urRre4Mj7k .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-urRre4Mj7k .mbr-desc {
  color: #55b4d4;
}
.cid-urRre4Mj7k .mbr-text,
.cid-urRre4Mj7k .text-wrapper {
  color: #9aa0a6;
}
.cid-urRre4Mj7k .list {
  color: #9aa0a6;
}
.cid-urRre4Mj7k .mbr-text,
.cid-urRre4Mj7k .mbr-section-btn {
  color: #b2ccd2;
}
.cid-urRre4Mj7k .list,
.cid-urRre4Mj7k .item-wrap {
  color: #b2ccd2;
}
.cid-urRre4Mj7k weis {
  color: #ffffff;
}
.cid-urRre4Mj7k klein {
  font-size: 12px;
}
.cid-urRre4Mj7k blau {
  color: #78C0FF;
}
.cid-urRre4Mj7k hell {
  color: #f4f4f4;
}
.cid-urRre4Mj7k .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-urRre4Mj7k .mbr-desc,
.cid-urRre4Mj7k .content-wrapper {
  color: #cc2952;
}
.cid-us8KZMh5Tn #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8KZMh5Tn #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8KZMh5Tn #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8KZMh5Tn .hidden {
  display: none;
}
.cid-us7czSaQ6g {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-us7czSaQ6g .nav-item,
.cid-us7czSaQ6g .nav-link,
.cid-us7czSaQ6g .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us7czSaQ6g .nav-item:hover,
.cid-us7czSaQ6g .nav-link:hover,
.cid-us7czSaQ6g .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-us7czSaQ6g .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-us7czSaQ6g .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-us7czSaQ6g .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-us7czSaQ6g .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-us7czSaQ6g .container-fluid,
.cid-us7czSaQ6g .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-us7czSaQ6g .navbar-brand {
  padding: 0;
}
.cid-us7czSaQ6g .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-us7czSaQ6g .nav-link:hover:before {
  width: 100%;
}
.cid-us7czSaQ6g .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-us7czSaQ6g .nav-link {
    margin: 0 !important;
  }
}
.cid-us7czSaQ6g .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us7czSaQ6g .widget p,
.cid-us7czSaQ6g .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-us7czSaQ6g .widget p a,
.cid-us7czSaQ6g .widget .icons-menu a {
  margin-left: 15px;
}
.cid-us7czSaQ6g .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-us7czSaQ6g .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-us7czSaQ6g .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us7czSaQ6g .block__phone,
  .cid-us7czSaQ6g .icons-menu {
    display: none;
  }
  .cid-us7czSaQ6g .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-us7czSaQ6g .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-us7czSaQ6g .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-us7czSaQ6g .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-us7czSaQ6g .navbar > .container,
.cid-us7czSaQ6g .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-us7czSaQ6g .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-us7czSaQ6g .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-us7czSaQ6g .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-us7czSaQ6g .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-us7czSaQ6g .dropdown-toggle::after,
  .cid-us7czSaQ6g .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-us7czSaQ6g .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-us7czSaQ6g .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-us7czSaQ6g .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-us7czSaQ6g .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-us7czSaQ6g .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-us7czSaQ6g .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-us7czSaQ6g .nav-item:focus,
.cid-us7czSaQ6g .nav-link:focus {
  outline: none;
}
.cid-us7czSaQ6g .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-us7czSaQ6g .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-us7czSaQ6g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-us7czSaQ6g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-us7czSaQ6g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-us7czSaQ6g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-us7czSaQ6g .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-us7czSaQ6g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-us7czSaQ6g .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-us7czSaQ6g .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-us7czSaQ6g .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-us7czSaQ6g .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-us7czSaQ6g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-us7czSaQ6g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-us7czSaQ6g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-us7czSaQ6g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-us7czSaQ6g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-us7czSaQ6g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-us7czSaQ6g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-us7czSaQ6g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-us7czSaQ6g .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-us7czSaQ6g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-us7czSaQ6g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-us7czSaQ6g .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-us7czSaQ6g .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-us7czSaQ6g .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-us7czSaQ6g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-us7czSaQ6g .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-us7czSaQ6g .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-us7czSaQ6g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-us7czSaQ6g .dropdown-item.active,
.cid-us7czSaQ6g .dropdown-item:active {
  background-color: transparent;
}
.cid-us7czSaQ6g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-us7czSaQ6g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-us7czSaQ6g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-us7czSaQ6g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-us7czSaQ6g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-us7czSaQ6g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us7czSaQ6g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us7czSaQ6g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-us7czSaQ6g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us7czSaQ6g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-us7czSaQ6g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-us7czSaQ6g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us7czSaQ6g .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-us7czSaQ6g a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-us7czSaQ6g a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-us7czSaQ6g .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-us7czSaQ6g .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-us7czSaQ6g .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-us7czSaQ6g .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-us7czSaQ6g .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-us7czSaQ6g .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-us7czSaQ6g .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-us7czSaQ6g .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-us7czSaQ6g .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-us7czSaQ6g .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-us7czSaQ6g a.nav-link {
    justify-content: flex-start;
  }
  .cid-us7czSaQ6g ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-us7czSaQ6g .navbar-brand {
    padding: 0;
  }
  .cid-us7czSaQ6g .block__phone,
  .cid-us7czSaQ6g .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-us7czSaQ6g .widget {
    flex-direction: column;
  }
  .cid-us7czSaQ6g .widget p,
  .cid-us7czSaQ6g .widget .icons-menu {
    margin-right: 0;
  }
  .cid-us7czSaQ6g .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-us7czSaQ6g .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us7czSaQ6g .navbar {
    height: 97px;
  }
  .cid-us7czSaQ6g .navbar.opened {
    height: auto;
  }
  .cid-us7czSaQ6g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-us7czSA96d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-us7czSA96d .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-us7czSA96d .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-us7czSA96d .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-us7czSA96d .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-us7czSA96d .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us8Pe2n2Ym {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-us8Pe2n2Ym .card-box {
  padding: 0rem;
}
.cid-us8Pe2n2Ym .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-us8Pe2n2Ym .card {
  padding: 0;
  margin: auto;
}
.cid-us8Pe2n2Ym .card-img {
  height: 220px;
}
.cid-us8Pe2n2Ym .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-us8Pe2n2Ym .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-us8Pe2n2Ym .card-wrapper {
    padding: 4rem;
  }
}
.cid-us8Pe2n2Ym .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8Pe2n2Ym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8Pe2n2Ym .card-title {
  color: #ffffff;
}
.cid-us8Pe2n2Ym h4 {
  padding-top: 10px;
}
.cid-us7czSQLdK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-us7czSQLdK .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-us7czSQLdK .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-us7czSQLdK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us7czSQLdK .inner-container {
    width: 100% !important;
  }
}
.cid-us7k8p9jVj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us7k8p9jVj .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-us7k8p9jVj .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #0f7699;
}
.cid-us7k8p9jVj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us7k8p9jVj .inner-container {
    width: 100% !important;
  }
}
.cid-us7g4lb7z2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-us7g4lb7z2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-us7g4lb7z2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-us7g4lb7z2 .container {
    padding: 0 24px;
  }
}
.cid-us7g4lb7z2 .row {
  justify-content: space-between;
}
.cid-us7g4lb7z2 .nav.nav-tabs {
  position: relative;
  z-index: 1;
  display: block;
  border: none;
}
.cid-us7g4lb7z2 .nav.nav-tabs .nav-item {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-us7g4lb7z2 .nav.nav-tabs .nav-item {
    margin-bottom: 30px;
  }
}
.cid-us7g4lb7z2 .nav.nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  color: #141414;
  border-radius: 0 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  opacity: 0.25;
  padding: 0;
}
.cid-us7g4lb7z2 .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 0.93;
}
.cid-us7g4lb7z2 .tab-content {
  position: relative;
  z-index: 1;
  height: 100%;
}
.cid-us7g4lb7z2 .tab-content .tab-pane {
  height: 100%;
  width: 100%;
}
.cid-us7g4lb7z2 .tab-content .tab-pane .text-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-us7g4lb7z2 .tab-content .tab-pane .text-wrapper .mbr-text {
  width: 100%;
  position: sticky;
}
.cid-us7g4lb7z2 .mbr-text {
  color: #141414;
}
.cid-us7g4lb7z2 .abstandoben {
  padding-top: 2.25rem;
}
.cid-us7czTK7jI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-us7czTK7jI .mbr-fallback-image.disabled {
  display: none;
}
.cid-us7czTK7jI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us7czTK7jI .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-us7czTK7jI .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-us7czTK7jI .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us7czTK7jI .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-us7czTK7jI .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-us7czTK7jI .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-us7czTK7jI .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-us7czTK7jI .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-us7czTK7jI .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-us7czTK7jI .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-us7czTK7jI .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-us7czTK7jI .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-us7czTK7jI .items-wrapper .card {
  padding: 0 32px;
}
.cid-us7czTK7jI .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us7czTK7jI .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us7czTK7jI .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us7czTK7jI .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-us7czTK7jI .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-us7czTK7jI .list-wrapper .list .item-wrap:hover,
.cid-us7czTK7jI .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-us7czTK7jI .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-us7czTK7jI .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us7czTK7jI .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us7czTK7jI .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us7czTK7jI .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-us7czTK7jI .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-us7czTK7jI .mbr-desc {
  color: #55b4d4;
}
.cid-us7czTK7jI .mbr-text,
.cid-us7czTK7jI .text-wrapper {
  color: #9aa0a6;
}
.cid-us7czTK7jI .list {
  color: #9aa0a6;
}
.cid-us7czTK7jI .mbr-text,
.cid-us7czTK7jI .mbr-section-btn {
  color: #b2ccd2;
}
.cid-us7czTK7jI .list,
.cid-us7czTK7jI .item-wrap {
  color: #b2ccd2;
}
.cid-us7czTK7jI weis {
  color: #ffffff;
}
.cid-us7czTK7jI klein {
  font-size: 12px;
}
.cid-us7czTK7jI blau {
  color: #78C0FF;
}
.cid-us7czTK7jI hell {
  color: #f4f4f4;
}
.cid-us7czTK7jI .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-us7czTK7jI .mbr-desc,
.cid-us7czTK7jI .content-wrapper {
  color: #cc2952;
}
.cid-us8KZMh5Tn #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8KZMh5Tn #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8KZMh5Tn #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8KZMh5Tn .hidden {
  display: none;
}
.cid-us7loR4C2p {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-us7loR4C2p .nav-item,
.cid-us7loR4C2p .nav-link,
.cid-us7loR4C2p .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us7loR4C2p .nav-item:hover,
.cid-us7loR4C2p .nav-link:hover,
.cid-us7loR4C2p .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-us7loR4C2p .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-us7loR4C2p .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-us7loR4C2p .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-us7loR4C2p .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-us7loR4C2p .container-fluid,
.cid-us7loR4C2p .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-us7loR4C2p .navbar-brand {
  padding: 0;
}
.cid-us7loR4C2p .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-us7loR4C2p .nav-link:hover:before {
  width: 100%;
}
.cid-us7loR4C2p .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-us7loR4C2p .nav-link {
    margin: 0 !important;
  }
}
.cid-us7loR4C2p .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us7loR4C2p .widget p,
.cid-us7loR4C2p .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-us7loR4C2p .widget p a,
.cid-us7loR4C2p .widget .icons-menu a {
  margin-left: 15px;
}
.cid-us7loR4C2p .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-us7loR4C2p .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-us7loR4C2p .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us7loR4C2p .block__phone,
  .cid-us7loR4C2p .icons-menu {
    display: none;
  }
  .cid-us7loR4C2p .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-us7loR4C2p .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-us7loR4C2p .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-us7loR4C2p .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-us7loR4C2p .navbar > .container,
.cid-us7loR4C2p .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-us7loR4C2p .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-us7loR4C2p .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-us7loR4C2p .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-us7loR4C2p .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-us7loR4C2p .dropdown-toggle::after,
  .cid-us7loR4C2p .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-us7loR4C2p .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-us7loR4C2p .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-us7loR4C2p .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-us7loR4C2p .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-us7loR4C2p .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-us7loR4C2p .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-us7loR4C2p .nav-item:focus,
.cid-us7loR4C2p .nav-link:focus {
  outline: none;
}
.cid-us7loR4C2p .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-us7loR4C2p .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-us7loR4C2p .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-us7loR4C2p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-us7loR4C2p .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-us7loR4C2p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-us7loR4C2p .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-us7loR4C2p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-us7loR4C2p .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-us7loR4C2p .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-us7loR4C2p .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-us7loR4C2p .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-us7loR4C2p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-us7loR4C2p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-us7loR4C2p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-us7loR4C2p .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-us7loR4C2p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-us7loR4C2p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-us7loR4C2p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-us7loR4C2p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-us7loR4C2p .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-us7loR4C2p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-us7loR4C2p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-us7loR4C2p .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-us7loR4C2p .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-us7loR4C2p .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-us7loR4C2p .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-us7loR4C2p .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-us7loR4C2p .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-us7loR4C2p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-us7loR4C2p .dropdown-item.active,
.cid-us7loR4C2p .dropdown-item:active {
  background-color: transparent;
}
.cid-us7loR4C2p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-us7loR4C2p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-us7loR4C2p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-us7loR4C2p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-us7loR4C2p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-us7loR4C2p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us7loR4C2p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us7loR4C2p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-us7loR4C2p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us7loR4C2p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-us7loR4C2p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-us7loR4C2p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us7loR4C2p .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-us7loR4C2p a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-us7loR4C2p a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-us7loR4C2p .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-us7loR4C2p .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-us7loR4C2p .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-us7loR4C2p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-us7loR4C2p .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-us7loR4C2p .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-us7loR4C2p .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-us7loR4C2p .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-us7loR4C2p .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-us7loR4C2p .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-us7loR4C2p a.nav-link {
    justify-content: flex-start;
  }
  .cid-us7loR4C2p ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-us7loR4C2p .navbar-brand {
    padding: 0;
  }
  .cid-us7loR4C2p .block__phone,
  .cid-us7loR4C2p .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-us7loR4C2p .widget {
    flex-direction: column;
  }
  .cid-us7loR4C2p .widget p,
  .cid-us7loR4C2p .widget .icons-menu {
    margin-right: 0;
  }
  .cid-us7loR4C2p .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-us7loR4C2p .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us7loR4C2p .navbar {
    height: 97px;
  }
  .cid-us7loR4C2p .navbar.opened {
    height: auto;
  }
  .cid-us7loR4C2p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-us7loRExwU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-us7loRExwU .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-us7loRExwU .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-us7loRExwU .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-us7loRExwU .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-us7loRExwU .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us8Sa47kyb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-us8Sa47kyb .card-box {
  padding: 0rem;
}
.cid-us8Sa47kyb .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-us8Sa47kyb .card {
  padding: 0;
  margin: auto;
}
.cid-us8Sa47kyb .card-img {
  height: 220px;
}
.cid-us8Sa47kyb .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-us8Sa47kyb .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-us8Sa47kyb .card-wrapper {
    padding: 4rem;
  }
}
.cid-us8Sa47kyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8Sa47kyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8Sa47kyb .card-title {
  color: #ffffff;
}
.cid-us7loS3E60 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-us7loS3E60 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-us7loS3E60 .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-us7loS3E60 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us7loS3E60 .inner-container {
    width: 100% !important;
  }
}
.cid-us7loSp1l7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us7loSp1l7 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-us7loSp1l7 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #0082c3;
}
.cid-us7loSp1l7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us7loSp1l7 .inner-container {
    width: 100% !important;
  }
}
.cid-us7loSG94z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-us7loSG94z .mbr-fallback-image.disabled {
  display: none;
}
.cid-us7loSG94z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-us7loSG94z .container {
    padding: 0 24px;
  }
}
.cid-us7loSG94z .row {
  justify-content: space-between;
}
.cid-us7loSG94z .nav.nav-tabs {
  position: relative;
  z-index: 1;
  display: block;
  border: none;
}
.cid-us7loSG94z .nav.nav-tabs .nav-item {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-us7loSG94z .nav.nav-tabs .nav-item {
    margin-bottom: 30px;
  }
}
.cid-us7loSG94z .nav.nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  color: #141414;
  border-radius: 0 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  opacity: 0.25;
  padding: 0;
}
.cid-us7loSG94z .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 0.93;
}
.cid-us7loSG94z .tab-content {
  position: relative;
  z-index: 1;
  height: 100%;
}
.cid-us7loSG94z .tab-content .tab-pane {
  height: 100%;
  width: 100%;
}
.cid-us7loSG94z .tab-content .tab-pane .text-wrapper {
  display: top;
  align-items: center;
  height: 100%;
}
.cid-us7loSG94z .tab-content .tab-pane .text-wrapper .mbr-text {
  width: 100%;
  position: sticky;
}
.cid-us7loSG94z .mbr-text {
  color: #141414;
}
.cid-us7loSG94z gru {
  color: #0da93e;
  font-size: 20px;
}
.cid-us7loSG94z hh1 {
  color: #0082c3;
  font-size: 32px;
}
.cid-us7loTcsAy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-us7loTcsAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-us7loTcsAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us7loTcsAy .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-us7loTcsAy .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-us7loTcsAy .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us7loTcsAy .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-us7loTcsAy .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-us7loTcsAy .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-us7loTcsAy .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-us7loTcsAy .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-us7loTcsAy .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-us7loTcsAy .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-us7loTcsAy .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-us7loTcsAy .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-us7loTcsAy .items-wrapper .card {
  padding: 0 32px;
}
.cid-us7loTcsAy .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us7loTcsAy .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us7loTcsAy .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us7loTcsAy .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-us7loTcsAy .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-us7loTcsAy .list-wrapper .list .item-wrap:hover,
.cid-us7loTcsAy .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-us7loTcsAy .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-us7loTcsAy .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us7loTcsAy .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us7loTcsAy .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us7loTcsAy .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-us7loTcsAy .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-us7loTcsAy .mbr-desc {
  color: #55b4d4;
}
.cid-us7loTcsAy .mbr-text,
.cid-us7loTcsAy .text-wrapper {
  color: #9aa0a6;
}
.cid-us7loTcsAy .list {
  color: #9aa0a6;
}
.cid-us7loTcsAy .mbr-text,
.cid-us7loTcsAy .mbr-section-btn {
  color: #b2ccd2;
}
.cid-us7loTcsAy .list,
.cid-us7loTcsAy .item-wrap {
  color: #b2ccd2;
}
.cid-us7loTcsAy weis {
  color: #ffffff;
}
.cid-us7loTcsAy klein {
  font-size: 12px;
}
.cid-us7loTcsAy blau {
  color: #78C0FF;
}
.cid-us7loTcsAy hell {
  color: #f4f4f4;
}
.cid-us7loTcsAy .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-us7loTcsAy .mbr-desc,
.cid-us7loTcsAy .content-wrapper {
  color: #cc2952;
}
.cid-us8KZMh5Tn #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8KZMh5Tn #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8KZMh5Tn #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8KZMh5Tn .hidden {
  display: none;
}
.cid-us7llOfmp7 {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-us7llOfmp7 .nav-item,
.cid-us7llOfmp7 .nav-link,
.cid-us7llOfmp7 .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us7llOfmp7 .nav-item:hover,
.cid-us7llOfmp7 .nav-link:hover,
.cid-us7llOfmp7 .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-us7llOfmp7 .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-us7llOfmp7 .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-us7llOfmp7 .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-us7llOfmp7 .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-us7llOfmp7 .container-fluid,
.cid-us7llOfmp7 .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-us7llOfmp7 .navbar-brand {
  padding: 0;
}
.cid-us7llOfmp7 .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-us7llOfmp7 .nav-link:hover:before {
  width: 100%;
}
.cid-us7llOfmp7 .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-us7llOfmp7 .nav-link {
    margin: 0 !important;
  }
}
.cid-us7llOfmp7 .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us7llOfmp7 .widget p,
.cid-us7llOfmp7 .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-us7llOfmp7 .widget p a,
.cid-us7llOfmp7 .widget .icons-menu a {
  margin-left: 15px;
}
.cid-us7llOfmp7 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-us7llOfmp7 .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-us7llOfmp7 .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us7llOfmp7 .block__phone,
  .cid-us7llOfmp7 .icons-menu {
    display: none;
  }
  .cid-us7llOfmp7 .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-us7llOfmp7 .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-us7llOfmp7 .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-us7llOfmp7 .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-us7llOfmp7 .navbar > .container,
.cid-us7llOfmp7 .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-us7llOfmp7 .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-us7llOfmp7 .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-us7llOfmp7 .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-us7llOfmp7 .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-us7llOfmp7 .dropdown-toggle::after,
  .cid-us7llOfmp7 .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-us7llOfmp7 .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-us7llOfmp7 .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-us7llOfmp7 .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-us7llOfmp7 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-us7llOfmp7 .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-us7llOfmp7 .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-us7llOfmp7 .nav-item:focus,
.cid-us7llOfmp7 .nav-link:focus {
  outline: none;
}
.cid-us7llOfmp7 .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-us7llOfmp7 .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-us7llOfmp7 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-us7llOfmp7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-us7llOfmp7 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-us7llOfmp7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-us7llOfmp7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-us7llOfmp7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-us7llOfmp7 .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-us7llOfmp7 .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-us7llOfmp7 .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-us7llOfmp7 .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-us7llOfmp7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-us7llOfmp7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-us7llOfmp7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-us7llOfmp7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-us7llOfmp7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-us7llOfmp7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-us7llOfmp7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-us7llOfmp7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-us7llOfmp7 .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-us7llOfmp7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-us7llOfmp7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-us7llOfmp7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-us7llOfmp7 .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-us7llOfmp7 .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-us7llOfmp7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-us7llOfmp7 .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-us7llOfmp7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-us7llOfmp7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-us7llOfmp7 .dropdown-item.active,
.cid-us7llOfmp7 .dropdown-item:active {
  background-color: transparent;
}
.cid-us7llOfmp7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-us7llOfmp7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-us7llOfmp7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-us7llOfmp7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-us7llOfmp7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-us7llOfmp7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us7llOfmp7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us7llOfmp7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-us7llOfmp7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us7llOfmp7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-us7llOfmp7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-us7llOfmp7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us7llOfmp7 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-us7llOfmp7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-us7llOfmp7 a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-us7llOfmp7 .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-us7llOfmp7 .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-us7llOfmp7 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-us7llOfmp7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-us7llOfmp7 .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-us7llOfmp7 .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-us7llOfmp7 .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-us7llOfmp7 .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-us7llOfmp7 .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-us7llOfmp7 .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-us7llOfmp7 a.nav-link {
    justify-content: flex-start;
  }
  .cid-us7llOfmp7 ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-us7llOfmp7 .navbar-brand {
    padding: 0;
  }
  .cid-us7llOfmp7 .block__phone,
  .cid-us7llOfmp7 .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-us7llOfmp7 .widget {
    flex-direction: column;
  }
  .cid-us7llOfmp7 .widget p,
  .cid-us7llOfmp7 .widget .icons-menu {
    margin-right: 0;
  }
  .cid-us7llOfmp7 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-us7llOfmp7 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us7llOfmp7 .navbar {
    height: 97px;
  }
  .cid-us7llOfmp7 .navbar.opened {
    height: auto;
  }
  .cid-us7llOfmp7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-us7llOU5iZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-us7llOU5iZ .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-us7llOU5iZ .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-us7llOU5iZ .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-us7llOU5iZ .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-us7llOU5iZ .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us8Sps6KUr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-us8Sps6KUr .card-box {
  padding: 0rem;
}
.cid-us8Sps6KUr .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-us8Sps6KUr .card {
  padding: 0;
  margin: auto;
}
.cid-us8Sps6KUr .card-img {
  height: 220px;
}
.cid-us8Sps6KUr .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-us8Sps6KUr .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-us8Sps6KUr .card-wrapper {
    padding: 4rem;
  }
}
.cid-us8Sps6KUr .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8Sps6KUr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8Sps6KUr .card-title {
  color: #ffffff;
}
.cid-us7llPcxjW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-us7llPcxjW .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-us7llPcxjW .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-us7llPcxjW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us7llPcxjW .inner-container {
    width: 100% !important;
  }
}
.cid-us8TknTUfZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-us8TknTUfZ .row {
  align-items: center;
  justify-content: space-between;
}
.cid-us8TknTUfZ .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-us8TknTUfZ .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-us8TknTUfZ .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-us8TknTUfZ ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-us8TknTUfZ li::marker {
  color: #fedb01;
  width: 10px;
}
.cid-us8TknTUfZ li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-us8TknTUfZ img {
  width: 90%;
  padding-right: 0;
  padding-left: 4rem;
  border-top: 1px solid #dedede;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  padding: 0.5em;
}
.cid-us8TknTUfZ .gray {
  background-color: #eff0f6;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-us8TknTUfZ .b {
  max-width: 598px;
}
.cid-us8TknTUfZ .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-us8TknTUfZ .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-us8TknTUfZ .t {
    padding-top: 90px;
  }
  .cid-us8TknTUfZ .b {
    max-width: initial;
  }
  .cid-us8TknTUfZ .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-us8TknTUfZ .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-us8TknTUfZ .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-us8TknTUfZ .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-us8TknTUfZ .btn {
  margin-top: 20px;
}
.cid-us8TknTUfZ .t {
  max-width: 542px;
}
.cid-us8TknTUfZ .mbr-text,
.cid-us8TknTUfZ .button-align,
.cid-us8TknTUfZ .list {
  color: #232323;
}
.cid-usczAvaqkZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-usczAvaqkZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.02px;
  margin: 0 auto;
}
.cid-usczAvaqkZ .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #0082c3;
}
.cid-usczAvaqkZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-usczAvaqkZ .inner-container {
    width: 100% !important;
  }
}
.cid-usczCujbG8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-usczCujbG8 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-usczCujbG8 .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-usczCujbG8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-usczCujbG8 .inner-container {
    width: 100% !important;
  }
}
.cid-uscyyEN7Wb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uscyyEN7Wb .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.02px;
  margin: 0 auto;
}
.cid-uscyyEN7Wb .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #0082c3;
}
.cid-uscyyEN7Wb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uscyyEN7Wb .inner-container {
    width: 100% !important;
  }
}
.cid-uscyL2gdJ1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uscyL2gdJ1 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-uscyL2gdJ1 .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-uscyL2gdJ1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uscyL2gdJ1 .inner-container {
    width: 100% !important;
  }
}
.cid-us7llQhKls {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-us7llQhKls .mbr-fallback-image.disabled {
  display: none;
}
.cid-us7llQhKls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us7llQhKls .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-us7llQhKls .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-us7llQhKls .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us7llQhKls .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-us7llQhKls .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-us7llQhKls .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-us7llQhKls .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-us7llQhKls .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-us7llQhKls .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-us7llQhKls .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-us7llQhKls .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-us7llQhKls .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-us7llQhKls .items-wrapper .card {
  padding: 0 32px;
}
.cid-us7llQhKls .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us7llQhKls .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us7llQhKls .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us7llQhKls .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-us7llQhKls .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-us7llQhKls .list-wrapper .list .item-wrap:hover,
.cid-us7llQhKls .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-us7llQhKls .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-us7llQhKls .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us7llQhKls .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us7llQhKls .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us7llQhKls .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-us7llQhKls .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-us7llQhKls .mbr-desc {
  color: #55b4d4;
}
.cid-us7llQhKls .mbr-text,
.cid-us7llQhKls .text-wrapper {
  color: #9aa0a6;
}
.cid-us7llQhKls .list {
  color: #9aa0a6;
}
.cid-us7llQhKls .mbr-text,
.cid-us7llQhKls .mbr-section-btn {
  color: #b2ccd2;
}
.cid-us7llQhKls .list,
.cid-us7llQhKls .item-wrap {
  color: #b2ccd2;
}
.cid-us7llQhKls weis {
  color: #ffffff;
}
.cid-us7llQhKls klein {
  font-size: 12px;
}
.cid-us7llQhKls blau {
  color: #78C0FF;
}
.cid-us7llQhKls hell {
  color: #f4f4f4;
}
.cid-us7llQhKls .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-us7llQhKls .mbr-desc,
.cid-us7llQhKls .content-wrapper {
  color: #cc2952;
}
.cid-us8KZMh5Tn #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8KZMh5Tn #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8KZMh5Tn #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8KZMh5Tn #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8KZMh5Tn .hidden {
  display: none;
}
.cid-us8XPi7eKP {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-us8XPi7eKP .nav-item,
.cid-us8XPi7eKP .nav-link,
.cid-us8XPi7eKP .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us8XPi7eKP .nav-item:hover,
.cid-us8XPi7eKP .nav-link:hover,
.cid-us8XPi7eKP .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-us8XPi7eKP .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-us8XPi7eKP .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-us8XPi7eKP .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-us8XPi7eKP .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-us8XPi7eKP .container-fluid,
.cid-us8XPi7eKP .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-us8XPi7eKP .navbar-brand {
  padding: 0;
}
.cid-us8XPi7eKP .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-us8XPi7eKP .nav-link:hover:before {
  width: 100%;
}
.cid-us8XPi7eKP .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-us8XPi7eKP .nav-link {
    margin: 0 !important;
  }
}
.cid-us8XPi7eKP .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us8XPi7eKP .widget p,
.cid-us8XPi7eKP .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-us8XPi7eKP .widget p a,
.cid-us8XPi7eKP .widget .icons-menu a {
  margin-left: 15px;
}
.cid-us8XPi7eKP .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-us8XPi7eKP .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-us8XPi7eKP .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us8XPi7eKP .block__phone,
  .cid-us8XPi7eKP .icons-menu {
    display: none;
  }
  .cid-us8XPi7eKP .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-us8XPi7eKP .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-us8XPi7eKP .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-us8XPi7eKP .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-us8XPi7eKP .navbar > .container,
.cid-us8XPi7eKP .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-us8XPi7eKP .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-us8XPi7eKP .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-us8XPi7eKP .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-us8XPi7eKP .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-us8XPi7eKP .dropdown-toggle::after,
  .cid-us8XPi7eKP .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-us8XPi7eKP .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-us8XPi7eKP .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-us8XPi7eKP .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-us8XPi7eKP .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-us8XPi7eKP .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-us8XPi7eKP .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-us8XPi7eKP .nav-item:focus,
.cid-us8XPi7eKP .nav-link:focus {
  outline: none;
}
.cid-us8XPi7eKP .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-us8XPi7eKP .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-us8XPi7eKP .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-us8XPi7eKP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-us8XPi7eKP .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-us8XPi7eKP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-us8XPi7eKP .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-us8XPi7eKP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-us8XPi7eKP .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-us8XPi7eKP .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-us8XPi7eKP .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-us8XPi7eKP .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-us8XPi7eKP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-us8XPi7eKP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-us8XPi7eKP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-us8XPi7eKP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-us8XPi7eKP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-us8XPi7eKP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-us8XPi7eKP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-us8XPi7eKP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-us8XPi7eKP .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-us8XPi7eKP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-us8XPi7eKP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-us8XPi7eKP .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-us8XPi7eKP .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-us8XPi7eKP .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-us8XPi7eKP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-us8XPi7eKP .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-us8XPi7eKP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-us8XPi7eKP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-us8XPi7eKP .dropdown-item.active,
.cid-us8XPi7eKP .dropdown-item:active {
  background-color: transparent;
}
.cid-us8XPi7eKP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-us8XPi7eKP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-us8XPi7eKP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-us8XPi7eKP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-us8XPi7eKP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-us8XPi7eKP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us8XPi7eKP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us8XPi7eKP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-us8XPi7eKP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us8XPi7eKP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-us8XPi7eKP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-us8XPi7eKP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us8XPi7eKP .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-us8XPi7eKP a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-us8XPi7eKP a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-us8XPi7eKP .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-us8XPi7eKP .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-us8XPi7eKP .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-us8XPi7eKP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-us8XPi7eKP .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-us8XPi7eKP .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-us8XPi7eKP .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-us8XPi7eKP .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-us8XPi7eKP .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-us8XPi7eKP .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-us8XPi7eKP a.nav-link {
    justify-content: flex-start;
  }
  .cid-us8XPi7eKP ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-us8XPi7eKP .navbar-brand {
    padding: 0;
  }
  .cid-us8XPi7eKP .block__phone,
  .cid-us8XPi7eKP .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-us8XPi7eKP .widget {
    flex-direction: column;
  }
  .cid-us8XPi7eKP .widget p,
  .cid-us8XPi7eKP .widget .icons-menu {
    margin-right: 0;
  }
  .cid-us8XPi7eKP .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-us8XPi7eKP .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us8XPi7eKP .navbar {
    height: 97px;
  }
  .cid-us8XPi7eKP .navbar.opened {
    height: auto;
  }
  .cid-us8XPi7eKP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-us8XPhEaKU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-us8XPhEaKU .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-us8XPhEaKU .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-us8XPhEaKU .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-us8XPhEaKU .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-us8XPhEaKU .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us8XPiG7u3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-us8XPiG7u3 .card-box {
  padding: 0rem;
}
.cid-us8XPiG7u3 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-us8XPiG7u3 .card {
  padding: 0;
  margin: auto;
}
.cid-us8XPiG7u3 .card-img {
  height: 220px;
}
.cid-us8XPiG7u3 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-us8XPiG7u3 .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-us8XPiG7u3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-us8XPiG7u3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8XPiG7u3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XPiG7u3 .card-title {
  color: #ffffff;
}
.cid-uR89vqjVay {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uR89vqjVay .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-uR89vqjVay .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-uR89vqjVay .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uR89vqjVay .inner-container {
    width: 100% !important;
  }
}
.cid-us8XPjm42s {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8XPjm42s .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-us8XPjm42s .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #0f7699;
}
.cid-us8XPjm42s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us8XPjm42s .inner-container {
    width: 100% !important;
  }
}
.cid-us93kNFyNl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-us93kNFyNl .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 0.px;
  margin: 0 auto;
}
.cid-us93kNFyNl .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-us93kNFyNl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us93kNFyNl .inner-container {
    width: 100% !important;
  }
}
.cid-us8XPk1xQq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-us8XPk1xQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8XPk1xQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XPk1xQq .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-us8XPk1xQq .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-us8XPk1xQq .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us8XPk1xQq .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-us8XPk1xQq .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-us8XPk1xQq .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-us8XPk1xQq .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-us8XPk1xQq .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-us8XPk1xQq .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-us8XPk1xQq .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-us8XPk1xQq .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-us8XPk1xQq .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-us8XPk1xQq .items-wrapper .card {
  padding: 0 32px;
}
.cid-us8XPk1xQq .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us8XPk1xQq .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us8XPk1xQq .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us8XPk1xQq .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-us8XPk1xQq .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-us8XPk1xQq .list-wrapper .list .item-wrap:hover,
.cid-us8XPk1xQq .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-us8XPk1xQq .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-us8XPk1xQq .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us8XPk1xQq .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us8XPk1xQq .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us8XPk1xQq .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-us8XPk1xQq .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-us8XPk1xQq .mbr-desc {
  color: #55b4d4;
}
.cid-us8XPk1xQq .mbr-text,
.cid-us8XPk1xQq .text-wrapper {
  color: #9aa0a6;
}
.cid-us8XPk1xQq .list {
  color: #9aa0a6;
}
.cid-us8XPk1xQq .mbr-text,
.cid-us8XPk1xQq .mbr-section-btn {
  color: #b2ccd2;
}
.cid-us8XPk1xQq .list,
.cid-us8XPk1xQq .item-wrap {
  color: #b2ccd2;
}
.cid-us8XPk1xQq weis {
  color: #ffffff;
}
.cid-us8XPk1xQq klein {
  font-size: 12px;
}
.cid-us8XPk1xQq blau {
  color: #78C0FF;
}
.cid-us8XPk1xQq hell {
  color: #f4f4f4;
}
.cid-us8XPk1xQq .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-us8XPk1xQq .mbr-desc,
.cid-us8XPk1xQq .content-wrapper {
  color: #cc2952;
}
.cid-us8XPkwWZ4 #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8XPkwWZ4 #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8XPkwWZ4 #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8XPkwWZ4 #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8XPkwWZ4 #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8XPkwWZ4 #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8XPkwWZ4 .hidden {
  display: none;
}
.cid-us8XQIvW0O {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-us8XQIvW0O .nav-item,
.cid-us8XQIvW0O .nav-link,
.cid-us8XQIvW0O .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us8XQIvW0O .nav-item:hover,
.cid-us8XQIvW0O .nav-link:hover,
.cid-us8XQIvW0O .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-us8XQIvW0O .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-us8XQIvW0O .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-us8XQIvW0O .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-us8XQIvW0O .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-us8XQIvW0O .container-fluid,
.cid-us8XQIvW0O .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-us8XQIvW0O .navbar-brand {
  padding: 0;
}
.cid-us8XQIvW0O .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-us8XQIvW0O .nav-link:hover:before {
  width: 100%;
}
.cid-us8XQIvW0O .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-us8XQIvW0O .nav-link {
    margin: 0 !important;
  }
}
.cid-us8XQIvW0O .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us8XQIvW0O .widget p,
.cid-us8XQIvW0O .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-us8XQIvW0O .widget p a,
.cid-us8XQIvW0O .widget .icons-menu a {
  margin-left: 15px;
}
.cid-us8XQIvW0O .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-us8XQIvW0O .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-us8XQIvW0O .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us8XQIvW0O .block__phone,
  .cid-us8XQIvW0O .icons-menu {
    display: none;
  }
  .cid-us8XQIvW0O .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-us8XQIvW0O .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-us8XQIvW0O .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-us8XQIvW0O .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-us8XQIvW0O .navbar > .container,
.cid-us8XQIvW0O .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-us8XQIvW0O .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-us8XQIvW0O .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-us8XQIvW0O .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-us8XQIvW0O .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-us8XQIvW0O .dropdown-toggle::after,
  .cid-us8XQIvW0O .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-us8XQIvW0O .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-us8XQIvW0O .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-us8XQIvW0O .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-us8XQIvW0O .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-us8XQIvW0O .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-us8XQIvW0O .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-us8XQIvW0O .nav-item:focus,
.cid-us8XQIvW0O .nav-link:focus {
  outline: none;
}
.cid-us8XQIvW0O .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-us8XQIvW0O .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-us8XQIvW0O .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-us8XQIvW0O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-us8XQIvW0O .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-us8XQIvW0O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-us8XQIvW0O .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-us8XQIvW0O ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-us8XQIvW0O .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-us8XQIvW0O .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-us8XQIvW0O .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-us8XQIvW0O .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-us8XQIvW0O .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-us8XQIvW0O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-us8XQIvW0O .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-us8XQIvW0O .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-us8XQIvW0O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-us8XQIvW0O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-us8XQIvW0O .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-us8XQIvW0O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-us8XQIvW0O .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-us8XQIvW0O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-us8XQIvW0O .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-us8XQIvW0O .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-us8XQIvW0O .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-us8XQIvW0O .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-us8XQIvW0O .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-us8XQIvW0O .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-us8XQIvW0O .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-us8XQIvW0O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-us8XQIvW0O .dropdown-item.active,
.cid-us8XQIvW0O .dropdown-item:active {
  background-color: transparent;
}
.cid-us8XQIvW0O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-us8XQIvW0O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-us8XQIvW0O button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-us8XQIvW0O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-us8XQIvW0O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-us8XQIvW0O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us8XQIvW0O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us8XQIvW0O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-us8XQIvW0O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us8XQIvW0O nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-us8XQIvW0O nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-us8XQIvW0O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us8XQIvW0O .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-us8XQIvW0O a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-us8XQIvW0O a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-us8XQIvW0O .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-us8XQIvW0O .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-us8XQIvW0O .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-us8XQIvW0O .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-us8XQIvW0O .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-us8XQIvW0O .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-us8XQIvW0O .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-us8XQIvW0O .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-us8XQIvW0O .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-us8XQIvW0O .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-us8XQIvW0O a.nav-link {
    justify-content: flex-start;
  }
  .cid-us8XQIvW0O ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-us8XQIvW0O .navbar-brand {
    padding: 0;
  }
  .cid-us8XQIvW0O .block__phone,
  .cid-us8XQIvW0O .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-us8XQIvW0O .widget {
    flex-direction: column;
  }
  .cid-us8XQIvW0O .widget p,
  .cid-us8XQIvW0O .widget .icons-menu {
    margin-right: 0;
  }
  .cid-us8XQIvW0O .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-us8XQIvW0O .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us8XQIvW0O .navbar {
    height: 97px;
  }
  .cid-us8XQIvW0O .navbar.opened {
    height: auto;
  }
  .cid-us8XQIvW0O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-us8XQI2sz5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-us8XQI2sz5 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-us8XQI2sz5 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-us8XQI2sz5 .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-us8XQI2sz5 .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-us8XQI2sz5 .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us8XQJ1AbX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-us8XQJ1AbX .card-box {
  padding: 0rem;
}
.cid-us8XQJ1AbX .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-us8XQJ1AbX .card {
  padding: 0;
  margin: auto;
}
.cid-us8XQJ1AbX .card-img {
  height: 220px;
}
.cid-us8XQJ1AbX .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-us8XQJ1AbX .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-us8XQJ1AbX .card-wrapper {
    padding: 4rem;
  }
}
.cid-us8XQJ1AbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8XQJ1AbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XQJ1AbX .card-title {
  color: #ffffff;
}
.cid-uR88sGMtVM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uR88sGMtVM .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-uR88sGMtVM .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-uR88sGMtVM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uR88sGMtVM .inner-container {
    width: 100% !important;
  }
}
.cid-us96gZJrPz {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-us96gZJrPz .mbr-text,
.cid-us96gZJrPz .mbr-section-subtitle {
  color: #767676;
}
.cid-us96gZJrPz .mbr-text {
  margin-bottom: 0 !important;
  color: #ffffff;
  transition: .2s all;
}
.cid-us96gZJrPz .card-title {
  color: #66458e;
}
.cid-us96gZJrPz .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-us96gZJrPz .card-img {
  padding-bottom: 2.65rem !important;
}
@media (max-width: 767px) {
  .cid-us96gZJrPz .mbr-section-subtitle,
  .cid-us96gZJrPz .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us96gZJrPz .card .card-img span {
    background: none;
  }
}
.cid-us96gZJrPz .card-wrap {
  border-radius: 5px;
  padding: 4.2rem 2rem 4.1rem;
}
.cid-us96gZJrPz .card1 {
  background-color: #47a15d;
}
.cid-us96gZJrPz .card2 {
  background-color: #b1a374;
}
.cid-us96gZJrPz .card3 {
  background-color: #00777c;
}
.cid-us96gZJrPz .card4 {
  background-color: #bbbbbb;
}
.cid-us96gZJrPz .card-title,
.cid-us96gZJrPz .card-img {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-us96gZJrPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-us96gZJrPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XQKyJcx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-us8XQKyJcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8XQKyJcx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XQKyJcx .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-us8XQKyJcx .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-us8XQKyJcx .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us8XQKyJcx .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-us8XQKyJcx .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-us8XQKyJcx .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-us8XQKyJcx .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-us8XQKyJcx .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-us8XQKyJcx .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-us8XQKyJcx .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-us8XQKyJcx .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-us8XQKyJcx .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-us8XQKyJcx .items-wrapper .card {
  padding: 0 32px;
}
.cid-us8XQKyJcx .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us8XQKyJcx .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us8XQKyJcx .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us8XQKyJcx .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-us8XQKyJcx .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-us8XQKyJcx .list-wrapper .list .item-wrap:hover,
.cid-us8XQKyJcx .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-us8XQKyJcx .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-us8XQKyJcx .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us8XQKyJcx .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us8XQKyJcx .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us8XQKyJcx .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-us8XQKyJcx .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-us8XQKyJcx .mbr-desc {
  color: #55b4d4;
}
.cid-us8XQKyJcx .mbr-text,
.cid-us8XQKyJcx .text-wrapper {
  color: #9aa0a6;
}
.cid-us8XQKyJcx .list {
  color: #9aa0a6;
}
.cid-us8XQKyJcx .mbr-text,
.cid-us8XQKyJcx .mbr-section-btn {
  color: #b2ccd2;
}
.cid-us8XQKyJcx .list,
.cid-us8XQKyJcx .item-wrap {
  color: #b2ccd2;
}
.cid-us8XQKyJcx weis {
  color: #ffffff;
}
.cid-us8XQKyJcx klein {
  font-size: 12px;
}
.cid-us8XQKyJcx blau {
  color: #78C0FF;
}
.cid-us8XQKyJcx hell {
  color: #f4f4f4;
}
.cid-us8XQKyJcx .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-us8XQKyJcx .mbr-desc,
.cid-us8XQKyJcx .content-wrapper {
  color: #cc2952;
}
.cid-us8XQL7uym #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8XQL7uym #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8XQL7uym #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8XQL7uym #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8XQL7uym #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8XQL7uym #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8XQL7uym .hidden {
  display: none;
}
.cid-us8XPSpSXp {
  min-height: 70px !important;
  position: relative;
  background: #efefef;
  overflow: visible;
}
.cid-us8XPSpSXp .nav-item,
.cid-us8XPSpSXp .nav-link,
.cid-us8XPSpSXp .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us8XPSpSXp .nav-item:hover,
.cid-us8XPSpSXp .nav-link:hover,
.cid-us8XPSpSXp .navbar-caption:hover {
  color: #0082c3 !important;
}
.cid-us8XPSpSXp .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-us8XPSpSXp .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-us8XPSpSXp .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-us8XPSpSXp .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-us8XPSpSXp .container-fluid,
.cid-us8XPSpSXp .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-us8XPSpSXp .navbar-brand {
  padding: 0;
}
.cid-us8XPSpSXp .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-us8XPSpSXp .nav-link:hover:before {
  width: 100%;
}
.cid-us8XPSpSXp .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-us8XPSpSXp .nav-link {
    margin: 0 !important;
  }
}
.cid-us8XPSpSXp .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us8XPSpSXp .widget p,
.cid-us8XPSpSXp .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-us8XPSpSXp .widget p a,
.cid-us8XPSpSXp .widget .icons-menu a {
  margin-left: 15px;
}
.cid-us8XPSpSXp .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 25px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-us8XPSpSXp .icons__wrap:hover {
  color: #ffffff;
  background-color: #6e4506;
  border-color: #6e4506;
}
.cid-us8XPSpSXp .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us8XPSpSXp .block__phone,
  .cid-us8XPSpSXp .icons-menu {
    display: none;
  }
  .cid-us8XPSpSXp .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-us8XPSpSXp .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #6e4506 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-us8XPSpSXp .mbr-section-btn .btn-secondary:hover {
  background-color: #6e4506 !important;
  color: #ffffff !important;
}
.cid-us8XPSpSXp .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-us8XPSpSXp .navbar > .container,
.cid-us8XPSpSXp .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-us8XPSpSXp .btn {
    white-space: nowrap;
    height: 40px;
  }
  .cid-us8XPSpSXp .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #efefef;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #0f7699;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-us8XPSpSXp .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-us8XPSpSXp .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-us8XPSpSXp .dropdown-toggle::after,
  .cid-us8XPSpSXp .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-us8XPSpSXp .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-us8XPSpSXp .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-us8XPSpSXp .dropdown-menu .dropdown-item:hover {
  color: #6e4506 !important;
}
.cid-us8XPSpSXp .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-us8XPSpSXp .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-us8XPSpSXp .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-us8XPSpSXp .nav-item:focus,
.cid-us8XPSpSXp .nav-link:focus {
  outline: none;
}
.cid-us8XPSpSXp .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-us8XPSpSXp .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-us8XPSpSXp .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-us8XPSpSXp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-us8XPSpSXp .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-us8XPSpSXp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-us8XPSpSXp .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-us8XPSpSXp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-us8XPSpSXp .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #efefef;
}
.cid-us8XPSpSXp .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #efefef !important;
}
.cid-us8XPSpSXp .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-us8XPSpSXp .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-us8XPSpSXp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-us8XPSpSXp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-us8XPSpSXp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 110px - 1rem);
  }
}
.cid-us8XPSpSXp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-us8XPSpSXp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-us8XPSpSXp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-us8XPSpSXp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-us8XPSpSXp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-us8XPSpSXp .navbar .dropdown-menu {
    background: #efefef !important;
  }
  .cid-us8XPSpSXp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-us8XPSpSXp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-us8XPSpSXp .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-us8XPSpSXp .navbar.navbar-short {
  background: #efefef !important;
  min-height: 70px;
  height: 70px;
}
.cid-us8XPSpSXp .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-us8XPSpSXp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-us8XPSpSXp .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-us8XPSpSXp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-us8XPSpSXp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-us8XPSpSXp .dropdown-item.active,
.cid-us8XPSpSXp .dropdown-item:active {
  background-color: transparent;
}
.cid-us8XPSpSXp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-us8XPSpSXp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-us8XPSpSXp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-us8XPSpSXp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f7699;
}
.cid-us8XPSpSXp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-us8XPSpSXp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us8XPSpSXp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-us8XPSpSXp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-us8XPSpSXp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us8XPSpSXp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-us8XPSpSXp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-us8XPSpSXp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-us8XPSpSXp .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-us8XPSpSXp a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-us8XPSpSXp a.nav-link:hover {
  color: #6e4506 !important;
}
@media (max-width: 991px) {
  .cid-us8XPSpSXp .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-us8XPSpSXp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #0f7699;
  }
  .cid-us8XPSpSXp .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-us8XPSpSXp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-us8XPSpSXp .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-us8XPSpSXp .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-us8XPSpSXp .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-us8XPSpSXp .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-us8XPSpSXp .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-us8XPSpSXp .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-us8XPSpSXp a.nav-link {
    justify-content: flex-start;
  }
  .cid-us8XPSpSXp ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-us8XPSpSXp .navbar-brand {
    padding: 0;
  }
  .cid-us8XPSpSXp .block__phone,
  .cid-us8XPSpSXp .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-us8XPSpSXp .widget {
    flex-direction: column;
  }
  .cid-us8XPSpSXp .widget p,
  .cid-us8XPSpSXp .widget .icons-menu {
    margin-right: 0;
  }
  .cid-us8XPSpSXp .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.is-builder .cid-us8XPSpSXp .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-us8XPSpSXp .navbar {
    height: 97px;
  }
  .cid-us8XPSpSXp .navbar.opened {
    height: auto;
  }
  .cid-us8XPSpSXp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-us8XPR72Ub {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-us8XPR72Ub .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-us8XPR72Ub .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-us8XPR72Ub .dentaura-top-spacer {
    height: 40px;
  }
}
@media (min-width: 769px) {
  .cid-us8XPR72Ub .dentaura-top-spacer {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .cid-us8XPR72Ub .dentaura-top-spacer {
    height: 40px;
  }
}
.cid-us8XPSVK9O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-us8XPSVK9O .card-box {
  padding: 0rem;
}
.cid-us8XPSVK9O .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-us8XPSVK9O .card {
  padding: 0;
  margin: auto;
}
.cid-us8XPSVK9O .card-img {
  height: 220px;
}
.cid-us8XPSVK9O .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-us8XPSVK9O .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-us8XPSVK9O .card-wrapper {
    padding: 4rem;
  }
}
.cid-us8XPSVK9O .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8XPSVK9O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XPSVK9O .card-title {
  color: #ffffff;
}
.cid-us8XPThpfg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-us8XPThpfg .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-us8XPThpfg .section-text {
  padding: 0.02rem 0;
  text-align: left;
}
.cid-us8XPThpfg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us8XPThpfg .inner-container {
    width: 100% !important;
  }
}
.cid-us8YNTSpDe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8YNTSpDe .line {
  background-color: #d0b111;
  color: #d0b111;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-us8YNTSpDe .section-text {
  padding: 0.1rem 0;
  text-align: left;
  color: #465052;
}
.cid-us8YNTSpDe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-us8YNTSpDe .inner-container {
    width: 100% !important;
  }
}
.cid-us8YPKElk3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8YPKElk3 H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us8YPKElk3 .mbr-text,
.cid-us8YPKElk3 .mbr-section-btn {
  color: #716c80;
}
.cid-us8YPKElk3 H3 {
  color: #716c80;
}
.cid-us8YPKElk3 .row {
  justify-content: space-between;
}
.cid-us8YPKElk3 .col-lg-6 {
  max-width: 500px;
}
.cid-us8YPKElk3 .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us8YPKElk3 .text2,
.cid-us8YPKElk3 .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us8YPKElk3 .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us8YPKElk3 .text1,
.cid-us8YPKElk3 .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us8YPKElk3 .title2 DIV {
  text-align: left;
}
.cid-us8Z7WjDp5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8Z7WjDp5 H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us8Z7WjDp5 .mbr-text,
.cid-us8Z7WjDp5 .mbr-section-btn {
  color: #716c80;
}
.cid-us8Z7WjDp5 H3 {
  color: #716c80;
}
.cid-us8Z7WjDp5 .row {
  justify-content: space-between;
}
.cid-us8Z7WjDp5 .col-lg-6 {
  max-width: 500px;
}
.cid-us8Z7WjDp5 .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us8Z7WjDp5 .text2,
.cid-us8Z7WjDp5 .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us8Z7WjDp5 .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us8Z7WjDp5 .text1,
.cid-us8Z7WjDp5 .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us8Z7WjDp5 .title2 DIV {
  text-align: left;
}
.cid-us920dOQWO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us920dOQWO H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us920dOQWO .mbr-text,
.cid-us920dOQWO .mbr-section-btn {
  color: #716c80;
}
.cid-us920dOQWO H3 {
  color: #716c80;
}
.cid-us920dOQWO .row {
  justify-content: space-between;
}
.cid-us920dOQWO .col-lg-6 {
  max-width: 500px;
}
.cid-us920dOQWO .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us920dOQWO .text2,
.cid-us920dOQWO .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us920dOQWO .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us920dOQWO .text1,
.cid-us920dOQWO .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us920dOQWO .title2 DIV {
  text-align: left;
}
.cid-us8Z8IGi9A {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8Z8IGi9A H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us8Z8IGi9A .mbr-text,
.cid-us8Z8IGi9A .mbr-section-btn {
  color: #716c80;
}
.cid-us8Z8IGi9A H3 {
  color: #716c80;
}
.cid-us8Z8IGi9A .row {
  justify-content: space-between;
}
.cid-us8Z8IGi9A .col-lg-6 {
  max-width: 500px;
}
.cid-us8Z8IGi9A .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us8Z8IGi9A .text2,
.cid-us8Z8IGi9A .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us8Z8IGi9A .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us8Z8IGi9A .text1,
.cid-us8Z8IGi9A .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us8Z8IGi9A .title2 DIV {
  text-align: left;
}
.cid-us8Z9lbrxI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8Z9lbrxI H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us8Z9lbrxI .mbr-text,
.cid-us8Z9lbrxI .mbr-section-btn {
  color: #716c80;
}
.cid-us8Z9lbrxI H3 {
  color: #716c80;
}
.cid-us8Z9lbrxI .row {
  justify-content: space-between;
}
.cid-us8Z9lbrxI .col-lg-6 {
  max-width: 500px;
}
.cid-us8Z9lbrxI .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us8Z9lbrxI .text2,
.cid-us8Z9lbrxI .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us8Z9lbrxI .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us8Z9lbrxI .text1,
.cid-us8Z9lbrxI .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us8Z9lbrxI .title2 DIV {
  text-align: left;
}
.cid-us8Z9XTpr3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us8Z9XTpr3 H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us8Z9XTpr3 .mbr-text,
.cid-us8Z9XTpr3 .mbr-section-btn {
  color: #716c80;
}
.cid-us8Z9XTpr3 H3 {
  color: #716c80;
}
.cid-us8Z9XTpr3 .row {
  justify-content: space-between;
}
.cid-us8Z9XTpr3 .col-lg-6 {
  max-width: 500px;
}
.cid-us8Z9XTpr3 .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us8Z9XTpr3 .text2,
.cid-us8Z9XTpr3 .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us8Z9XTpr3 .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us8Z9XTpr3 .text1,
.cid-us8Z9XTpr3 .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us8Z9XTpr3 .title2 DIV {
  text-align: left;
}
.cid-us92qy6yvo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us92qy6yvo H1 {
  color: #57468b;
  font-size: 22px;
}
.cid-us92qy6yvo .mbr-text,
.cid-us92qy6yvo .mbr-section-btn {
  color: #716c80;
}
.cid-us92qy6yvo H3 {
  color: #716c80;
}
.cid-us92qy6yvo .row {
  justify-content: space-between;
}
.cid-us92qy6yvo .col-lg-6 {
  max-width: 500px;
}
.cid-us92qy6yvo .title2 {
  text-align: left;
  color: #0082c3;
  font-size: 26px;
}
.cid-us92qy6yvo .text2,
.cid-us92qy6yvo .btn2 {
  text-align: left;
  color: #000000;
}
.cid-us92qy6yvo .title1 {
  color: #0082c3;
  font-size: 26px;
  text-align: left;
}
.cid-us92qy6yvo .text1,
.cid-us92qy6yvo .btn1 {
  text-align: left;
  color: #000000;
}
.cid-us92qy6yvo .title2 DIV {
  text-align: left;
}
.cid-us8XPUmow2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #687578;
}
.cid-us8XPUmow2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8XPUmow2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8XPUmow2 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-us8XPUmow2 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-us8XPUmow2 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us8XPUmow2 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-us8XPUmow2 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-us8XPUmow2 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-us8XPUmow2 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-us8XPUmow2 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f9f9f9;
  color: #ffffff;
}
.cid-us8XPUmow2 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #f9f9f9;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-us8XPUmow2 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #879a9f;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-us8XPUmow2 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-us8XPUmow2 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-us8XPUmow2 .items-wrapper .card {
  padding: 0 32px;
}
.cid-us8XPUmow2 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us8XPUmow2 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us8XPUmow2 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us8XPUmow2 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-us8XPUmow2 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-us8XPUmow2 .list-wrapper .list .item-wrap:hover,
.cid-us8XPUmow2 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-us8XPUmow2 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-us8XPUmow2 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us8XPUmow2 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-us8XPUmow2 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-us8XPUmow2 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-us8XPUmow2 .mbr-copy {
  margin-bottom: 0;
  color: #b2ccd2;
}
.cid-us8XPUmow2 .mbr-desc {
  color: #55b4d4;
}
.cid-us8XPUmow2 .mbr-text,
.cid-us8XPUmow2 .text-wrapper {
  color: #9aa0a6;
}
.cid-us8XPUmow2 .list {
  color: #9aa0a6;
}
.cid-us8XPUmow2 .mbr-text,
.cid-us8XPUmow2 .mbr-section-btn {
  color: #b2ccd2;
}
.cid-us8XPUmow2 .list,
.cid-us8XPUmow2 .item-wrap {
  color: #b2ccd2;
}
.cid-us8XPUmow2 weis {
  color: #ffffff;
}
.cid-us8XPUmow2 klein {
  font-size: 12px;
}
.cid-us8XPUmow2 blau {
  color: #78C0FF;
}
.cid-us8XPUmow2 hell {
  color: #f4f4f4;
}
.cid-us8XPUmow2 .btn {
  margin: .4rem .8rem;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  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.55rem 2rem;
  border-radius: 3px;
}
.cid-us8XPUmow2 .mbr-desc,
.cid-us8XPUmow2 .content-wrapper {
  color: #cc2952;
}
.cid-us8XPUQx8G #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.71;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 7px -2px #000000;
  -moz-box-shadow: 0 -3px 7px -2px #000000;
  box-shadow: 0 -3px 7px -2px #000000;
}
@media (max-width: 768px) {
  .cid-us8XPUQx8G #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
@media (min-width: 769px) {
  .cid-us8XPUQx8G #dentauraBttB {
    right: 100px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .cid-us8XPUQx8G #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 20px;
  }
}
.cid-us8XPUQx8G #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/n.oben-57x57.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cid-us8XPUQx8G #dentauraBttB:hover {
  opacity: 1;
}
.cid-us8XPUQx8G .hidden {
  display: none;
}
