.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Thasadith', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Thasadith', sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-4 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Thasadith', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.3125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.245rem + (1.7 - 1.245) * ((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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.84rem;
    font-size: calc( 1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0082c3 !important;
}
.bg-success {
  background-color: #27c209 !important;
}
.bg-info {
  background-color: #bdbf02 !important;
}
.bg-warning {
  background-color: #8f7811 !important;
}
.bg-danger {
  background-color: #ff6600 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0082c3 !important;
  border-color: #0082c3 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #00486c !important;
  border-color: #00486c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #00486c !important;
  border-color: #00486c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f50e99 !important;
  border-color: #f50e99 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a50766 !important;
  border-color: #a50766 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a50766 !important;
  border-color: #a50766 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bdbf02 !important;
  border-color: #bdbf02 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #686901 !important;
  border-color: #686901 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #686901 !important;
  border-color: #686901 !important;
}
.btn-success,
.btn-success:active {
  background-color: #27c209 !important;
  border-color: #27c209 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #166f05 !important;
  border-color: #166f05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #166f05 !important;
  border-color: #166f05 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8f7811 !important;
  border-color: #8f7811 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #423708 !important;
  border-color: #423708 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #423708 !important;
  border-color: #423708 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff6600 !important;
  border-color: #ff6600 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a84300 !important;
  border-color: #a84300 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a84300 !important;
  border-color: #a84300 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #0082c3;
  color: #0082c3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #00486c !important;
  background-color: transparent!important;
  border-color: #00486c !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0082c3 !important;
  border-color: #0082c3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f50e99;
  color: #f50e99;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a50766 !important;
  background-color: transparent!important;
  border-color: #a50766 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f50e99 !important;
  border-color: #f50e99 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #bdbf02;
  color: #bdbf02;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #686901 !important;
  background-color: transparent!important;
  border-color: #686901 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bdbf02 !important;
  border-color: #bdbf02 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #27c209;
  color: #27c209;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #166f05 !important;
  background-color: transparent!important;
  border-color: #166f05 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #27c209 !important;
  border-color: #27c209 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #8f7811;
  color: #8f7811;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #423708 !important;
  background-color: transparent!important;
  border-color: #423708 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8f7811 !important;
  border-color: #8f7811 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff6600;
  color: #ff6600;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a84300 !important;
  background-color: transparent!important;
  border-color: #a84300 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6600 !important;
  border-color: #ff6600 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0082c3 !important;
}
.text-secondary {
  color: #f50e99 !important;
}
.text-success {
  color: #27c209 !important;
}
.text-info {
  color: #bdbf02 !important;
}
.text-warning {
  color: #8f7811 !important;
}
.text-danger {
  color: #ff6600 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #003e5d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #97065d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #136104 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #595a01 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #342c06 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #993d00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0082c3;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bdbf02;
}
.alert-warning {
  background-color: #8f7811;
}
.alert-danger {
  background-color: #ff6600;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0082c3;
  border-color: #0082c3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0082c3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #43c0ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #6ef753;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbfd43;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e7c738;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffe0cc;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0082c3 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #0082c3;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0082c3;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0082c3;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0082c3;
  border-bottom-color: #0082c3;
}
.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: #0082c3 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #f50e99 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230082c3' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t4Rv0FL4cL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t4Rv0FL4cL .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t4Rv0FL4cL .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t4Rv0FL4cL .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t4Rv0FL4cL .dentaura-top-spacer {
    height: 65px;
  }
}
@media (min-width: 992px) {
  .cid-t4Rv0FL4cL .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t4Xi5SxjyY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/testhandy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t4Xi5SxjyY .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t4Xi5SxjyY .mbr-section-title {
  color: #ffffff;
}
.cid-t4Xi5SxjyY .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t4Xi5SxjyY .mbr-section-title,
.cid-t4Xi5SxjyY .mbr-section-btn {
  text-align: right;
}
.cid-t59Q9sL8cg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/x4.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59Q9sL8cg .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59Q9sL8cg .mbr-section-title {
  color: #ffffff;
}
.cid-t59Q9sL8cg .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59Q9sL8cg .mbr-section-title,
.cid-t59Q9sL8cg .mbr-section-btn {
  text-align: center;
}
.cid-sCiuc2TQXA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCiuc2TQXA .mbr-section-title {
  color: #169505;
}
.cid-sCiuc2TQXA .mbr-section-subtitle {
  color: #0082c3;
}
.cid-t4XokHR4cP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4XokHR4cP .carousel,
.cid-t4XokHR4cP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t4XokHR4cP .item-wrapper {
  width: 100%;
}
.cid-t4XokHR4cP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t4XokHR4cP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-t4XokHR4cP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t4XokHR4cP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t4XokHR4cP .carousel-control {
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #E8E8E8;
  border-radius: 50%;
  opacity: 1;
}
.cid-t4XokHR4cP .carousel-control span {
  color: #101019;
}
.cid-t4XokHR4cP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4XokHR4cP .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-t4XokHR4cP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4XokHR4cP .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t4XokHR4cP .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-t4XokHR4cP .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-t4XokHR4cP .carousel-indicators li.active,
.cid-t4XokHR4cP .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-t4XokHR4cP .carousel-indicators li::after,
.cid-t4XokHR4cP .carousel-indicators li::before {
  content: none;
}
.cid-t4XokHR4cP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t4XokHR4cP .carousel-indicators {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .cid-t4XokHR4cP .mbr-section-head {
    margin-left: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 1199px) {
  .cid-t4XokHR4cP .mbr-section-head {
    margin-left: 2.2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-t4XokHR4cP .mbr-section-head {
    margin-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .cid-t4XokHR4cP .mbr-section-head {
    margin-left: 0;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-t4XokHR4cP .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-t4XvO9wPaU {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4XvO9wPaU .carousel,
.cid-t4XvO9wPaU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t4XvO9wPaU .item-wrapper {
  width: 100%;
}
.cid-t4XvO9wPaU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t4XvO9wPaU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-t4XvO9wPaU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t4XvO9wPaU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t4XvO9wPaU .carousel-control {
  top: 50%;
  width: 25px;
  height: 25px;
  margin-top: 2.3rem;
  font-size: 12px;
  background-color: #E8E8E8;
  border-radius: 50%;
  opacity: 1;
}
.cid-t4XvO9wPaU .carousel-control span {
  color: #101019;
}
.cid-t4XvO9wPaU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4XvO9wPaU .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-t4XvO9wPaU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4XvO9wPaU .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t4XvO9wPaU .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-t4XvO9wPaU .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-t4XvO9wPaU .carousel-indicators li.active,
.cid-t4XvO9wPaU .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-t4XvO9wPaU .carousel-indicators li::after,
.cid-t4XvO9wPaU .carousel-indicators li::before {
  content: none;
}
.cid-t4XvO9wPaU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t4XvO9wPaU .carousel-indicators {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .cid-t4XvO9wPaU .mbr-section-head {
    margin-left: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 1199px) {
  .cid-t4XvO9wPaU .mbr-section-head {
    margin-left: 2.2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-t4XvO9wPaU .mbr-section-head {
    margin-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .cid-t4XvO9wPaU .mbr-section-head {
    margin-left: 0;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-t4XvO9wPaU .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-t4XbZb8BlU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #d6e2f7;
  background: linear-gradient(#d6e2f7, #ffffff);
}
.cid-t4XbZb8BlU .mbr-section-title {
  letter-spacing: 0.1em;
  color: #169505;
  margin-bottom: 2rem;
}
.cid-t4XbZb8BlU .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4XbZb8BlU .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-t4XbZb8BlU .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4XbZb8BlU .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4XbZb8BlU .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4XbZb8BlU .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4XbZb8BlU .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4XbZb8BlU .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4XbZb8BlU .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4XbZb8BlU .carousel-indicators li {
  width: 13px;
  height: 13px;
  border-radius: 1%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #bc0a14;
}
.cid-t4XbZb8BlU .carousel-indicators li.active {
  border-color: #000000;
}
@media (max-width: 768px) {
  .cid-t4XbZb8BlU .second-col {
    padding-top: 2rem;
  }
}
.cid-t4XbZb8BlU strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4XbZb8BlU klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t4XbZb8BlU ustrich {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5Cex7aN6k {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cex7aN6k hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Cex7aN6k hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Cex7aN6k h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Cex7aN6k .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Cex7aN6k H2 {
  color: #767676;
}
.cid-t5CexRmn7O {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CexRmn7O hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CexRmn7O hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CexRmn7O h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CexRmn7O .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CexRmn7O H2 {
  color: #767676;
}
.cid-t4Rvo6IkTP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t4Rvo6IkTP .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t4Rvo6IkTP .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t4Rvo6IkTP .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t4Rvo6IkTP .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t4Rvo6IkTP .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN1FOk.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN1FOk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN1FOk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN1FOk .modal-content,
.cid-t5NmlN1FOk .modal-dialog {
  height: auto;
}
.cid-t5NmlN1FOk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN1FOk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN1FOk .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN1FOk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN1FOk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN1FOk .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN1FOk .mbr-text {
  text-align: left;
}
.cid-t5NmlN1FOk .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN1FOk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN1FOk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN1FOk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN1FOk .modal-open {
  overflow: hidden;
}
.cid-t5NmlN1FOk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN1FOk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN1FOk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN1FOk .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN1FOk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN1FOk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN1FOk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN1FOk .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN1FOk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN1FOk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN1FOk .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN1FOk .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN1FOk .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN1FOk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1FOk .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN1FOk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN1FOk .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN1FOk .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN1FOk .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN1FOk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN1FOk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN1FOk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1FOk .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN1FOk .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN1FOk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1FOk .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN1FOk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN1FOk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN1FOk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN1FOk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN1FOk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN1FOk .modal-lg,
  .cid-t5NmlN1FOk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN1FOk .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN1FOk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN1FOk .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN1FOk .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN1FOk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN1FOk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN1FOk .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN1FOk .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN1FOk .mbr-section-btn .btn {
  margin: 0;
}
.cid-t59KsjnOJS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t59KsjnOJS .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t59KsjnOJS .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t59KsjnOJS .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t59KsjnOJS .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t59KsjnOJS .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t59NPPgPMj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/handy-ausflge.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59NPPgPMj .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59NPPgPMj .mbr-section-title {
  color: #ffffff;
}
.cid-t59NPPgPMj .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59NPPgPMj .mbr-section-title,
.cid-t59NPPgPMj .mbr-section-btn {
  text-align: center;
}
.cid-t5a4JnBqhz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/ddddd.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a4JnBqhz .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a4JnBqhz .mbr-section-title {
  color: #ffffff;
}
.cid-t5a4JnBqhz .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a4JnBqhz .mbr-section-title,
.cid-t5a4JnBqhz .mbr-section-btn {
  text-align: center;
}
.cid-sCjmyEqxrx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCjmyEqxrx .mbr-section-title {
  text-align: left;
  color: #169505;
}
.cid-sCjmyEqxrx .mbr-text {
  text-align: left;
}
.cid-sCksSjtlu3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCksSjtlu3 h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-sCksSjtlu3 p {
  color: #767676;
}
.cid-sCksSjtlu3 .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-sCksSjtlu3 .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-sCksSjtlu3 .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-sCksSjtlu3 .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-sCksSjtlu3 .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-sCksSjtlu3 .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-sCksSjtlu3 rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-sCksSjtlu3 .b-descr {
  color: #bc0a14;
}
.cid-sCsMrv3oGr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsMrv3oGr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsMrv3oGr .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsMrv3oGr .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsMrv3oGr .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsMrv3oGr .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsMrv3oGr .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsMrv3oGr .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsMrv3oGr .btn_link:hover {
  cursor: pointer;
}
.cid-sCsMrv3oGr .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsMrv3oGr .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsMrv3oGr .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsMrv3oGr .text-wrapper {
    text-align: center;
  }
  .cid-sCsMrv3oGr .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsMrv3oGr .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsMrv3oGr .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsMrv3oGr .card-title,
.cid-sCsMrv3oGr .icon_block {
  color: #0082c3;
}
.cid-sCsMrv3oGr .card-title,
.cid-sCsMrv3oGr .icon_block DIV {
  text-align: left;
}
.cid-sCsMrv3oGr .mbr-text,
.cid-sCsMrv3oGr .btn_link {
  text-align: left;
}
.cid-sCsQ2WpKBI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsQ2WpKBI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsQ2WpKBI .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsQ2WpKBI .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsQ2WpKBI .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsQ2WpKBI .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsQ2WpKBI .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsQ2WpKBI .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsQ2WpKBI .btn_link:hover {
  cursor: pointer;
}
.cid-sCsQ2WpKBI .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsQ2WpKBI .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsQ2WpKBI .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsQ2WpKBI .text-wrapper {
    text-align: center;
  }
  .cid-sCsQ2WpKBI .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsQ2WpKBI .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsQ2WpKBI .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsQ2WpKBI .card-title,
.cid-sCsQ2WpKBI .icon_block {
  color: #0082c3;
}
.cid-sCsQ2WpKBI .card-title,
.cid-sCsQ2WpKBI .icon_block DIV {
  text-align: left;
}
.cid-sCsQ2WpKBI .mbr-text,
.cid-sCsQ2WpKBI .btn_link {
  text-align: left;
}
.cid-sCsS4A1l2J {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS4A1l2J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS4A1l2J .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS4A1l2J .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS4A1l2J .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS4A1l2J .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS4A1l2J .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS4A1l2J .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS4A1l2J .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS4A1l2J .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS4A1l2J .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS4A1l2J .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS4A1l2J .text-wrapper {
    text-align: center;
  }
  .cid-sCsS4A1l2J .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS4A1l2J .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS4A1l2J .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS4A1l2J .card-title,
.cid-sCsS4A1l2J .icon_block {
  color: #0082c3;
}
.cid-sCsS4A1l2J .card-title,
.cid-sCsS4A1l2J .icon_block DIV {
  text-align: left;
}
.cid-sCsS4A1l2J .mbr-text,
.cid-sCsS4A1l2J .btn_link {
  text-align: left;
}
.cid-sCsS5o0d75 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS5o0d75 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS5o0d75 .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS5o0d75 .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS5o0d75 .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS5o0d75 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS5o0d75 .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS5o0d75 .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS5o0d75 .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS5o0d75 .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS5o0d75 .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS5o0d75 .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS5o0d75 .text-wrapper {
    text-align: center;
  }
  .cid-sCsS5o0d75 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS5o0d75 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS5o0d75 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS5o0d75 .card-title,
.cid-sCsS5o0d75 .icon_block {
  color: #0082c3;
}
.cid-sCsS5o0d75 .card-title,
.cid-sCsS5o0d75 .icon_block DIV {
  text-align: left;
}
.cid-sCsS5o0d75 .mbr-text,
.cid-sCsS5o0d75 .btn_link {
  text-align: left;
}
.cid-sCsS5Z41Jg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS5Z41Jg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS5Z41Jg .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS5Z41Jg .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS5Z41Jg .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS5Z41Jg .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS5Z41Jg .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS5Z41Jg .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS5Z41Jg .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS5Z41Jg .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS5Z41Jg .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS5Z41Jg .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS5Z41Jg .text-wrapper {
    text-align: center;
  }
  .cid-sCsS5Z41Jg .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS5Z41Jg .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS5Z41Jg .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS5Z41Jg .card-title,
.cid-sCsS5Z41Jg .icon_block {
  color: #0082c3;
}
.cid-sCsS5Z41Jg .card-title,
.cid-sCsS5Z41Jg .icon_block DIV {
  text-align: left;
}
.cid-sCsS5Z41Jg .mbr-text,
.cid-sCsS5Z41Jg .btn_link {
  text-align: left;
}
.cid-sCsS6VibIZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS6VibIZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS6VibIZ .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS6VibIZ .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS6VibIZ .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS6VibIZ .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS6VibIZ .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS6VibIZ .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS6VibIZ .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS6VibIZ .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS6VibIZ .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS6VibIZ .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS6VibIZ .text-wrapper {
    text-align: center;
  }
  .cid-sCsS6VibIZ .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS6VibIZ .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS6VibIZ .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS6VibIZ .card-title,
.cid-sCsS6VibIZ .icon_block {
  color: #0082c3;
}
.cid-sCsS6VibIZ .card-title,
.cid-sCsS6VibIZ .icon_block DIV {
  text-align: left;
}
.cid-sCsS6VibIZ .mbr-text,
.cid-sCsS6VibIZ .btn_link {
  text-align: left;
}
.cid-sCsS7v668v {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS7v668v .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS7v668v .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS7v668v .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS7v668v .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS7v668v .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS7v668v .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS7v668v .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS7v668v .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS7v668v .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS7v668v .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS7v668v .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS7v668v .text-wrapper {
    text-align: center;
  }
  .cid-sCsS7v668v .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS7v668v .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS7v668v .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS7v668v .card-title,
.cid-sCsS7v668v .icon_block {
  color: #0082c3;
}
.cid-sCsS7v668v .card-title,
.cid-sCsS7v668v .icon_block DIV {
  text-align: left;
}
.cid-sCsS7v668v .mbr-text,
.cid-sCsS7v668v .btn_link {
  text-align: left;
}
.cid-sCsS82FNpm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS82FNpm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS82FNpm .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS82FNpm .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS82FNpm .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS82FNpm .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS82FNpm .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS82FNpm .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS82FNpm .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS82FNpm .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS82FNpm .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS82FNpm .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS82FNpm .text-wrapper {
    text-align: center;
  }
  .cid-sCsS82FNpm .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS82FNpm .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS82FNpm .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS82FNpm .card-title,
.cid-sCsS82FNpm .icon_block {
  color: #0082c3;
}
.cid-sCsS82FNpm .card-title,
.cid-sCsS82FNpm .icon_block DIV {
  text-align: left;
}
.cid-sCsS82FNpm .mbr-text,
.cid-sCsS82FNpm .btn_link {
  text-align: left;
}
.cid-sCsS8yfi2V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCsS8yfi2V .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsS8yfi2V .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsS8yfi2V .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsS8yfi2V .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsS8yfi2V .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsS8yfi2V .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsS8yfi2V .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsS8yfi2V .btn_link:hover {
  cursor: pointer;
}
.cid-sCsS8yfi2V .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsS8yfi2V .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsS8yfi2V .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsS8yfi2V .text-wrapper {
    text-align: center;
  }
  .cid-sCsS8yfi2V .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsS8yfi2V .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsS8yfi2V .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsS8yfi2V .card-title,
.cid-sCsS8yfi2V .icon_block {
  color: #0082c3;
}
.cid-sCsS8yfi2V .card-title,
.cid-sCsS8yfi2V .icon_block DIV {
  text-align: left;
}
.cid-sCsS8yfi2V .mbr-text,
.cid-sCsS8yfi2V .btn_link {
  text-align: left;
}
.cid-sCsZUTgHmK {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sCsZUTgHmK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCsZUTgHmK .card-title {
  margin-bottom: 26px;
  color: #f50e99;
}
.cid-sCsZUTgHmK .mbr-text {
  margin-bottom: 30px;
}
.cid-sCsZUTgHmK .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sCsZUTgHmK .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sCsZUTgHmK .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sCsZUTgHmK .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCsZUTgHmK .btn_link:hover {
  cursor: pointer;
}
.cid-sCsZUTgHmK .btn_link:hover a {
  color: #0082c3 !important;
}
.cid-sCsZUTgHmK .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sCsZUTgHmK .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCsZUTgHmK .text-wrapper {
    text-align: center;
  }
  .cid-sCsZUTgHmK .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sCsZUTgHmK .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sCsZUTgHmK .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sCsZUTgHmK .card-title,
.cid-sCsZUTgHmK .icon_block {
  color: #0082c3;
}
.cid-sCsZUTgHmK .card-title,
.cid-sCsZUTgHmK .icon_block DIV {
  text-align: left;
}
.cid-sCsZUTgHmK .mbr-text,
.cid-sCsZUTgHmK .btn_link {
  text-align: left;
}
.cid-t5CpYqh9vC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CpYqh9vC h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CpYqh9vC p {
  color: #767676;
}
.cid-t5CpYqh9vC .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CpYqh9vC .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CpYqh9vC .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CpYqh9vC .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CpYqh9vC .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CpYqh9vC .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CpYqh9vC rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CpYqh9vC .b-descr {
  color: #bc0a14;
}
.cid-t5CpVV5VxU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CpVV5VxU hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CpVV5VxU hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CpVV5VxU h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CpVV5VxU .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CpVV5VxU H2 {
  color: #767676;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5CpWKGZ36 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CpWKGZ36 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CpWKGZ36 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CpWKGZ36 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CpWKGZ36 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CpWKGZ36 H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN1Mpw.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN1Mpw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN1Mpw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN1Mpw .modal-content,
.cid-t5NmlN1Mpw .modal-dialog {
  height: auto;
}
.cid-t5NmlN1Mpw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN1Mpw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN1Mpw .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN1Mpw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN1Mpw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN1Mpw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN1Mpw .mbr-text {
  text-align: left;
}
.cid-t5NmlN1Mpw .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN1Mpw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN1Mpw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN1Mpw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN1Mpw .modal-open {
  overflow: hidden;
}
.cid-t5NmlN1Mpw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN1Mpw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN1Mpw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN1Mpw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN1Mpw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN1Mpw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN1Mpw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN1Mpw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN1Mpw .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN1Mpw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN1Mpw .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN1Mpw .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN1Mpw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN1Mpw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1Mpw .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN1Mpw .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN1Mpw .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN1Mpw .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN1Mpw .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN1Mpw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN1Mpw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN1Mpw .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1Mpw .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN1Mpw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN1Mpw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1Mpw .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN1Mpw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN1Mpw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN1Mpw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN1Mpw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN1Mpw .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN1Mpw .modal-lg,
  .cid-t5NmlN1Mpw .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN1Mpw .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN1Mpw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN1Mpw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN1Mpw .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN1Mpw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN1Mpw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN1Mpw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN1Mpw .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN1Mpw .mbr-section-btn .btn {
  margin: 0;
}
.cid-t59EnGiOIb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t59EnGiOIb .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t59EnGiOIb .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t59EnGiOIb .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t59EnGiOIb .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t59EnGiOIb .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t59IFajzak {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/service-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59IFajzak .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59IFajzak .mbr-section-title {
  color: #ffffff;
}
.cid-t59IFajzak .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59IFajzak .mbr-section-title,
.cid-t59IFajzak .mbr-section-btn {
  text-align: center;
}
.cid-t59Rbb5Q7h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/desktopsevice.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59Rbb5Q7h .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59Rbb5Q7h .mbr-section-title {
  color: #ffffff;
}
.cid-t59Rbb5Q7h .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59Rbb5Q7h .mbr-section-title,
.cid-t59Rbb5Q7h .mbr-section-btn {
  text-align: center;
}
.cid-sC0Z7qkkdX {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sC0Z7qkkdX .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sC0Z7qkkdX .section-text {
  padding: 0.2rem 0;
  text-align: left;
}
.cid-sC0Z7qkkdX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sC0Z7qkkdX .inner-container {
    width: 100% !important;
  }
}
.cid-sC0Z7qkkdX blau {
  color: #0082c3;
  font-size: 30px;
}
.cid-t5eGiKO5um {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5eGiKO5um .pile1,
.cid-t5eGiKO5um .pile2 {
  padding-bottom: 60px;
}
.cid-t5eGiKO5um .pile1,
.cid-t5eGiKO5um .pile3 {
  padding-right: 60px;
}
.cid-t5eGiKO5um .pile2,
.cid-t5eGiKO5um .pile4 {
  padding-right: 50px;
}
.cid-t5eGiKO5um .text {
  display: flex;
  flex-direction: row;
}
.cid-t5eGiKO5um .card-title {
  margin-bottom: 14px;
}
.cid-t5eGiKO5um .card-text {
  padding-bottom: 14px;
  font-weight: 500;
}
.cid-t5eGiKO5um a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t5eGiKO5um rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t5eGiKO5um .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t5eGiKO5um svg {
  margin-left: 15px;
}
.cid-t5eGiKO5um path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t5eGiKO5um .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t5eGiKO5um .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t5eGiKO5um .link a {
  background-image: none !important;
}
.cid-t5eGiKO5um img {
  max-width: 140px;
  height: auto;
}
.cid-t5eGiKO5um .card-text,
.cid-t5eGiKO5um .lin {
  color: #4c4c4c;
}
@media (max-width: 770px) {
  .cid-t5eGiKO5um .dir {
    flex-direction: column;
  }
  .cid-t5eGiKO5um .top {
    padding-top: 60px;
  }
  .cid-t5eGiKO5um .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .cid-t5eGiKO5um .top1 {
    padding-top: 60px;
  }
  .cid-t5eGiKO5um .pile {
    padding-right: 0;
  }
  .cid-t5eGiKO5um .card-title {
    text-align: center;
  }
  .cid-t5eGiKO5um .card-text {
    text-align: center;
  }
  .cid-t5eGiKO5um .iconfont-wrapper {
    text-align: center;
  }
  .cid-t5eGiKO5um img {
    display: inline;
  }
  .cid-t5eGiKO5um .link {
    text-align: center;
  }
}
.cid-t5eGiKO5um .card-title,
.cid-t5eGiKO5um .iconfont-wrapper {
  text-align: left;
  color: #0082c3;
}
.cid-t5eGiKO5um .card-text,
.cid-t5eGiKO5um .link {
  text-align: left;
}
.cid-t5eGTGPz9H {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5eGTGPz9H .pile1,
.cid-t5eGTGPz9H .pile2 {
  padding-bottom: 60px;
}
.cid-t5eGTGPz9H .pile1,
.cid-t5eGTGPz9H .pile3 {
  padding-right: 60px;
}
.cid-t5eGTGPz9H .pile2,
.cid-t5eGTGPz9H .pile4 {
  padding-right: 50px;
}
.cid-t5eGTGPz9H .text {
  display: flex;
  flex-direction: row;
}
.cid-t5eGTGPz9H .card-title {
  margin-bottom: 14px;
}
.cid-t5eGTGPz9H .card-text {
  padding-bottom: 24px;
  font-weight: 500;
}
.cid-t5eGTGPz9H a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t5eGTGPz9H rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t5eGTGPz9H .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t5eGTGPz9H svg {
  margin-left: 15px;
}
.cid-t5eGTGPz9H path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t5eGTGPz9H .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t5eGTGPz9H .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t5eGTGPz9H .link a {
  background-image: none !important;
}
.cid-t5eGTGPz9H img {
  max-width: 140px;
  height: auto;
}
.cid-t5eGTGPz9H .card-text,
.cid-t5eGTGPz9H .lin {
  color: #4c4c4c;
}
@media (max-width: 770px) {
  .cid-t5eGTGPz9H .dir {
    flex-direction: column;
  }
  .cid-t5eGTGPz9H .top {
    padding-top: 60px;
  }
  .cid-t5eGTGPz9H .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .cid-t5eGTGPz9H .top1 {
    padding-top: 60px;
  }
  .cid-t5eGTGPz9H .pile {
    padding-right: 0;
  }
  .cid-t5eGTGPz9H .card-title {
    text-align: center;
  }
  .cid-t5eGTGPz9H .card-text {
    text-align: center;
  }
  .cid-t5eGTGPz9H .iconfont-wrapper {
    text-align: center;
  }
  .cid-t5eGTGPz9H img {
    display: inline;
  }
  .cid-t5eGTGPz9H .link {
    text-align: center;
  }
}
.cid-t5eGTGPz9H .card-title,
.cid-t5eGTGPz9H .iconfont-wrapper {
  color: #0082c3;
  text-align: left;
}
.cid-t5eGTGPz9H .card-text,
.cid-t5eGTGPz9H .link {
  text-align: left;
}
.cid-t5CpOCRIR3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CpOCRIR3 h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CpOCRIR3 p {
  color: #767676;
}
.cid-t5CpOCRIR3 .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CpOCRIR3 .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CpOCRIR3 .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CpOCRIR3 .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CpOCRIR3 .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CpOCRIR3 .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CpOCRIR3 rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CpOCRIR3 .b-descr {
  color: #bc0a14;
}
.cid-t5pUrW1M1n {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5pUrW1M1n .card-wrapper {
  border-radius: 4px;
}
.cid-t5pUrW1M1n .card-subtitle {
  color: #0095ff;
}
.cid-t5pUrW1M1n .mbr-text,
.cid-t5pUrW1M1n .card-subtitle {
  color: #232323;
}
.cid-t5pUrW1M1n img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5pUrW1M1n img {
    margin-bottom: 0.1rem;
  }
}
.cid-t5pUrW1M1n .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5pUrW1M1n .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
  margin-bottom: 0.1rem;
}
.cid-t5pUrW1M1n p {
  padding-bottom: 2px;
}
.cid-t5BraaFW4p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5BraaFW4p .card-wrapper {
  border-radius: 4px;
}
.cid-t5BraaFW4p .card-subtitle {
  color: #0095ff;
}
.cid-t5BraaFW4p .mbr-text,
.cid-t5BraaFW4p .card-subtitle {
  color: #232323;
}
.cid-t5BraaFW4p img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5BraaFW4p img {
    margin-bottom: 1rem;
  }
}
.cid-t5BraaFW4p .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5BraaFW4p .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5pVL3bulZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5pVL3bulZ .card-wrapper {
  border-radius: 4px;
}
.cid-t5pVL3bulZ .card-subtitle {
  color: #0095ff;
}
.cid-t5pVL3bulZ .mbr-text,
.cid-t5pVL3bulZ .card-subtitle {
  color: #232323;
}
.cid-t5pVL3bulZ img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5pVL3bulZ img {
    margin-bottom: 0.1rem;
  }
}
.cid-t5pVL3bulZ .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5pVL3bulZ .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5pVLLVUC3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5pVLLVUC3 .card-wrapper {
  border-radius: 4px;
}
.cid-t5pVLLVUC3 .card-subtitle {
  color: #0095ff;
}
.cid-t5pVLLVUC3 .mbr-text,
.cid-t5pVLLVUC3 .card-subtitle {
  color: #232323;
}
.cid-t5pVLLVUC3 img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5pVLLVUC3 img {
    margin-bottom: 0.1rem;
  }
}
.cid-t5pVLLVUC3 .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5pVLLVUC3 .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5Bq0Nr98J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Bq0Nr98J .card-wrapper {
  border-radius: 4px;
}
.cid-t5Bq0Nr98J .card-subtitle {
  color: #0095ff;
}
.cid-t5Bq0Nr98J .mbr-text,
.cid-t5Bq0Nr98J .card-subtitle {
  color: #232323;
}
.cid-t5Bq0Nr98J img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5Bq0Nr98J img {
    margin-bottom: 1rem;
  }
}
.cid-t5Bq0Nr98J .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5Bq0Nr98J .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5Bq3DgZYt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Bq3DgZYt .card-wrapper {
  border-radius: 4px;
}
.cid-t5Bq3DgZYt .card-subtitle {
  color: #0095ff;
}
.cid-t5Bq3DgZYt .mbr-text,
.cid-t5Bq3DgZYt .card-subtitle {
  color: #232323;
}
.cid-t5Bq3DgZYt img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5Bq3DgZYt img {
    margin-bottom: 1rem;
  }
}
.cid-t5Bq3DgZYt .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5Bq3DgZYt .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5Bq4oVisn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Bq4oVisn .card-wrapper {
  border-radius: 4px;
}
.cid-t5Bq4oVisn .card-subtitle {
  color: #0095ff;
}
.cid-t5Bq4oVisn .mbr-text,
.cid-t5Bq4oVisn .card-subtitle {
  color: #232323;
}
.cid-t5Bq4oVisn img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5Bq4oVisn img {
    margin-bottom: 1rem;
  }
}
.cid-t5Bq4oVisn .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5Bq4oVisn .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5Bq5bQinK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Bq5bQinK .card-wrapper {
  border-radius: 4px;
}
.cid-t5Bq5bQinK .card-subtitle {
  color: #0095ff;
}
.cid-t5Bq5bQinK .mbr-text,
.cid-t5Bq5bQinK .card-subtitle {
  color: #232323;
}
.cid-t5Bq5bQinK img {
  border-radius: 4px;
  width: 130px;
}
@media (max-width: 768px) {
  .cid-t5Bq5bQinK img {
    margin-bottom: 1rem;
  }
}
.cid-t5Bq5bQinK .card .card-wrapper .text-wrapper .card-subtitle,
.cid-t5Bq5bQinK .card .card-wrapper .text-wrapper .mbr-section-btn {
  color: #0082c3;
}
.cid-t5CpMWHMPx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CpMWHMPx hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CpMWHMPx hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CpMWHMPx h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CpMWHMPx .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CpMWHMPx H2 {
  color: #767676;
}
.cid-t5CpNTYTcW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CpNTYTcW hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CpNTYTcW hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CpNTYTcW h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CpNTYTcW .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CpNTYTcW H2 {
  color: #767676;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN1C5K.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN1C5K.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN1C5K.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN1C5K .modal-content,
.cid-t5NmlN1C5K .modal-dialog {
  height: auto;
}
.cid-t5NmlN1C5K .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN1C5K .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN1C5K .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN1C5K .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN1C5K .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN1C5K .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN1C5K .mbr-text {
  text-align: left;
}
.cid-t5NmlN1C5K .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN1C5K .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN1C5K .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN1C5K .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN1C5K .modal-open {
  overflow: hidden;
}
.cid-t5NmlN1C5K .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN1C5K .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN1C5K .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN1C5K .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN1C5K .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN1C5K .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN1C5K .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN1C5K .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN1C5K .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN1C5K .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN1C5K .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN1C5K .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN1C5K .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN1C5K .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1C5K .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN1C5K .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN1C5K .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN1C5K .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN1C5K .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN1C5K .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN1C5K .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN1C5K .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1C5K .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN1C5K .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN1C5K .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1C5K .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN1C5K .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN1C5K .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN1C5K .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN1C5K .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN1C5K .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN1C5K .modal-lg,
  .cid-t5NmlN1C5K .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN1C5K .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN1C5K .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN1C5K .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN1C5K .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN1C5K .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN1C5K .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN1C5K .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN1C5K .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN1C5K .mbr-section-btn .btn {
  margin: 0;
}
.cid-t59PoMAB0N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t59PoMAB0N .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t59PoMAB0N .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t59PoMAB0N .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t59PoMAB0N .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t59PoMAB0N .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t59PpSxml4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59PpSxml4 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59PpSxml4 .mbr-section-title {
  color: #ffffff;
}
.cid-t59PpSxml4 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59PpSxml4 .mbr-section-title,
.cid-t59PpSxml4 .mbr-section-btn {
  text-align: center;
}
.cid-t5CYqwwYPm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5CYqwwYPm .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5CYqwwYPm .mbr-section-title {
  color: #ffffff;
}
.cid-t5CYqwwYPm .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5CYqwwYPm .mbr-section-title,
.cid-t5CYqwwYPm .mbr-section-btn {
  text-align: center;
}
.cid-t5Dr7p26wM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5Dr7p26wM .mbr-section-subtitle {
  color: #169505;
}
.cid-t5Ds9Y9Inm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5Ds9Y9Inm hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Ds9Y9Inm hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Ds9Y9Inm h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Ds9Y9Inm .btn {
  align: left !important;
  padding: 30px 0px !important;
  border-width: 2px !important;
  margin: 0px 30px 5px 0px !important;
  font-size: 1rem !important;
  border-radius: 3px !important;
  width: 180px;
  height: 180px;
  padding-left: 100px;
}
.cid-t5Ds9Y9Inm H2 {
  color: #767676;
}
.cid-t5DYxspQ7i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5DYxspQ7i h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5DYxspQ7i p {
  color: #767676;
}
.cid-t5DYxspQ7i .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5DYxspQ7i .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5DYxspQ7i .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5DYxspQ7i .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5DYxspQ7i .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5DYxspQ7i .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5DYxspQ7i rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5DYxspQ7i .b-descr {
  color: #bc0a14;
}
.cid-t5DzjgMxQ8 {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5DzjgMxQ8 h2 {
  text-align: left;
}
.cid-t5DzjgMxQ8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5DzjgMxQ8 p {
  color: #767676;
  text-align: left;
}
.cid-t5DzjgMxQ8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5DzjgMxQ8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5DzjgMxQ8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5DzjgMxQ8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5DzjgMxQ8 .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5DzjgMxQ8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5DzjgMxQ8 .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5DzjgMxQ8 .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5DzjgMxQ8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5DzjgMxQ8 H4 {
  color: #82786e;
}
.cid-t5Dyqso5em {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Dyqso5em h2 {
  text-align: left;
}
.cid-t5Dyqso5em h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Dyqso5em p {
  color: #767676;
  text-align: left;
}
.cid-t5Dyqso5em .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Dyqso5em .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Dyqso5em .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Dyqso5em .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Dyqso5em .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Dyqso5em .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Dyqso5em .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Dyqso5em .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Dyqso5em .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Dyqso5em H4 {
  color: #82786e;
}
.cid-t5DyAkaHj4 {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5DyAkaHj4 h2 {
  text-align: left;
}
.cid-t5DyAkaHj4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5DyAkaHj4 p {
  color: #767676;
  text-align: left;
}
.cid-t5DyAkaHj4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5DyAkaHj4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5DyAkaHj4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5DyAkaHj4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5DyAkaHj4 .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5DyAkaHj4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5DyAkaHj4 .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5DyAkaHj4 .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5DyAkaHj4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5DyAkaHj4 H4 {
  color: #82786e;
}
.cid-t5Dyz3Ks3R {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Dyz3Ks3R h2 {
  text-align: left;
}
.cid-t5Dyz3Ks3R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Dyz3Ks3R p {
  color: #767676;
  text-align: left;
}
.cid-t5Dyz3Ks3R .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Dyz3Ks3R .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Dyz3Ks3R .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Dyz3Ks3R .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Dyz3Ks3R .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Dyz3Ks3R .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Dyz3Ks3R .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Dyz3Ks3R .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Dyz3Ks3R .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Dyz3Ks3R H4 {
  color: #82786e;
}
.cid-t5Dyysj60w {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Dyysj60w h2 {
  text-align: left;
}
.cid-t5Dyysj60w h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Dyysj60w p {
  color: #767676;
  text-align: left;
}
.cid-t5Dyysj60w .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Dyysj60w .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Dyysj60w .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Dyysj60w .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Dyysj60w .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Dyysj60w .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Dyysj60w .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Dyysj60w .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Dyysj60w .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Dyysj60w H4 {
  color: #82786e;
}
.cid-t5DyzA6Fhk {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5DyzA6Fhk h2 {
  text-align: left;
}
.cid-t5DyzA6Fhk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5DyzA6Fhk p {
  color: #767676;
  text-align: left;
}
.cid-t5DyzA6Fhk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5DyzA6Fhk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5DyzA6Fhk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5DyzA6Fhk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5DyzA6Fhk .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5DyzA6Fhk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5DyzA6Fhk .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5DyzA6Fhk .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5DyzA6Fhk .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5DyzA6Fhk H4 {
  color: #82786e;
}
.cid-t5Cq9eSsnY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cq9eSsnY hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Cq9eSsnY hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Cq9eSsnY h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Cq9eSsnY .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Cq9eSsnY H2 {
  color: #767676;
}
.cid-t5Cqa4TKLD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5Cqa4TKLD hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Cqa4TKLD hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Cqa4TKLD h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Cqa4TKLD .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Cqa4TKLD H2 {
  color: #767676;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN1tOW.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN1tOW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN1tOW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN1tOW .modal-content,
.cid-t5NmlN1tOW .modal-dialog {
  height: auto;
}
.cid-t5NmlN1tOW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN1tOW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN1tOW .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN1tOW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN1tOW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN1tOW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN1tOW .mbr-text {
  text-align: left;
}
.cid-t5NmlN1tOW .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN1tOW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN1tOW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN1tOW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN1tOW .modal-open {
  overflow: hidden;
}
.cid-t5NmlN1tOW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN1tOW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN1tOW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN1tOW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN1tOW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN1tOW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN1tOW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN1tOW .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN1tOW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN1tOW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN1tOW .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN1tOW .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN1tOW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN1tOW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1tOW .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN1tOW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN1tOW .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN1tOW .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN1tOW .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN1tOW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN1tOW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN1tOW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1tOW .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN1tOW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN1tOW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1tOW .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN1tOW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN1tOW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN1tOW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN1tOW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN1tOW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN1tOW .modal-lg,
  .cid-t5NmlN1tOW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN1tOW .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN1tOW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN1tOW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN1tOW .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN1tOW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN1tOW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN1tOW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN1tOW .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN1tOW .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5eB0w5kFh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5eB0w5kFh .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5eB0w5kFh .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5eB0w5kFh .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5eB0w5kFh .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5eB0w5kFh .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5eB2rZLbN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5eB2rZLbN .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5eB2rZLbN .mbr-section-title {
  color: #ffffff;
}
.cid-t5eB2rZLbN .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5eB2rZLbN .mbr-section-title,
.cid-t5eB2rZLbN .mbr-section-btn {
  text-align: center;
}
.cid-sxzLtbMlZ7 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sxzLtbMlZ7 .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-sxzLtbMlZ7 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sxzLtbMlZ7 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sxzLtbMlZ7 .form-group {
  padding-right: 0;
}
.cid-sxzLtbMlZ7 .card {
  padding: 3rem 8rem;
}
.cid-sxzLtbMlZ7 .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-sxzLtbMlZ7 .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-sxzLtbMlZ7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sxzLtbMlZ7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sxzLtbMlZ7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sxzLtbMlZ7 .map-placeholder {
  display: none;
}
.cid-sxzLtbMlZ7 .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-sxzLtbMlZ7 .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-sxzLtbMlZ7 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sxzLtbMlZ7 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sxzLtbMlZ7 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sxzLtbMlZ7 .mbr-text {
  color: #444;
}
.cid-sxzLtbMlZ7 h5 {
  margin-bottom: 0;
}
.cid-sxzLtbMlZ7 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sxzLtbMlZ7 .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sxzLtbMlZ7 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sxzLtbMlZ7 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sxzLtbMlZ7 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sxzLtbMlZ7 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sxzLtbMlZ7 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sxzLtbMlZ7 .social-list a:hover {
  opacity: 0.4;
}
.cid-sxzLtbMlZ7 .media-container-row > div {
  padding: 0px;
}
.cid-sxzLtbMlZ7 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sxzLtbMlZ7 .group-title {
  text-align: left;
  color: #e43f3f;
  padding-bottom: 0.2rem;
}
.cid-sxzLtbMlZ7 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-sxzLtbMlZ7 .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-sxzLtbMlZ7 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sxzLtbMlZ7 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sxzLtbMlZ7 .form-group {
    max-width: 180px;
  }
  .cid-sxzLtbMlZ7 .card {
    padding: 2rem 1rem;
  }
}
.cid-sxzLtbMlZ7 .links span {
  color: #9e9e9e;
}
.cid-sxzLtbMlZ7 .logo-title,
.cid-sxzLtbMlZ7 .logo-sub-title {
  text-align: center;
}
.cid-sxzLtbMlZ7 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sxzLtbMlZ7 line {
  line-height: 32px;
}
.cid-syeqteHCvO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syeqteHCvO .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-syeqteHCvO .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-syeqteHCvO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-syeqteHCvO .inner-container {
    width: 100% !important;
  }
}
.cid-syeqteHCvO schwarz {
  color: #000000;
  font-size: 26px;
  line-height: 22px;
}
.cid-syequ8qNCm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syequ8qNCm h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-syequ8qNCm p {
  color: #767676;
}
.cid-syequ8qNCm .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-syequ8qNCm .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-syequ8qNCm .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-syequ8qNCm .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-syequ8qNCm .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-syequ8qNCm .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-syequ8qNCm rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-syequ8qNCm .b-descr {
  color: #bc0a14;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN1fcK.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN1fcK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN1fcK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN1fcK .modal-content,
.cid-t5NmlN1fcK .modal-dialog {
  height: auto;
}
.cid-t5NmlN1fcK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN1fcK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN1fcK .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN1fcK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN1fcK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN1fcK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN1fcK .mbr-text {
  text-align: left;
}
.cid-t5NmlN1fcK .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN1fcK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN1fcK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN1fcK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN1fcK .modal-open {
  overflow: hidden;
}
.cid-t5NmlN1fcK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN1fcK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN1fcK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN1fcK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN1fcK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN1fcK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN1fcK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN1fcK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN1fcK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN1fcK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN1fcK .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN1fcK .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN1fcK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN1fcK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1fcK .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN1fcK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN1fcK .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN1fcK .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN1fcK .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN1fcK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN1fcK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN1fcK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1fcK .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN1fcK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN1fcK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN1fcK .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN1fcK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN1fcK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN1fcK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN1fcK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN1fcK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN1fcK .modal-lg,
  .cid-t5NmlN1fcK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN1fcK .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN1fcK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN1fcK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN1fcK .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN1fcK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN1fcK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN1fcK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN1fcK .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN1fcK .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5eBkF30EB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5eBkF30EB .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5eBkF30EB .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5eBkF30EB .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5eBkF30EB .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5eBkF30EB .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5eBlxSLQd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5eBlxSLQd .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5eBlxSLQd .mbr-section-title {
  color: #ffffff;
}
.cid-t5eBlxSLQd .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5eBlxSLQd .mbr-section-title,
.cid-t5eBlxSLQd .mbr-section-btn {
  text-align: center;
}
.cid-t5eCmMQ6bs {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5eCmMQ6bs .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5eCmMQ6bs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5eCmMQ6bs .mbr-section-title {
  text-align: left;
  color: #0082c3;
}
.cid-t5eDqPLnki {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5eDqPLnki h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5eDqPLnki p {
  color: #767676;
}
.cid-t5eDqPLnki .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5eDqPLnki .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5eDqPLnki .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5eDqPLnki .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5eDqPLnki .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5eDqPLnki .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5eDqPLnki rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5eDqPLnki .b-descr {
  color: #bc0a14;
}
.cid-t5eCK07Dw0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5eCK07Dw0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5eCK07Dw0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5eCK07Dw0 .mbr-section-title {
  text-align: left;
  color: #0082c3;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN2kjS.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN2kjS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN2kjS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN2kjS .modal-content,
.cid-t5NmlN2kjS .modal-dialog {
  height: auto;
}
.cid-t5NmlN2kjS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN2kjS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN2kjS .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN2kjS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN2kjS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN2kjS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN2kjS .mbr-text {
  text-align: left;
}
.cid-t5NmlN2kjS .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN2kjS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN2kjS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN2kjS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN2kjS .modal-open {
  overflow: hidden;
}
.cid-t5NmlN2kjS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN2kjS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN2kjS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN2kjS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN2kjS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN2kjS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN2kjS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN2kjS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN2kjS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN2kjS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN2kjS .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN2kjS .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN2kjS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN2kjS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2kjS .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN2kjS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN2kjS .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN2kjS .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN2kjS .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN2kjS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN2kjS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN2kjS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2kjS .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN2kjS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN2kjS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2kjS .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN2kjS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN2kjS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN2kjS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN2kjS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN2kjS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN2kjS .modal-lg,
  .cid-t5NmlN2kjS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN2kjS .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN2kjS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN2kjS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN2kjS .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN2kjS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN2kjS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN2kjS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN2kjS .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN2kjS .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5eDCrsWrU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5eDCrsWrU .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5eDCrsWrU .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5eDCrsWrU .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5eDCrsWrU .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5eDCrsWrU .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5eDDgx0vL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5eDDgx0vL .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5eDDgx0vL .mbr-section-title {
  color: #ffffff;
}
.cid-t5eDDgx0vL .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5eDDgx0vL .mbr-section-title,
.cid-t5eDDgx0vL .mbr-section-btn {
  text-align: center;
}
.cid-sxAutoYy27 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxAutoYy27 .mbr-section-subtitle {
  color: #0082c3;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN2iJ8.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN2iJ8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN2iJ8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN2iJ8 .modal-content,
.cid-t5NmlN2iJ8 .modal-dialog {
  height: auto;
}
.cid-t5NmlN2iJ8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN2iJ8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN2iJ8 .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN2iJ8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN2iJ8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN2iJ8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN2iJ8 .mbr-text {
  text-align: left;
}
.cid-t5NmlN2iJ8 .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN2iJ8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN2iJ8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN2iJ8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN2iJ8 .modal-open {
  overflow: hidden;
}
.cid-t5NmlN2iJ8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN2iJ8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN2iJ8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN2iJ8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN2iJ8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN2iJ8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN2iJ8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN2iJ8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN2iJ8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN2iJ8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN2iJ8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN2iJ8 .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN2iJ8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN2iJ8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2iJ8 .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN2iJ8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN2iJ8 .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN2iJ8 .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN2iJ8 .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN2iJ8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN2iJ8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN2iJ8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2iJ8 .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN2iJ8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN2iJ8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2iJ8 .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN2iJ8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN2iJ8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN2iJ8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN2iJ8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN2iJ8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN2iJ8 .modal-lg,
  .cid-t5NmlN2iJ8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN2iJ8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN2iJ8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN2iJ8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN2iJ8 .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN2iJ8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN2iJ8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN2iJ8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN2iJ8 .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN2iJ8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5a5hEDvS8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5a5hEDvS8 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5a5hEDvS8 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5a5hEDvS8 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5a5hEDvS8 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5a5hEDvS8 .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5a5jvNXSn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/desktop-video.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a5jvNXSn .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a5jvNXSn .mbr-section-title {
  color: #ffffff;
}
.cid-t5a5jvNXSn .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a5jvNXSn .mbr-section-title,
.cid-t5a5jvNXSn .mbr-section-btn {
  text-align: center;
}
.cid-t5a80pLKEb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/handy-vidoo222.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a80pLKEb .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a80pLKEb .mbr-section-title {
  color: #ffffff;
}
.cid-t5a80pLKEb .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a80pLKEb .mbr-section-title,
.cid-t5a80pLKEb .mbr-section-btn {
  text-align: center;
}
.cid-sDk389H1gW {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sDk389H1gW .mbr-overlay {
  background: #efefef;
}
.cid-sDk389H1gW .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-sDk389H1gW .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-sDk389H1gW .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #dadfe9;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sDk389H1gW .mbr-text {
  color: #8d97ad;
}
.cid-sDk389H1gW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sDk389H1gW .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-sDk389H1gW .card-title {
    text-align: center;
  }
  .cid-sDk389H1gW p.mbr-text,
  .cid-sDk389H1gW p.date {
    text-align: center;
  }
}
.cid-sDk389H1gW H2 {
  color: #169505;
}
.cid-t5CdQLZGpk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CdQLZGpk h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CdQLZGpk p {
  color: #767676;
}
.cid-t5CdQLZGpk .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CdQLZGpk .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CdQLZGpk .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CdQLZGpk .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CdQLZGpk .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CdQLZGpk .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CdQLZGpk rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CdQLZGpk .b-descr {
  color: #bc0a14;
}
.cid-t5CdN2qSIM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CdN2qSIM hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CdN2qSIM hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CdN2qSIM h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CdN2qSIM .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CdN2qSIM H2 {
  color: #767676;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5CdNO0Svl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CdNO0Svl hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CdNO0Svl hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CdNO0Svl h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CdNO0Svl .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CdNO0Svl H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN2iyq.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN2iyq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN2iyq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN2iyq .modal-content,
.cid-t5NmlN2iyq .modal-dialog {
  height: auto;
}
.cid-t5NmlN2iyq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN2iyq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN2iyq .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN2iyq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN2iyq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN2iyq .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN2iyq .mbr-text {
  text-align: left;
}
.cid-t5NmlN2iyq .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN2iyq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN2iyq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN2iyq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN2iyq .modal-open {
  overflow: hidden;
}
.cid-t5NmlN2iyq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN2iyq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN2iyq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN2iyq .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN2iyq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN2iyq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN2iyq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN2iyq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN2iyq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN2iyq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN2iyq .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN2iyq .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN2iyq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN2iyq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2iyq .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN2iyq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN2iyq .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN2iyq .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN2iyq .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN2iyq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN2iyq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN2iyq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2iyq .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN2iyq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN2iyq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2iyq .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN2iyq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN2iyq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN2iyq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN2iyq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN2iyq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN2iyq .modal-lg,
  .cid-t5NmlN2iyq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN2iyq .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN2iyq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN2iyq .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN2iyq .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN2iyq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN2iyq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN2iyq .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN2iyq .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN2iyq .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5bgRDigUP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5bgRDigUP .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5bgRDigUP .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5bgRDigUP .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5bgRDigUP .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5bgRDigUP .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5bgUTIzNt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/desktop-video.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5bgUTIzNt .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5bgUTIzNt .mbr-section-title {
  color: #ffffff;
}
.cid-t5bgUTIzNt .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5bgUTIzNt .mbr-section-title,
.cid-t5bgUTIzNt .mbr-section-btn {
  text-align: center;
}
.cid-t5Dn6xyBl9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5Dn6xyBl9 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5Dn6xyBl9 .mbr-section-title {
  color: #ffffff;
}
.cid-t5Dn6xyBl9 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5Dn6xyBl9 .mbr-section-title,
.cid-t5Dn6xyBl9 .mbr-section-btn {
  text-align: center;
}
.cid-t5bhWppnEa {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}
.cid-t5bhWppnEa .item-wrapper {
  width: 100%;
}
.cid-t5bhWppnEa .left-side {
  text-align: left;
  padding-right: 45px;
  margin: auto;
}
.cid-t5bhWppnEa .mbr-section-btn {
  margin: 0 0px;
}
.cid-t5bhWppnEa .row {
  align-items: center;
}
.cid-t5bhWppnEa .mbr-section-title {
  margin: 0 0;
  color: #353535;
  font-weight: 700;
}
.cid-t5bhWppnEa .mbr-text {
  padding: 0;
  margin-top: 26px;
  color: #4c4c4c;
  font-weight: 500;
  width: 100%;
  line-height: 33px;
}
.cid-t5bhWppnEa .mbr-section-subtitle {
  color: #169505;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t5bhWppnEa .button-align {
  margin-top: 36px;
  width: 100%;
}
.cid-t5bhWppnEa .right-side {
  padding: 0;
}
.cid-t5bhWppnEa .align {
  padding-right: 50px;
}
@media (max-width: 990px) {
  .cid-t5bhWppnEa .left-side {
    padding: 0;
  }
}
.cid-t5bhWppnEa .mbr-text,
.cid-t5bhWppnEa .button-align {
  color: #b2b2b2;
}
.cid-t5bhWppnEa fett {
  font-weight: bold;
  color: #EBBC00;
}
.cid-t5bhWppnEa t1 {
  font-weight: bold;
  font-size: 28px;
}
.cid-t5bhWppnEa .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5DmWDMJdl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5DmWDMJdl h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5DmWDMJdl p {
  color: #767676;
}
.cid-t5DmWDMJdl .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5DmWDMJdl .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5DmWDMJdl .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5DmWDMJdl .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5DmWDMJdl .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5DmWDMJdl .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5DmWDMJdl rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5DmWDMJdl .b-descr {
  color: #bc0a14;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5DmVkKqQd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5DmVkKqQd hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5DmVkKqQd hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5DmVkKqQd h2 {
  float: left;
  color: #0082c3;
}
.cid-t5DmVkKqQd .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5DmVkKqQd H2 {
  color: #767676;
}
.cid-t5DmVXSzHx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5DmVXSzHx hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5DmVXSzHx hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5DmVXSzHx h2 {
  float: left;
  color: #0082c3;
}
.cid-t5DmVXSzHx .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5DmVXSzHx H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN2XUi.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN2XUi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN2XUi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN2XUi .modal-content,
.cid-t5NmlN2XUi .modal-dialog {
  height: auto;
}
.cid-t5NmlN2XUi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN2XUi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN2XUi .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN2XUi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN2XUi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN2XUi .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN2XUi .mbr-text {
  text-align: left;
}
.cid-t5NmlN2XUi .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN2XUi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN2XUi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN2XUi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN2XUi .modal-open {
  overflow: hidden;
}
.cid-t5NmlN2XUi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN2XUi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN2XUi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN2XUi .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN2XUi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN2XUi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN2XUi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN2XUi .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN2XUi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN2XUi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN2XUi .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN2XUi .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN2XUi .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN2XUi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2XUi .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN2XUi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN2XUi .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN2XUi .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN2XUi .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN2XUi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN2XUi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN2XUi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2XUi .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN2XUi .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN2XUi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2XUi .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN2XUi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN2XUi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN2XUi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN2XUi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN2XUi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN2XUi .modal-lg,
  .cid-t5NmlN2XUi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN2XUi .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN2XUi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN2XUi .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN2XUi .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN2XUi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN2XUi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN2XUi .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN2XUi .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN2XUi .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5a8uCF0LS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5a8uCF0LS .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5a8uCF0LS .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5a8uCF0LS .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5a8uCF0LS .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5a8uCF0LS .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5a8ERmkM9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/desktop-video.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a8ERmkM9 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a8ERmkM9 .mbr-section-title {
  color: #ffffff;
}
.cid-t5a8ERmkM9 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a8ERmkM9 .mbr-section-title,
.cid-t5a8ERmkM9 .mbr-section-btn {
  text-align: center;
}
.cid-t5a8Pt7ws5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/handy-vidoo222.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a8Pt7ws5 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a8Pt7ws5 .mbr-section-title {
  color: #ffffff;
}
.cid-t5a8Pt7ws5 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a8Pt7ws5 .mbr-section-title,
.cid-t5a8Pt7ws5 .mbr-section-btn {
  text-align: center;
}
.cid-sCK19nfl1R {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sCK19nfl1R .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCK19nfl1R .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCK19nfl1R .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCK19nfl1R .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCK19nfl1R .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0e47ae;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #0e47ae, #f9f9f9);
}
.cid-sCK19nfl1R .icon-focus,
.cid-sCK19nfl1R .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sCK19nfl1R .icon-focus:before,
.cid-sCK19nfl1R .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCK19nfl1R .icon-video {
  font-size: 1.5rem !important;
}
.cid-sCK19nfl1R .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sCK19nfl1R ul {
  font-size: 0;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sCK19nfl1R .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li:first-child,
.cid-sCK19nfl1R .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sCK19nfl1R .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sCK19nfl1R .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sCK19nfl1R .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sCK19nfl1R .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sCK19nfl1R .mbr-section-title b:last-child,
.cid-sCK19nfl1R .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sCK19nfl1R .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sCK19nfl1R .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sCGVCmvze8 {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sCGVCmvze8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCGVCmvze8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCGVCmvze8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCGVCmvze8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCGVCmvze8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0e47ae;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #0e47ae, #0ea729);
}
.cid-sCGVCmvze8 .icon-focus,
.cid-sCGVCmvze8 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sCGVCmvze8 .icon-focus:before,
.cid-sCGVCmvze8 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCGVCmvze8 .icon-video {
  font-size: 1.5rem !important;
}
.cid-sCGVCmvze8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sCGVCmvze8 ul {
  font-size: 0;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sCGVCmvze8 .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li:first-child,
.cid-sCGVCmvze8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sCGVCmvze8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sCGVCmvze8 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sCGVCmvze8 .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sCGVCmvze8 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sCGVCmvze8 .mbr-section-title b:last-child,
.cid-sCGVCmvze8 .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sCGVCmvze8 .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sCGVCmvze8 .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sCGVG4qA9Z {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sCGVG4qA9Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCGVG4qA9Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCGVG4qA9Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCGVG4qA9Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCGVG4qA9Z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0e47ae;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #0e47ae, #0ea729);
}
.cid-sCGVG4qA9Z .icon-focus,
.cid-sCGVG4qA9Z .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sCGVG4qA9Z .icon-focus:before,
.cid-sCGVG4qA9Z .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCGVG4qA9Z .icon-video {
  font-size: 1.5rem !important;
}
.cid-sCGVG4qA9Z .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sCGVG4qA9Z ul {
  font-size: 0;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li:first-child,
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sCGVG4qA9Z .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sCGVG4qA9Z .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sCGVG4qA9Z .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sCGVG4qA9Z .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sCGVG4qA9Z .mbr-section-title b:last-child,
.cid-sCGVG4qA9Z .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sCGVG4qA9Z .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sCGXl9jRHv {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sCGXl9jRHv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCGXl9jRHv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCGXl9jRHv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCGXl9jRHv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCGXl9jRHv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0e47ae;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #0e47ae, #0ea729);
}
.cid-sCGXl9jRHv .icon-focus,
.cid-sCGXl9jRHv .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sCGXl9jRHv .icon-focus:before,
.cid-sCGXl9jRHv .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCGXl9jRHv .icon-video {
  font-size: 1.5rem !important;
}
.cid-sCGXl9jRHv .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sCGXl9jRHv ul {
  font-size: 0;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sCGXl9jRHv .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li:first-child,
.cid-sCGXl9jRHv .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sCGXl9jRHv .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sCGXl9jRHv .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sCGXl9jRHv .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sCGXl9jRHv .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sCGXl9jRHv .mbr-section-title b:last-child,
.cid-sCGXl9jRHv .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sCGXl9jRHv .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sCGXl9jRHv .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sCGXl9jRHv .mbr-section-subtitle {
  text-align: left;
}
.cid-sCJWqGpLp3 {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sCJWqGpLp3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCJWqGpLp3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCJWqGpLp3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCJWqGpLp3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCJWqGpLp3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0e47ae;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #0e47ae, #0ea729);
}
.cid-sCJWqGpLp3 .icon-focus,
.cid-sCJWqGpLp3 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sCJWqGpLp3 .icon-focus:before,
.cid-sCJWqGpLp3 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCJWqGpLp3 .icon-video {
  font-size: 1.5rem !important;
}
.cid-sCJWqGpLp3 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sCJWqGpLp3 ul {
  font-size: 0;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li:first-child,
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sCJWqGpLp3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sCJWqGpLp3 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sCJWqGpLp3 .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sCJWqGpLp3 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sCJWqGpLp3 .mbr-section-title b:last-child,
.cid-sCJWqGpLp3 .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sCJWqGpLp3 .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sCJXF3Rjlv {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sCJXF3Rjlv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCJXF3Rjlv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCJXF3Rjlv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCJXF3Rjlv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCJXF3Rjlv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0e47ae;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #0e47ae, #0ea729);
}
.cid-sCJXF3Rjlv .icon-focus,
.cid-sCJXF3Rjlv .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sCJXF3Rjlv .icon-focus:before,
.cid-sCJXF3Rjlv .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCJXF3Rjlv .icon-video {
  font-size: 1.5rem !important;
}
.cid-sCJXF3Rjlv .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sCJXF3Rjlv ul {
  font-size: 0;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li:first-child,
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sCJXF3Rjlv .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sCJXF3Rjlv .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sCJXF3Rjlv .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sCJXF3Rjlv .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sCJXF3Rjlv .mbr-section-title b:last-child,
.cid-sCJXF3Rjlv .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sCJXF3Rjlv .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5Ce0BUBhr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Ce0BUBhr h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5Ce0BUBhr p {
  color: #767676;
}
.cid-t5Ce0BUBhr .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5Ce0BUBhr .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5Ce0BUBhr .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5Ce0BUBhr .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5Ce0BUBhr .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5Ce0BUBhr .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5Ce0BUBhr rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5Ce0BUBhr .b-descr {
  color: #bc0a14;
}
.cid-t5Ce286uGg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Ce286uGg hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Ce286uGg hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Ce286uGg h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Ce286uGg .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Ce286uGg H2 {
  color: #767676;
}
.cid-t5Ce3d2ZoO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5Ce3d2ZoO hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Ce3d2ZoO hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Ce3d2ZoO h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Ce3d2ZoO .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Ce3d2ZoO H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN2EkR.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN2EkR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN2EkR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN2EkR .modal-content,
.cid-t5NmlN2EkR .modal-dialog {
  height: auto;
}
.cid-t5NmlN2EkR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN2EkR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN2EkR .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN2EkR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN2EkR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN2EkR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN2EkR .mbr-text {
  text-align: left;
}
.cid-t5NmlN2EkR .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN2EkR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN2EkR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN2EkR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN2EkR .modal-open {
  overflow: hidden;
}
.cid-t5NmlN2EkR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN2EkR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN2EkR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN2EkR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN2EkR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN2EkR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN2EkR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN2EkR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN2EkR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN2EkR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN2EkR .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN2EkR .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN2EkR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN2EkR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2EkR .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN2EkR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN2EkR .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN2EkR .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN2EkR .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN2EkR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN2EkR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN2EkR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2EkR .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN2EkR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN2EkR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2EkR .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN2EkR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN2EkR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN2EkR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN2EkR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN2EkR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN2EkR .modal-lg,
  .cid-t5NmlN2EkR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN2EkR .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN2EkR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN2EkR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN2EkR .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN2EkR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN2EkR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN2EkR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN2EkR .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN2EkR .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5a9uSK0ck {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5a9uSK0ck .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5a9uSK0ck .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5a9uSK0ck .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5a9uSK0ck .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5a9uSK0ck .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5a9x0cNG5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/desktop-video.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a9x0cNG5 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a9x0cNG5 .mbr-section-title {
  color: #ffffff;
}
.cid-t5a9x0cNG5 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a9x0cNG5 .mbr-section-title,
.cid-t5a9x0cNG5 .mbr-section-btn {
  text-align: center;
}
.cid-t5a9FFx7R5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/handy-vidoo222.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5a9FFx7R5 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5a9FFx7R5 .mbr-section-title {
  color: #ffffff;
}
.cid-t5a9FFx7R5 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5a9FFx7R5 .mbr-section-title,
.cid-t5a9FFx7R5 .mbr-section-btn {
  text-align: center;
}
.cid-t5Cs9NP59e {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Cs9NP59e h2 {
  text-align: left;
}
.cid-t5Cs9NP59e h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cs9NP59e p {
  color: #767676;
  text-align: left;
}
.cid-t5Cs9NP59e .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cs9NP59e .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cs9NP59e .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cs9NP59e .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cs9NP59e .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cs9NP59e .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cs9NP59e .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cs9NP59e .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cs9NP59e .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cs9NP59e H4 {
  color: #0082c3;
}
.cid-t5Cu39Opxq {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cu39Opxq h2 {
  text-align: left;
}
.cid-t5Cu39Opxq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu39Opxq p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu39Opxq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu39Opxq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu39Opxq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu39Opxq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu39Opxq .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu39Opxq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu39Opxq .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu39Opxq .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu39Opxq .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu39Opxq H4 {
  color: #0082c3;
}
.cid-t5Cu6QtBSY {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Cu6QtBSY h2 {
  text-align: left;
}
.cid-t5Cu6QtBSY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu6QtBSY p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu6QtBSY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu6QtBSY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu6QtBSY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu6QtBSY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu6QtBSY .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu6QtBSY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu6QtBSY .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu6QtBSY .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu6QtBSY .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu6QtBSY H4 {
  color: #0082c3;
}
.cid-t5Cu82J2AB {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cu82J2AB h2 {
  text-align: left;
}
.cid-t5Cu82J2AB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu82J2AB p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu82J2AB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu82J2AB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu82J2AB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu82J2AB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu82J2AB .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu82J2AB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu82J2AB .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu82J2AB .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu82J2AB .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu82J2AB H4 {
  color: #0082c3;
}
.cid-t5Cu4ws1h8 {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Cu4ws1h8 h2 {
  text-align: left;
}
.cid-t5Cu4ws1h8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu4ws1h8 p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu4ws1h8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu4ws1h8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu4ws1h8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu4ws1h8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu4ws1h8 .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu4ws1h8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu4ws1h8 .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu4ws1h8 .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu4ws1h8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu4ws1h8 H4 {
  color: #0082c3;
}
.cid-t5Cu5ASjvy {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cu5ASjvy h2 {
  text-align: left;
}
.cid-t5Cu5ASjvy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu5ASjvy p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu5ASjvy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu5ASjvy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu5ASjvy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu5ASjvy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu5ASjvy .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu5ASjvy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu5ASjvy .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu5ASjvy .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu5ASjvy .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu5ASjvy H4 {
  color: #0082c3;
}
.cid-t5Cu8MI1jB {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t5Cu8MI1jB h2 {
  text-align: left;
}
.cid-t5Cu8MI1jB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu8MI1jB p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu8MI1jB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu8MI1jB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu8MI1jB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu8MI1jB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu8MI1jB .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu8MI1jB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu8MI1jB .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu8MI1jB .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu8MI1jB .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu8MI1jB H4 {
  color: #0082c3;
}
.cid-t5Cu9FOkxC {
  padding-top: 9px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cu9FOkxC h2 {
  text-align: left;
}
.cid-t5Cu9FOkxC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t5Cu9FOkxC p {
  color: #767676;
  text-align: left;
}
.cid-t5Cu9FOkxC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t5Cu9FOkxC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t5Cu9FOkxC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5Cu9FOkxC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t5Cu9FOkxC .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t5Cu9FOkxC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t5Cu9FOkxC .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t5Cu9FOkxC .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t5Cu9FOkxC .card-img span {
    font-size: 40px !important;
  }
}
.cid-t5Cu9FOkxC H4 {
  color: #0082c3;
}
.cid-t5b1AFkgdd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-t5b1AFkgdd .container {
    max-width: 1400px;
  }
}
.cid-t5b1AFkgdd img {
  margin-bottom: -2.5rem;
  border-radius: 0%;
  width: 200px;
  height: 200px;
  transform: translateY(-100px);
  object-fit: cover;
}
.cid-t5b1AFkgdd .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-t5b1AFkgdd .card-wrapper {
  background: #f6f3ee;
  background-position: center;
  padding: 0 4rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
@media (max-width: 1400px) {
  .cid-t5b1AFkgdd .card-wrapper {
    padding: 0 1.5rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5b1AFkgdd .card-wrapper {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }
}
.cid-t5b1AFkgdd .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #169505;
}
.cid-t5b1AFkgdd .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-t5b1AFkgdd .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-t5b1AFkgdd .card-subtitle {
  color: #200960;
}
.cid-t5b1AFkgdd .mbr-price {
  color: #232323;
}
.cid-t5b1AFkgdd .mbr-section-subtitle {
  color: #22a5e5;
}
.cid-t5b1AFkgdd .mbr-text,
.cid-t5b1AFkgdd .link-align {
  color: #999999;
  text-align: center;
}
.cid-t5baddJlLr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-t5baddJlLr .container {
    max-width: 1400px;
  }
}
.cid-t5baddJlLr img {
  margin-bottom: -2.5rem;
  border-radius: 0%;
  width: 200px;
  height: 200px;
  transform: translateY(-100px);
  object-fit: cover;
}
.cid-t5baddJlLr .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-t5baddJlLr .card-wrapper {
  background: #f6f3ee;
  background-position: center;
  padding: 0 4rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
@media (max-width: 1400px) {
  .cid-t5baddJlLr .card-wrapper {
    padding: 0 1.5rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5baddJlLr .card-wrapper {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }
}
.cid-t5baddJlLr .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #169505;
}
.cid-t5baddJlLr .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-t5baddJlLr .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-t5baddJlLr .card-subtitle {
  color: #200960;
}
.cid-t5baddJlLr .mbr-price {
  color: #232323;
}
.cid-t5baddJlLr .mbr-section-subtitle {
  color: #22a5e5;
}
.cid-t5baddJlLr .mbr-text,
.cid-t5baddJlLr .link-align {
  color: #999999;
  text-align: center;
}
.cid-t5Cei19CWa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cei19CWa h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5Cei19CWa p {
  color: #767676;
}
.cid-t5Cei19CWa .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5Cei19CWa .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5Cei19CWa .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5Cei19CWa .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5Cei19CWa .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5Cei19CWa .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5Cei19CWa rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5Cei19CWa .b-descr {
  color: #bc0a14;
}
.cid-t5CeeL2Kaz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CeeL2Kaz hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CeeL2Kaz hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CeeL2Kaz h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CeeL2Kaz .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CeeL2Kaz H2 {
  color: #767676;
}
.cid-t5CegZCxgq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CegZCxgq hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CegZCxgq hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CegZCxgq h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CegZCxgq .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CegZCxgq H2 {
  color: #767676;
}
.cid-t5aXKtl09P.popup-builder {
  background-color: #ffffff;
}
.cid-t5aXKtl09P.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5aXKtl09P.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5aXKtl09P .modal-content,
.cid-t5aXKtl09P .modal-dialog {
  height: auto;
}
.cid-t5aXKtl09P .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5aXKtl09P .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5aXKtl09P .form-wrapper .mbr-form .form-group,
  .cid-t5aXKtl09P .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5aXKtl09P .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5aXKtl09P .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5aXKtl09P .mbr-text {
  text-align: center;
}
.cid-t5aXKtl09P .pt-0 {
  padding-top: 0 !important;
}
.cid-t5aXKtl09P .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5aXKtl09P .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5aXKtl09P .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5aXKtl09P .modal-open {
  overflow: hidden;
}
.cid-t5aXKtl09P .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5aXKtl09P .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5aXKtl09P .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5aXKtl09P .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5aXKtl09P .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5aXKtl09P .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5aXKtl09P .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5aXKtl09P .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5aXKtl09P .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5aXKtl09P .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5aXKtl09P .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5aXKtl09P .modal-backdrop.show {
  opacity: .5;
}
.cid-t5aXKtl09P .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5aXKtl09P .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5aXKtl09P .modal-header {
    padding: 1rem;
  }
}
.cid-t5aXKtl09P .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5aXKtl09P .modal-header .close svg {
  fill: #353535;
}
.cid-t5aXKtl09P .modal-header .close:hover {
  opacity: 1;
}
.cid-t5aXKtl09P .modal-header .close:focus {
  outline: none;
}
.cid-t5aXKtl09P .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5aXKtl09P .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5aXKtl09P .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5aXKtl09P .modal-body {
    padding: 1rem;
  }
}
.cid-t5aXKtl09P .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5aXKtl09P .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5aXKtl09P .modal-footer {
    padding: 1rem;
  }
}
.cid-t5aXKtl09P .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5aXKtl09P .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5aXKtl09P .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5aXKtl09P .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5aXKtl09P .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5aXKtl09P .modal-lg,
  .cid-t5aXKtl09P .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5aXKtl09P .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5aXKtl09P .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5aXKtl09P .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5aXKtl09P .form-group {
  margin-bottom: 1rem;
}
.cid-t5aXKtl09P .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5aXKtl09P .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5aXKtl09P .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5aXKtl09P .mbr-section-btn {
  margin: 0;
}
.cid-t5aXKtl09P .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5b3uUFCuK.popup-builder {
  background-color: #ffffff;
}
.cid-t5b3uUFCuK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5b3uUFCuK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5b3uUFCuK .modal-content,
.cid-t5b3uUFCuK .modal-dialog {
  height: auto;
}
.cid-t5b3uUFCuK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5b3uUFCuK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5b3uUFCuK .form-wrapper .mbr-form .form-group,
  .cid-t5b3uUFCuK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5b3uUFCuK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5b3uUFCuK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5b3uUFCuK .mbr-text {
  text-align: center;
}
.cid-t5b3uUFCuK .pt-0 {
  padding-top: 0 !important;
}
.cid-t5b3uUFCuK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5b3uUFCuK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5b3uUFCuK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5b3uUFCuK .modal-open {
  overflow: hidden;
}
.cid-t5b3uUFCuK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5b3uUFCuK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5b3uUFCuK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5b3uUFCuK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5b3uUFCuK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5b3uUFCuK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5b3uUFCuK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5b3uUFCuK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5b3uUFCuK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5b3uUFCuK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5b3uUFCuK .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5b3uUFCuK .modal-backdrop.show {
  opacity: .5;
}
.cid-t5b3uUFCuK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5b3uUFCuK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3uUFCuK .modal-header {
    padding: 1rem;
  }
}
.cid-t5b3uUFCuK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5b3uUFCuK .modal-header .close svg {
  fill: #353535;
}
.cid-t5b3uUFCuK .modal-header .close:hover {
  opacity: 1;
}
.cid-t5b3uUFCuK .modal-header .close:focus {
  outline: none;
}
.cid-t5b3uUFCuK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5b3uUFCuK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5b3uUFCuK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3uUFCuK .modal-body {
    padding: 1rem;
  }
}
.cid-t5b3uUFCuK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5b3uUFCuK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3uUFCuK .modal-footer {
    padding: 1rem;
  }
}
.cid-t5b3uUFCuK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5b3uUFCuK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5b3uUFCuK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5b3uUFCuK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5b3uUFCuK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5b3uUFCuK .modal-lg,
  .cid-t5b3uUFCuK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5b3uUFCuK .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5b3uUFCuK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5b3uUFCuK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5b3uUFCuK .form-group {
  margin-bottom: 1rem;
}
.cid-t5b3uUFCuK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5b3uUFCuK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5b3uUFCuK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5b3uUFCuK .mbr-section-btn {
  margin: 0;
}
.cid-t5b3uUFCuK .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5b3xcvW9y.popup-builder {
  background-color: #ffffff;
}
.cid-t5b3xcvW9y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5b3xcvW9y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5b3xcvW9y .modal-content,
.cid-t5b3xcvW9y .modal-dialog {
  height: auto;
}
.cid-t5b3xcvW9y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5b3xcvW9y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5b3xcvW9y .form-wrapper .mbr-form .form-group,
  .cid-t5b3xcvW9y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5b3xcvW9y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5b3xcvW9y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5b3xcvW9y .mbr-text {
  text-align: center;
}
.cid-t5b3xcvW9y .pt-0 {
  padding-top: 0 !important;
}
.cid-t5b3xcvW9y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5b3xcvW9y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5b3xcvW9y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5b3xcvW9y .modal-open {
  overflow: hidden;
}
.cid-t5b3xcvW9y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5b3xcvW9y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5b3xcvW9y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5b3xcvW9y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5b3xcvW9y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5b3xcvW9y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5b3xcvW9y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5b3xcvW9y .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5b3xcvW9y .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5b3xcvW9y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5b3xcvW9y .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5b3xcvW9y .modal-backdrop.show {
  opacity: .5;
}
.cid-t5b3xcvW9y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5b3xcvW9y .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3xcvW9y .modal-header {
    padding: 1rem;
  }
}
.cid-t5b3xcvW9y .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5b3xcvW9y .modal-header .close svg {
  fill: #353535;
}
.cid-t5b3xcvW9y .modal-header .close:hover {
  opacity: 1;
}
.cid-t5b3xcvW9y .modal-header .close:focus {
  outline: none;
}
.cid-t5b3xcvW9y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5b3xcvW9y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5b3xcvW9y .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3xcvW9y .modal-body {
    padding: 1rem;
  }
}
.cid-t5b3xcvW9y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5b3xcvW9y .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3xcvW9y .modal-footer {
    padding: 1rem;
  }
}
.cid-t5b3xcvW9y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5b3xcvW9y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5b3xcvW9y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5b3xcvW9y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5b3xcvW9y .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5b3xcvW9y .modal-lg,
  .cid-t5b3xcvW9y .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5b3xcvW9y .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5b3xcvW9y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5b3xcvW9y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5b3xcvW9y .form-group {
  margin-bottom: 1rem;
}
.cid-t5b3xcvW9y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5b3xcvW9y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5b3xcvW9y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5b3xcvW9y .mbr-section-btn {
  margin: 0;
}
.cid-t5b3xcvW9y .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5b3wHQ7fu.popup-builder {
  background-color: #ffffff;
}
.cid-t5b3wHQ7fu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5b3wHQ7fu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5b3wHQ7fu .modal-content,
.cid-t5b3wHQ7fu .modal-dialog {
  height: auto;
}
.cid-t5b3wHQ7fu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5b3wHQ7fu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5b3wHQ7fu .form-wrapper .mbr-form .form-group,
  .cid-t5b3wHQ7fu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5b3wHQ7fu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5b3wHQ7fu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5b3wHQ7fu .mbr-text {
  text-align: center;
}
.cid-t5b3wHQ7fu .pt-0 {
  padding-top: 0 !important;
}
.cid-t5b3wHQ7fu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5b3wHQ7fu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5b3wHQ7fu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5b3wHQ7fu .modal-open {
  overflow: hidden;
}
.cid-t5b3wHQ7fu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5b3wHQ7fu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5b3wHQ7fu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5b3wHQ7fu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5b3wHQ7fu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5b3wHQ7fu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5b3wHQ7fu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5b3wHQ7fu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5b3wHQ7fu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5b3wHQ7fu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5b3wHQ7fu .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5b3wHQ7fu .modal-backdrop.show {
  opacity: .5;
}
.cid-t5b3wHQ7fu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5b3wHQ7fu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3wHQ7fu .modal-header {
    padding: 1rem;
  }
}
.cid-t5b3wHQ7fu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5b3wHQ7fu .modal-header .close svg {
  fill: #353535;
}
.cid-t5b3wHQ7fu .modal-header .close:hover {
  opacity: 1;
}
.cid-t5b3wHQ7fu .modal-header .close:focus {
  outline: none;
}
.cid-t5b3wHQ7fu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5b3wHQ7fu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5b3wHQ7fu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3wHQ7fu .modal-body {
    padding: 1rem;
  }
}
.cid-t5b3wHQ7fu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5b3wHQ7fu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5b3wHQ7fu .modal-footer {
    padding: 1rem;
  }
}
.cid-t5b3wHQ7fu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5b3wHQ7fu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5b3wHQ7fu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5b3wHQ7fu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5b3wHQ7fu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5b3wHQ7fu .modal-lg,
  .cid-t5b3wHQ7fu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5b3wHQ7fu .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5b3wHQ7fu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5b3wHQ7fu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5b3wHQ7fu .form-group {
  margin-bottom: 1rem;
}
.cid-t5b3wHQ7fu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5b3wHQ7fu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5b3wHQ7fu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5b3wHQ7fu .mbr-section-btn {
  margin: 0;
}
.cid-t5b3wHQ7fu .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5baQZXF26.popup-builder {
  background-color: #ffffff;
}
.cid-t5baQZXF26.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5baQZXF26.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5baQZXF26 .modal-content,
.cid-t5baQZXF26 .modal-dialog {
  height: auto;
}
.cid-t5baQZXF26 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5baQZXF26 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5baQZXF26 .form-wrapper .mbr-form .form-group,
  .cid-t5baQZXF26 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5baQZXF26 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5baQZXF26 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5baQZXF26 .mbr-text {
  text-align: center;
}
.cid-t5baQZXF26 .pt-0 {
  padding-top: 0 !important;
}
.cid-t5baQZXF26 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5baQZXF26 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5baQZXF26 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5baQZXF26 .modal-open {
  overflow: hidden;
}
.cid-t5baQZXF26 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5baQZXF26 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5baQZXF26 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5baQZXF26 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5baQZXF26 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5baQZXF26 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5baQZXF26 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5baQZXF26 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5baQZXF26 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5baQZXF26 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5baQZXF26 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5baQZXF26 .modal-backdrop.show {
  opacity: .5;
}
.cid-t5baQZXF26 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5baQZXF26 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5baQZXF26 .modal-header {
    padding: 1rem;
  }
}
.cid-t5baQZXF26 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5baQZXF26 .modal-header .close svg {
  fill: #353535;
}
.cid-t5baQZXF26 .modal-header .close:hover {
  opacity: 1;
}
.cid-t5baQZXF26 .modal-header .close:focus {
  outline: none;
}
.cid-t5baQZXF26 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5baQZXF26 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5baQZXF26 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5baQZXF26 .modal-body {
    padding: 1rem;
  }
}
.cid-t5baQZXF26 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5baQZXF26 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5baQZXF26 .modal-footer {
    padding: 1rem;
  }
}
.cid-t5baQZXF26 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5baQZXF26 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5baQZXF26 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5baQZXF26 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5baQZXF26 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5baQZXF26 .modal-lg,
  .cid-t5baQZXF26 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5baQZXF26 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5baQZXF26 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5baQZXF26 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5baQZXF26 .form-group {
  margin-bottom: 1rem;
}
.cid-t5baQZXF26 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5baQZXF26 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5baQZXF26 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5baQZXF26 .mbr-section-btn {
  margin: 0;
}
.cid-t5baQZXF26 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5evaNTfgJ.popup-builder {
  background-color: #ffffff;
}
.cid-t5evaNTfgJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5evaNTfgJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5evaNTfgJ .modal-content,
.cid-t5evaNTfgJ .modal-dialog {
  height: auto;
}
.cid-t5evaNTfgJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5evaNTfgJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5evaNTfgJ .form-wrapper .mbr-form .form-group,
  .cid-t5evaNTfgJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5evaNTfgJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5evaNTfgJ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5evaNTfgJ .mbr-text {
  text-align: center;
}
.cid-t5evaNTfgJ .pt-0 {
  padding-top: 0 !important;
}
.cid-t5evaNTfgJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5evaNTfgJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5evaNTfgJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5evaNTfgJ .modal-open {
  overflow: hidden;
}
.cid-t5evaNTfgJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5evaNTfgJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5evaNTfgJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5evaNTfgJ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5evaNTfgJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5evaNTfgJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5evaNTfgJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5evaNTfgJ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5evaNTfgJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5evaNTfgJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5evaNTfgJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5evaNTfgJ .modal-backdrop.show {
  opacity: .5;
}
.cid-t5evaNTfgJ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5evaNTfgJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5evaNTfgJ .modal-header {
    padding: 1rem;
  }
}
.cid-t5evaNTfgJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5evaNTfgJ .modal-header .close svg {
  fill: #353535;
}
.cid-t5evaNTfgJ .modal-header .close:hover {
  opacity: 1;
}
.cid-t5evaNTfgJ .modal-header .close:focus {
  outline: none;
}
.cid-t5evaNTfgJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5evaNTfgJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5evaNTfgJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5evaNTfgJ .modal-body {
    padding: 1rem;
  }
}
.cid-t5evaNTfgJ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5evaNTfgJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5evaNTfgJ .modal-footer {
    padding: 1rem;
  }
}
.cid-t5evaNTfgJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5evaNTfgJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5evaNTfgJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5evaNTfgJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5evaNTfgJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5evaNTfgJ .modal-lg,
  .cid-t5evaNTfgJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5evaNTfgJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5evaNTfgJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5evaNTfgJ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5evaNTfgJ .form-group {
  margin-bottom: 1rem;
}
.cid-t5evaNTfgJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5evaNTfgJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5evaNTfgJ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5evaNTfgJ .mbr-section-btn {
  margin: 0;
}
.cid-t5evaNTfgJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5exRfeXLS.popup-builder {
  background-color: #ffffff;
}
.cid-t5exRfeXLS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5exRfeXLS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5exRfeXLS .modal-content,
.cid-t5exRfeXLS .modal-dialog {
  height: auto;
}
.cid-t5exRfeXLS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5exRfeXLS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5exRfeXLS .form-wrapper .mbr-form .form-group,
  .cid-t5exRfeXLS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5exRfeXLS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5exRfeXLS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5exRfeXLS .mbr-text {
  text-align: center;
}
.cid-t5exRfeXLS .pt-0 {
  padding-top: 0 !important;
}
.cid-t5exRfeXLS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5exRfeXLS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5exRfeXLS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5exRfeXLS .modal-open {
  overflow: hidden;
}
.cid-t5exRfeXLS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5exRfeXLS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5exRfeXLS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5exRfeXLS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5exRfeXLS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5exRfeXLS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5exRfeXLS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5exRfeXLS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5exRfeXLS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5exRfeXLS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5exRfeXLS .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5exRfeXLS .modal-backdrop.show {
  opacity: .5;
}
.cid-t5exRfeXLS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5exRfeXLS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5exRfeXLS .modal-header {
    padding: 1rem;
  }
}
.cid-t5exRfeXLS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5exRfeXLS .modal-header .close svg {
  fill: #353535;
}
.cid-t5exRfeXLS .modal-header .close:hover {
  opacity: 1;
}
.cid-t5exRfeXLS .modal-header .close:focus {
  outline: none;
}
.cid-t5exRfeXLS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5exRfeXLS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5exRfeXLS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5exRfeXLS .modal-body {
    padding: 1rem;
  }
}
.cid-t5exRfeXLS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5exRfeXLS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5exRfeXLS .modal-footer {
    padding: 1rem;
  }
}
.cid-t5exRfeXLS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5exRfeXLS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5exRfeXLS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5exRfeXLS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5exRfeXLS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5exRfeXLS .modal-lg,
  .cid-t5exRfeXLS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5exRfeXLS .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5exRfeXLS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5exRfeXLS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5exRfeXLS .form-group {
  margin-bottom: 1rem;
}
.cid-t5exRfeXLS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5exRfeXLS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5exRfeXLS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5exRfeXLS .mbr-section-btn {
  margin: 0;
}
.cid-t5exRfeXLS .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5exSiSrFe.popup-builder {
  background-color: #ffffff;
}
.cid-t5exSiSrFe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5exSiSrFe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5exSiSrFe .modal-content,
.cid-t5exSiSrFe .modal-dialog {
  height: auto;
}
.cid-t5exSiSrFe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5exSiSrFe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5exSiSrFe .form-wrapper .mbr-form .form-group,
  .cid-t5exSiSrFe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5exSiSrFe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5exSiSrFe .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5exSiSrFe .mbr-text {
  text-align: center;
}
.cid-t5exSiSrFe .pt-0 {
  padding-top: 0 !important;
}
.cid-t5exSiSrFe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5exSiSrFe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5exSiSrFe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5exSiSrFe .modal-open {
  overflow: hidden;
}
.cid-t5exSiSrFe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5exSiSrFe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5exSiSrFe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5exSiSrFe .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5exSiSrFe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5exSiSrFe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5exSiSrFe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5exSiSrFe .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5exSiSrFe .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5exSiSrFe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5exSiSrFe .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5exSiSrFe .modal-backdrop.show {
  opacity: .5;
}
.cid-t5exSiSrFe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5exSiSrFe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5exSiSrFe .modal-header {
    padding: 1rem;
  }
}
.cid-t5exSiSrFe .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5exSiSrFe .modal-header .close svg {
  fill: #353535;
}
.cid-t5exSiSrFe .modal-header .close:hover {
  opacity: 1;
}
.cid-t5exSiSrFe .modal-header .close:focus {
  outline: none;
}
.cid-t5exSiSrFe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #169505;
}
.cid-t5exSiSrFe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5exSiSrFe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5exSiSrFe .modal-body {
    padding: 1rem;
  }
}
.cid-t5exSiSrFe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5exSiSrFe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5exSiSrFe .modal-footer {
    padding: 1rem;
  }
}
.cid-t5exSiSrFe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5exSiSrFe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5exSiSrFe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5exSiSrFe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5exSiSrFe .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5exSiSrFe .modal-lg,
  .cid-t5exSiSrFe .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5exSiSrFe .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5exSiSrFe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5exSiSrFe .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5exSiSrFe .form-group {
  margin-bottom: 1rem;
}
.cid-t5exSiSrFe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5exSiSrFe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5exSiSrFe .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5exSiSrFe .mbr-section-btn {
  margin: 0;
}
.cid-t5exSiSrFe .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN2E3I.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN2E3I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN2E3I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN2E3I .modal-content,
.cid-t5NmlN2E3I .modal-dialog {
  height: auto;
}
.cid-t5NmlN2E3I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN2E3I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN2E3I .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN2E3I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN2E3I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN2E3I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN2E3I .mbr-text {
  text-align: left;
}
.cid-t5NmlN2E3I .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN2E3I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN2E3I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN2E3I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN2E3I .modal-open {
  overflow: hidden;
}
.cid-t5NmlN2E3I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN2E3I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN2E3I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN2E3I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN2E3I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN2E3I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN2E3I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN2E3I .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN2E3I .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN2E3I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN2E3I .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN2E3I .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN2E3I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN2E3I .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2E3I .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN2E3I .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN2E3I .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN2E3I .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN2E3I .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN2E3I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN2E3I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN2E3I .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2E3I .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN2E3I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN2E3I .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN2E3I .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN2E3I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN2E3I .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN2E3I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN2E3I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN2E3I .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN2E3I .modal-lg,
  .cid-t5NmlN2E3I .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN2E3I .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN2E3I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN2E3I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN2E3I .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN2E3I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN2E3I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN2E3I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN2E3I .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN2E3I .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t4OcQoBdKi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4OcQoBdKi .carousel {
  height: 700px;
}
.cid-t4OcQoBdKi .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-t4OcQoBdKi .carousel-item,
.cid-t4OcQoBdKi .carousel-inner {
  height: 100%;
}
.cid-t4OcQoBdKi .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-t4OcQoBdKi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t4OcQoBdKi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t4OcQoBdKi .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-t4OcQoBdKi .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t4OcQoBdKi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t4OcQoBdKi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t4OcQoBdKi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t4OcQoBdKi .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-t4OcQoBdKi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4OcQoBdKi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4OcQoBdKi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t4OcQoBdKi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t4OcQoBdKi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #ffffff;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-t4OcQoBdKi .carousel-indicators li.active {
  background-color: #5aac98;
}
.cid-t4OcQoBdKi .carousel-indicators li.active,
.cid-t4OcQoBdKi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t4OcQoBdKi .carousel-indicators li::after,
.cid-t4OcQoBdKi .carousel-indicators li::before {
  content: none;
}
.cid-t4OcQoBdKi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t4OcQoBdKi .carousel-indicators {
    display: none !important;
  }
}
.cid-t4OcQoBdKi .btn.btn-primary-outline {
  border: 1px solid #0082c3;
}
.cid-t4OcQoBdKi .btn.btn-primary-outline:hover {
  background-color: #0082c3 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-secondary-outline {
  border: 1px solid #f50e99;
}
.cid-t4OcQoBdKi .btn.btn-secondary-outline:hover {
  background-color: #f50e99 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-success-outline {
  border: 1px solid #27c209;
}
.cid-t4OcQoBdKi .btn.btn-success-outline:hover {
  background-color: #27c209 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-info-outline {
  border: 1px solid #bdbf02;
}
.cid-t4OcQoBdKi .btn.btn-info-outline:hover {
  background-color: #bdbf02 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-warning-outline {
  border: 1px solid #8f7811;
}
.cid-t4OcQoBdKi .btn.btn-warning-outline:hover {
  background-color: #8f7811 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-danger-outline {
  border: 1px solid #ff6600;
}
.cid-t4OcQoBdKi .btn.btn-danger-outline:hover {
  background-color: #ff6600 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-t4OcQoBdKi .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-t4OcQoBdKi .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-t4OcQoBdKi .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-t4OcQoBdKi .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-t4OcQoBdKi .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-t4OcQoBdKi .carousel-control {
    display: none;
  }
  .cid-t4OcQoBdKi .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-t4OcQoBdKi .buttons-wrap .mbr-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-t4OcQoBdKi .mbr-section-title {
  text-align: center;
}
.cid-t5ervyC1kL {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-t5ervyC1kL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t5ervyC1kL .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t5ervyC1kL .mbr-text {
    text-align: left;
  }
}
.cid-t5ervyC1kL H1 {
  color: #21810f;
  text-align: left;
}
.cid-t5ervyC1kL .mbr-text,
.cid-t5ervyC1kL .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-t5ervyC1kL H3 {
  color: #169505;
  text-align: left;
}
.cid-t5ervyC1kL gruen {
  color: #169505;
  font-size: 20px;
  line-height: 22px;
}
.cid-t5bo0tIrgM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5bo0tIrgM hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bo0tIrgM hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bo0tIrgM h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bo0tIrgM .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5bo0tIrgM H2 {
  color: #767676;
}
.cid-sCbvkJZrKK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sCbvkJZrKK hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-sCbvkJZrKK hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-sCbvkJZrKK h2 {
  float: left;
  color: #0082c3;
}
.cid-sCbvkJZrKK .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-sCbvkJZrKK H2 {
  color: #767676;
}
.cid-t5emGBbCFL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5emGBbCFL .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5emGBbCFL .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5emGBbCFL .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5emGBbCFL .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5emGBbCFL .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5emGBbCFL .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5emGBbCFL .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5emGBbCFL .input-group-btn {
  padding-left: 0;
}
.cid-t5emGBbCFL .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5emGBbCFL .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5emGBbCFL .mbr-text {
  color: #444;
}
.cid-t5emGBbCFL h5 {
  margin-bottom: 0;
}
.cid-t5emGBbCFL .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5emGBbCFL .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5emGBbCFL .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5emGBbCFL .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5emGBbCFL .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5emGBbCFL .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5emGBbCFL .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5emGBbCFL .social-list a:hover {
  opacity: 0.4;
}
.cid-t5emGBbCFL .media-container-row > div {
  padding: 0px;
}
.cid-t5emGBbCFL .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5emGBbCFL .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5emGBbCFL .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5emGBbCFL .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5emGBbCFL .social-list,
  .cid-t5emGBbCFL .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5emGBbCFL h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5emGBbCFL .form-group {
    max-width: 180px;
  }
}
.cid-t5emGBbCFL .links span {
  color: #9e9e9e;
}
.cid-t5emGBbCFL .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5emGBbCFL .logo-title {
  text-align: center;
}
.cid-t5emGBbCFL .logo-title,
.cid-t5emGBbCFL .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5emGBbCFL .logo-sub-title DIV {
  text-align: left;
}
.cid-t5emGBbCFL normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5emGBbCFL orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NcX6yDxF.popup-builder {
  background-color: #ffffff;
}
.cid-t5NcX6yDxF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NcX6yDxF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NcX6yDxF .modal-content,
.cid-t5NcX6yDxF .modal-dialog {
  height: auto;
}
.cid-t5NcX6yDxF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NcX6yDxF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NcX6yDxF .form-wrapper .mbr-form .form-group,
  .cid-t5NcX6yDxF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NcX6yDxF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NcX6yDxF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NcX6yDxF .mbr-text {
  text-align: left;
}
.cid-t5NcX6yDxF .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NcX6yDxF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NcX6yDxF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NcX6yDxF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NcX6yDxF .modal-open {
  overflow: hidden;
}
.cid-t5NcX6yDxF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NcX6yDxF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NcX6yDxF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NcX6yDxF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NcX6yDxF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NcX6yDxF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NcX6yDxF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NcX6yDxF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NcX6yDxF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NcX6yDxF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NcX6yDxF .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NcX6yDxF .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NcX6yDxF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NcX6yDxF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NcX6yDxF .modal-header {
    padding: 1rem;
  }
}
.cid-t5NcX6yDxF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NcX6yDxF .modal-header .close svg {
  fill: #353535;
}
.cid-t5NcX6yDxF .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NcX6yDxF .modal-header .close:focus {
  outline: none;
}
.cid-t5NcX6yDxF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NcX6yDxF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NcX6yDxF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NcX6yDxF .modal-body {
    padding: 1rem;
  }
}
.cid-t5NcX6yDxF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NcX6yDxF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NcX6yDxF .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NcX6yDxF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NcX6yDxF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NcX6yDxF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NcX6yDxF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NcX6yDxF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NcX6yDxF .modal-lg,
  .cid-t5NcX6yDxF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NcX6yDxF .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NcX6yDxF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NcX6yDxF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NcX6yDxF .form-group {
  margin-bottom: 1rem;
}
.cid-t5NcX6yDxF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NcX6yDxF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NcX6yDxF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NcX6yDxF .mbr-section-btn {
  margin: 0;
}
.cid-t5NcX6yDxF .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52YBv9oG7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52YBv9oG7 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52YBv9oG7 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52YBv9oG7 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52YBv9oG7 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52YBv9oG7 .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52Z1uLIwG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52Z1uLIwG .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52Z1uLIwG .mbr-section-title {
  color: #ffffff;
}
.cid-t52Z1uLIwG .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52Z1uLIwG .mbr-section-title,
.cid-t52Z1uLIwG .mbr-section-btn {
  text-align: center;
}
.cid-t59QNFDgbB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59QNFDgbB .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59QNFDgbB .mbr-section-title {
  color: #ffffff;
}
.cid-t59QNFDgbB .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59QNFDgbB .mbr-section-title,
.cid-t59QNFDgbB .mbr-section-btn {
  text-align: center;
}
.cid-t4NXbi10vl {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4NXbi10vl .mbr-section-title {
  letter-spacing: 0.1em;
  color: #08ae16;
  margin-bottom: 2rem;
}
.cid-t4NXbi10vl .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4NXbi10vl .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-t4NXbi10vl .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4NXbi10vl .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4NXbi10vl .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4NXbi10vl .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4NXbi10vl .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4NXbi10vl .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4NXbi10vl .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4NXbi10vl .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t4NXbi10vl .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t4NXbi10vl .second-col {
    padding-top: 2rem;
  }
}
.cid-t4NXbi10vl strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4NXbi10vl klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5CFsKiddn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CFsKiddn h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CFsKiddn p {
  color: #767676;
}
.cid-t5CFsKiddn .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CFsKiddn .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CFsKiddn .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CFsKiddn .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CFsKiddn .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CFsKiddn .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CFsKiddn rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CFsKiddn .b-descr {
  color: #bc0a14;
}
.cid-t5CFrjlvyq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CFrjlvyq hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CFrjlvyq hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CFrjlvyq h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CFrjlvyq .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CFrjlvyq H2 {
  color: #767676;
}
.cid-t5CFrV5qzO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CFrV5qzO hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CFrV5qzO hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CFrV5qzO h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CFrV5qzO .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CFrV5qzO H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN249E.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN249E.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN249E.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN249E .modal-content,
.cid-t5NmlN249E .modal-dialog {
  height: auto;
}
.cid-t5NmlN249E .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN249E .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN249E .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN249E .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN249E .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN249E .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN249E .mbr-text {
  text-align: left;
}
.cid-t5NmlN249E .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN249E .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN249E .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN249E .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN249E .modal-open {
  overflow: hidden;
}
.cid-t5NmlN249E .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN249E .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN249E .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN249E .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN249E .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN249E .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN249E .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN249E .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN249E .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN249E .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN249E .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN249E .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN249E .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN249E .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN249E .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN249E .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN249E .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN249E .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN249E .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN249E .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN249E .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN249E .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN249E .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN249E .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN249E .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN249E .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN249E .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN249E .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN249E .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN249E .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN249E .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN249E .modal-lg,
  .cid-t5NmlN249E .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN249E .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN249E .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN249E .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN249E .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN249E .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN249E .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN249E .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN249E .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN249E .mbr-section-btn .btn {
  margin: 0;
}
.cid-t58sXOH7lZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t58sXOH7lZ .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t58sXOH7lZ .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t58sXOH7lZ .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t58sXOH7lZ .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t58sXOH7lZ .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t58vOUDi4k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/handy-restaurant.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t58vOUDi4k .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t58vOUDi4k .mbr-section-title {
  color: #ffffff;
}
.cid-t58vOUDi4k .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t58vOUDi4k .mbr-section-title,
.cid-t58vOUDi4k .mbr-section-btn {
  text-align: center;
}
.cid-t59R1TAFO6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/desktop-kombi-restaurant.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59R1TAFO6 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59R1TAFO6 .mbr-section-title {
  color: #ffffff;
}
.cid-t59R1TAFO6 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59R1TAFO6 .mbr-section-title,
.cid-t59R1TAFO6 .mbr-section-btn {
  text-align: center;
}
.cid-t58GSlBrvD {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-t58GSlBrvD .container,
.cid-t58GSlBrvD .container-fluid {
  position: static;
}
.cid-t58GSlBrvD .mbr-section-title {
  color: #169505;
}
.cid-t58GSlBrvD .colored-text {
  color: #913bff;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 5px;
}
.cid-t58GSlBrvD .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 48px;
}
@media (min-width: 1400px) {
  .cid-t58GSlBrvD .mbr-text {
    padding-right: 48px;
  }
}
@media (max-width: 991px) {
  .cid-t58GSlBrvD .mbr-text {
    margin-top: 38px;
  }
}
.cid-t58GSlBrvD .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-t58GSlBrvD .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-t58GSlBrvD .mbr-section-btn .btn {
  padding: 10px 30px;
  min-height: 55px;
  border-radius: 9px;
}
.cid-t58GSlBrvD .mbr-section-btn .btn-info:hover {
  background-color: #f50e99 !important;
  color: #ffffff !important;
}
.cid-t58GSlBrvD .image-wrapper {
  max-height: 100%;
}
.cid-t58GSlBrvD .image-wrapper img {
  max-width: 100%;
  margin-left: auto!important;
}
@media (min-width: 768px) {
  .cid-t58GSlBrvD .image-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36.4% !important;
    z-index: 2;
    right: 5%;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-t58GSlBrvD .image-wrapper {
    max-width: 474px !important;
    margin: 80px auto 0;
  }
}
.cid-t58GSlBrvD .image-wrapper:before {
  content: '';
  position: absolute;
  width: 1056px;
  height: 1056px;
  top: -385px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 6px 73px 62px rgba(0, 12, 119, 0.03);
  z-index: -1;
  box-sizing: border-box;
  right: -305px;
}
@media (max-width: 1399px) {
  .cid-t58GSlBrvD .image-wrapper:before {
    width: 870px;
    height: 870px;
  }
}
@media (max-width: 1199px) {
  .cid-t58GSlBrvD .image-wrapper:before {
    width: 750px;
    height: 750px;
  }
}
@media (max-width: 991px) {
  .cid-t58GSlBrvD .image-wrapper:before {
    display: none;
  }
}
.cid-t58GSlBrvD .col-text {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cid-t58GSlBrvD .col-text {
    width: 58.3333333333% !important;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .cid-t58GSlBrvD .col-text {
    width: 50% !important;
  }
}
.cid-sCcFFppUWk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCcFFppUWk h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-sCcFFppUWk p {
  color: #767676;
}
.cid-sCcFFppUWk .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-sCcFFppUWk .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-sCcFFppUWk .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-sCcFFppUWk .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-sCcFFppUWk .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-sCcFFppUWk .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-sCcFFppUWk rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-sCcFFppUWk .b-descr {
  color: #bc0a14;
}
.cid-t5ahgvm1qx {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5ahgvm1qx .mbr-section-title {
  letter-spacing: 0.1em;
  color: #169505;
  margin-bottom: 2rem;
}
.cid-t5ahgvm1qx .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t5ahgvm1qx .btn {
  margin: 0px !important;
}
.cid-t5ahgvm1qx .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5ahgvm1qx .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5ahgvm1qx .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-t5ahgvm1qx .carousel-item .wrap-img {
  text-align: center;
}
.cid-t5ahgvm1qx .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t5ahgvm1qx .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t5ahgvm1qx .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t5ahgvm1qx .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t5ahgvm1qx .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t5ahgvm1qx .second-col {
    padding-top: 2rem;
  }
}
.cid-t5ajx1f8IV {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5ajx1f8IV .mbr-section-title {
  letter-spacing: 0.1em;
  color: #169505;
  margin-bottom: 2rem;
}
.cid-t5ajx1f8IV .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t5ajx1f8IV .btn {
  margin: 0px !important;
}
.cid-t5ajx1f8IV .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5ajx1f8IV .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5ajx1f8IV .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-t5ajx1f8IV .carousel-item .wrap-img {
  text-align: center;
}
.cid-t5ajx1f8IV .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t5ajx1f8IV .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t5ajx1f8IV .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t5ajx1f8IV .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t5ajx1f8IV .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t5ajx1f8IV .second-col {
    padding-top: 2rem;
  }
}
.cid-t58EEYcnmK {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t58EEYcnmK .mbr-text {
  margin: 0;
}
.cid-t58EEYcnmK .row-element {
  padding: 0;
}
.cid-t58EEYcnmK img {
  border-radius: 2px;
  object-fit: cover;
}
.cid-t58EEYcnmK .carousel-item.active,
.cid-t58EEYcnmK .carousel-item-next,
.cid-t58EEYcnmK .carousel-item-prev {
  display: flex;
}
.cid-t58EEYcnmK .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-t58EEYcnmK .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #0082c3;
}
.cid-t58EEYcnmK .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-t58EEYcnmK .carousel-indicators li:hover {
  opacity: 1;
}
.cid-t58EEYcnmK .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-t58EEYcnmK .carousel-controls {
    display: block;
  }
  .cid-t58EEYcnmK .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-t58EEYcnmK .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-t58EEYcnmK .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-t58EEYcnmK .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-t58EEYcnmK .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t58EEYcnmK .media-container-row {
    width: 100%;
  }
}
.cid-t58EEYcnmK .text-content {
  padding: 3rem;
}
.cid-t58EEYcnmK .mbr-title {
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
  color: #169505;
}
.cid-t58EEYcnmK .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #0082c3;
}
@media (max-width: 992px) {
  .cid-t58EEYcnmK .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-t58EEYcnmK .card-text {
  line-height: 1.72;
  text-align: left;
}
.cid-t58EEYcnmK .link {
  text-align: left;
}
.cid-t58xLdxG2O {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t58xLdxG2O .mbr-text {
  margin: 0;
}
.cid-t58xLdxG2O .row-element {
  padding: 0;
}
.cid-t58xLdxG2O img {
  border-radius: 2px;
  object-fit: cover;
}
.cid-t58xLdxG2O .carousel-item.active,
.cid-t58xLdxG2O .carousel-item-next,
.cid-t58xLdxG2O .carousel-item-prev {
  display: flex;
}
.cid-t58xLdxG2O .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-t58xLdxG2O .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #0082c3;
}
.cid-t58xLdxG2O .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-t58xLdxG2O .carousel-indicators li:hover {
  opacity: 1;
}
.cid-t58xLdxG2O .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-t58xLdxG2O .carousel-controls {
    display: block;
  }
  .cid-t58xLdxG2O .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-t58xLdxG2O .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-t58xLdxG2O .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-t58xLdxG2O .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-t58xLdxG2O .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t58xLdxG2O .media-container-row {
    width: 100%;
  }
}
.cid-t58xLdxG2O .text-content {
  padding: 3rem;
}
.cid-t58xLdxG2O .mbr-title {
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
  color: #4479d9;
}
.cid-t58xLdxG2O .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #169505;
}
@media (max-width: 992px) {
  .cid-t58xLdxG2O .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-t58xLdxG2O .card-text {
  line-height: 1.72;
  text-align: left;
}
.cid-t58xLdxG2O .link {
  text-align: left;
}
.cid-t58EBWpwtc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t58EBWpwtc h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t58EBWpwtc p {
  color: #767676;
}
.cid-t58EBWpwtc .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t58EBWpwtc .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t58EBWpwtc .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t58EBWpwtc .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t58EBWpwtc .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t58EBWpwtc .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t58EBWpwtc rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t58EBWpwtc .b-descr {
  color: #bc0a14;
}
.cid-sCcsBAabGz {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sCcsBAabGz .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-sCcsBAabGz .card .card-img img {
  transition: all 0.5s;
}
.cid-sCcsBAabGz .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sCcsBAabGz .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sCcsBAabGz .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sCcsBAabGz .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sCcsBAabGz .first-card {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sCcsBAabGz .first-card .card-wrapper {
  height: 100%;
}
.cid-sCcsBAabGz .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcsBAabGz .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-sCcsBAabGz .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sCcsBAabGz .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sCcsBAabGz .first-row,
.cid-sCcsBAabGz .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sCcsBAabGz .first-row .card .card-wrapper,
.cid-sCcsBAabGz .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sCcsBAabGz .first-row .card .card-wrapper .card-img,
.cid-sCcsBAabGz .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sCcsBAabGz .first-row .card .card-wrapper .card-img img,
.cid-sCcsBAabGz .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sCcsBAabGz .first-row,
  .cid-sCcsBAabGz .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sCcsBAabGz .first-row .card .card-wrapper .card-img,
  .cid-sCcsBAabGz .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sCcsBAabGz .first-row .card .card-wrapper .card-img img,
  .cid-sCcsBAabGz .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sCcsBAabGz .first-row .caption,
.cid-sCcsBAabGz .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-sCcsBAabGz .first-row .caption .price,
.cid-sCcsBAabGz .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-sCcsBAabGz .first-row {
  padding-bottom: 0rem;
}
.cid-sCcsBAabGz .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sCcsBAabGz {
    padding-top: 12px;
    padding-bottom: 2px;
  }
  .cid-sCcsBAabGz .first-card,
  .cid-sCcsBAabGz .first-child {
    padding-bottom: 2rem;
  }
  .cid-sCcsBAabGz .card-box {
    padding: 0 0rem;
  }
  .cid-sCcsBAabGz .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sCcsBAabGz {
    padding-top: 90px;
    padding-bottom: 15px;
  }
  .cid-sCcsBAabGz .container-fluid {
    max-width: 1300px;
    padding: 0 2rem;
  }
  .cid-sCcsBAabGz .card-box {
    padding-right: 4rem;
    padding-left: 7rem;
  }
  .cid-sCcsBAabGz .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-sCcsBAabGz .first-card {
    padding-bottom: 2rem;
  }
  .cid-sCcsBAabGz .only-first-row {
    height: 100%;
  }
}
.cid-sCcsBAabGz p {
  margin-bottom: 0;
}
.cid-sCcsBAabGz h2 {
  margin-bottom: 1rem;
}
.cid-sCcsBAabGz .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sCcsBAabGz .btn-line {
  margin-top: 3rem;
}
.cid-sCcsBAabGz .container-fluid {
  max-width: 1300px;
}
.cid-sCcsBAabGz .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-sCcsBAabGz .card-box-name {
  padding: 0;
}
.cid-sCcsBAabGz .main-title {
  text-align: center;
  color: #169505;
}
.cid-sCcsBAabGz .first-card-title,
.cid-sCcsBAabGz .first-card-info {
  color: #169505;
}
.cid-t5CpGNDgOV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CpGNDgOV h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CpGNDgOV p {
  color: #767676;
}
.cid-t5CpGNDgOV .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CpGNDgOV .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CpGNDgOV .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CpGNDgOV .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CpGNDgOV .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CpGNDgOV .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CpGNDgOV rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CpGNDgOV .b-descr {
  color: #bc0a14;
}
.cid-t5CpE15YdI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CpE15YdI hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CpE15YdI hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CpE15YdI h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CpE15YdI .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CpE15YdI H2 {
  color: #767676;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5CpF0d9vL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CpF0d9vL hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CpF0d9vL hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CpF0d9vL h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CpF0d9vL .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CpF0d9vL H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN3jRt.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN3jRt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN3jRt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN3jRt .modal-content,
.cid-t5NmlN3jRt .modal-dialog {
  height: auto;
}
.cid-t5NmlN3jRt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN3jRt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN3jRt .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN3jRt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN3jRt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN3jRt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN3jRt .mbr-text {
  text-align: left;
}
.cid-t5NmlN3jRt .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN3jRt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN3jRt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN3jRt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN3jRt .modal-open {
  overflow: hidden;
}
.cid-t5NmlN3jRt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN3jRt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN3jRt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN3jRt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN3jRt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN3jRt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN3jRt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN3jRt .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN3jRt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN3jRt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN3jRt .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN3jRt .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN3jRt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN3jRt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3jRt .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN3jRt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN3jRt .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN3jRt .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN3jRt .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN3jRt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN3jRt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN3jRt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3jRt .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN3jRt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN3jRt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3jRt .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN3jRt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN3jRt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN3jRt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN3jRt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN3jRt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN3jRt .modal-lg,
  .cid-t5NmlN3jRt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN3jRt .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN3jRt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN3jRt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN3jRt .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN3jRt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN3jRt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN3jRt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN3jRt .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN3jRt .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52YGTHu89 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52YGTHu89 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52YGTHu89 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52YGTHu89 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52YGTHu89 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52YGTHu89 .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52ZhjqwV1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52ZhjqwV1 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52ZhjqwV1 .mbr-section-title {
  color: #ffffff;
}
.cid-t52ZhjqwV1 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52ZhjqwV1 .mbr-section-title,
.cid-t52ZhjqwV1 .mbr-section-btn {
  text-align: center;
}
.cid-t59QROBpLT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59QROBpLT .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59QROBpLT .mbr-section-title {
  color: #ffffff;
}
.cid-t59QROBpLT .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59QROBpLT .mbr-section-title,
.cid-t59QROBpLT .mbr-section-btn {
  text-align: center;
}
.cid-t4Rm5ZkTPH {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4Rm5ZkTPH .mbr-section-title {
  letter-spacing: 0.1em;
  color: #08ae16;
  margin-bottom: 2rem;
}
.cid-t4Rm5ZkTPH .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4Rm5ZkTPH .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-t4Rm5ZkTPH .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm5ZkTPH .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm5ZkTPH .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4Rm5ZkTPH .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4Rm5ZkTPH .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4Rm5ZkTPH .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4Rm5ZkTPH .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4Rm5ZkTPH .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t4Rm5ZkTPH .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t4Rm5ZkTPH .second-col {
    padding-top: 2rem;
  }
}
.cid-t4Rm5ZkTPH strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4Rm5ZkTPH klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t5CFPBHmVl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CFPBHmVl h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CFPBHmVl p {
  color: #767676;
}
.cid-t5CFPBHmVl .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CFPBHmVl .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CFPBHmVl .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CFPBHmVl .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CFPBHmVl .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CFPBHmVl .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CFPBHmVl rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CFPBHmVl .b-descr {
  color: #bc0a14;
}
.cid-t4Rm60WVoW {
  z-index: 1000;
  width: 100%;
}
.cid-t4Rm60WVoW nav.navbar {
  position: fixed;
}
.cid-t4Rm60WVoW .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4Rm60WVoW .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4Rm60WVoW .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4Rm60WVoW .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4Rm60WVoW .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4Rm60WVoW .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4Rm60WVoW .dropdown-item:hover,
.cid-t4Rm60WVoW .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4Rm60WVoW .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4Rm60WVoW .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4Rm60WVoW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4Rm60WVoW .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4Rm60WVoW .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4Rm60WVoW .container {
  display: flex;
  margin: auto;
}
.cid-t4Rm60WVoW .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4Rm60WVoW .dropdown-menu,
.cid-t4Rm60WVoW .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4Rm60WVoW .nav-item:focus,
.cid-t4Rm60WVoW .nav-link:focus {
  outline: none;
}
.cid-t4Rm60WVoW .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm60WVoW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4Rm60WVoW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4Rm60WVoW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm60WVoW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4Rm60WVoW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4Rm60WVoW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4Rm60WVoW .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4Rm60WVoW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4Rm60WVoW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4Rm60WVoW .navbar.opened {
  transition: all 0.3s;
}
.cid-t4Rm60WVoW .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4Rm60WVoW .navbar .navbar-logo img {
  width: auto;
}
.cid-t4Rm60WVoW .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4Rm60WVoW .navbar.collapsed {
  justify-content: center;
}
.cid-t4Rm60WVoW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4Rm60WVoW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4Rm60WVoW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4Rm60WVoW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4Rm60WVoW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4Rm60WVoW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4Rm60WVoW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4Rm60WVoW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4Rm60WVoW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4Rm60WVoW .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4Rm60WVoW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4Rm60WVoW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4Rm60WVoW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4Rm60WVoW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4Rm60WVoW .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4Rm60WVoW .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4Rm60WVoW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4Rm60WVoW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4Rm60WVoW .navbar .navbar-buttons,
  .cid-t4Rm60WVoW .navbar .icons-menu {
    display: none;
  }
  .cid-t4Rm60WVoW .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4Rm60WVoW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4Rm60WVoW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4Rm60WVoW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4Rm60WVoW .dropdown-item.active,
.cid-t4Rm60WVoW .dropdown-item:active {
  background-color: transparent;
}
.cid-t4Rm60WVoW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4Rm60WVoW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4Rm60WVoW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4Rm60WVoW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4Rm60WVoW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4Rm60WVoW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4Rm60WVoW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4Rm60WVoW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4Rm60WVoW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm60WVoW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm60WVoW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4Rm60WVoW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm60WVoW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4Rm60WVoW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4Rm60WVoW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm60WVoW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4Rm60WVoW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4Rm60WVoW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4Rm60WVoW .navbar {
    height: 70px;
  }
  .cid-t4Rm60WVoW .navbar.opened {
    height: auto;
  }
  .cid-t4Rm60WVoW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4Rm60WVoW .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4Rm60WVoW fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4Rm60WVoW orange {
  color: #e15a00;
}
.cid-t4Rm60WVoW gruen {
  color: #059800;
}
.cid-t5CFOjwrnz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CFOjwrnz hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CFOjwrnz hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CFOjwrnz h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CFOjwrnz .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CFOjwrnz H2 {
  color: #767676;
}
.cid-t5CFPasPz2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CFPasPz2 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CFPasPz2 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CFPasPz2 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CFPasPz2 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CFPasPz2 H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN3gaB.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN3gaB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN3gaB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN3gaB .modal-content,
.cid-t5NmlN3gaB .modal-dialog {
  height: auto;
}
.cid-t5NmlN3gaB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN3gaB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN3gaB .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN3gaB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN3gaB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN3gaB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN3gaB .mbr-text {
  text-align: left;
}
.cid-t5NmlN3gaB .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN3gaB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN3gaB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN3gaB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN3gaB .modal-open {
  overflow: hidden;
}
.cid-t5NmlN3gaB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN3gaB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN3gaB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN3gaB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN3gaB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN3gaB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN3gaB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN3gaB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN3gaB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN3gaB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN3gaB .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN3gaB .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN3gaB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN3gaB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3gaB .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN3gaB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN3gaB .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN3gaB .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN3gaB .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN3gaB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN3gaB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN3gaB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3gaB .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN3gaB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN3gaB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3gaB .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN3gaB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN3gaB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN3gaB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN3gaB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN3gaB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN3gaB .modal-lg,
  .cid-t5NmlN3gaB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN3gaB .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN3gaB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN3gaB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN3gaB .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN3gaB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN3gaB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN3gaB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN3gaB .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN3gaB .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52YKRaAWt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52YKRaAWt .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52YKRaAWt .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52YKRaAWt .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52YKRaAWt .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52YKRaAWt .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52Zj82gjr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52Zj82gjr .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52Zj82gjr .mbr-section-title {
  color: #ffffff;
}
.cid-t52Zj82gjr .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52Zj82gjr .mbr-section-title,
.cid-t52Zj82gjr .mbr-section-btn {
  text-align: center;
}
.cid-t59QTIJxix {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59QTIJxix .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59QTIJxix .mbr-section-title {
  color: #ffffff;
}
.cid-t59QTIJxix .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59QTIJxix .mbr-section-title,
.cid-t59QTIJxix .mbr-section-btn {
  text-align: center;
}
.cid-t4Rm52ySDd {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4Rm52ySDd .mbr-section-title {
  letter-spacing: 0.1em;
  color: #08ae16;
  margin-bottom: 2rem;
}
.cid-t4Rm52ySDd .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4Rm52ySDd .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-t4Rm52ySDd .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm52ySDd .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm52ySDd .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4Rm52ySDd .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4Rm52ySDd .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4Rm52ySDd .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4Rm52ySDd .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4Rm52ySDd .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t4Rm52ySDd .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t4Rm52ySDd .second-col {
    padding-top: 2rem;
  }
}
.cid-t4Rm52ySDd strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4Rm52ySDd klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t5CG52nEz2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CG52nEz2 h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CG52nEz2 p {
  color: #767676;
}
.cid-t5CG52nEz2 .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CG52nEz2 .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CG52nEz2 .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CG52nEz2 .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CG52nEz2 .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CG52nEz2 .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CG52nEz2 rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CG52nEz2 .b-descr {
  color: #bc0a14;
}
.cid-t5CG3GaUVa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CG3GaUVa hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CG3GaUVa hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CG3GaUVa h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CG3GaUVa .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CG3GaUVa H2 {
  color: #767676;
}
.cid-t4Rm53MO87 {
  z-index: 1000;
  width: 100%;
}
.cid-t4Rm53MO87 nav.navbar {
  position: fixed;
}
.cid-t4Rm53MO87 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4Rm53MO87 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4Rm53MO87 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4Rm53MO87 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4Rm53MO87 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4Rm53MO87 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4Rm53MO87 .dropdown-item:hover,
.cid-t4Rm53MO87 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4Rm53MO87 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4Rm53MO87 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4Rm53MO87 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4Rm53MO87 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4Rm53MO87 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4Rm53MO87 .container {
  display: flex;
  margin: auto;
}
.cid-t4Rm53MO87 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4Rm53MO87 .dropdown-menu,
.cid-t4Rm53MO87 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4Rm53MO87 .nav-item:focus,
.cid-t4Rm53MO87 .nav-link:focus {
  outline: none;
}
.cid-t4Rm53MO87 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm53MO87 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4Rm53MO87 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4Rm53MO87 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm53MO87 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4Rm53MO87 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4Rm53MO87 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4Rm53MO87 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4Rm53MO87 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4Rm53MO87 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4Rm53MO87 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4Rm53MO87 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4Rm53MO87 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4Rm53MO87 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4Rm53MO87 .navbar.collapsed {
  justify-content: center;
}
.cid-t4Rm53MO87 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4Rm53MO87 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4Rm53MO87 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4Rm53MO87 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4Rm53MO87 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4Rm53MO87 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4Rm53MO87 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4Rm53MO87 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4Rm53MO87 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4Rm53MO87 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4Rm53MO87 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4Rm53MO87 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4Rm53MO87 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4Rm53MO87 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4Rm53MO87 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4Rm53MO87 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4Rm53MO87 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4Rm53MO87 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4Rm53MO87 .navbar .navbar-buttons,
  .cid-t4Rm53MO87 .navbar .icons-menu {
    display: none;
  }
  .cid-t4Rm53MO87 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4Rm53MO87 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4Rm53MO87 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4Rm53MO87 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4Rm53MO87 .dropdown-item.active,
.cid-t4Rm53MO87 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4Rm53MO87 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4Rm53MO87 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4Rm53MO87 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4Rm53MO87 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4Rm53MO87 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4Rm53MO87 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4Rm53MO87 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4Rm53MO87 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4Rm53MO87 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm53MO87 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm53MO87 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4Rm53MO87 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm53MO87 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4Rm53MO87 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4Rm53MO87 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm53MO87 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4Rm53MO87 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4Rm53MO87 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4Rm53MO87 .navbar {
    height: 70px;
  }
  .cid-t4Rm53MO87 .navbar.opened {
    height: auto;
  }
  .cid-t4Rm53MO87 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4Rm53MO87 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4Rm53MO87 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4Rm53MO87 orange {
  color: #e15a00;
}
.cid-t4Rm53MO87 gruen {
  color: #059800;
}
.cid-t5CG49IImj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CG49IImj hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CG49IImj hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CG49IImj h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CG49IImj .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CG49IImj H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN3Oy1.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN3Oy1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN3Oy1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN3Oy1 .modal-content,
.cid-t5NmlN3Oy1 .modal-dialog {
  height: auto;
}
.cid-t5NmlN3Oy1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN3Oy1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN3Oy1 .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN3Oy1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN3Oy1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN3Oy1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN3Oy1 .mbr-text {
  text-align: left;
}
.cid-t5NmlN3Oy1 .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN3Oy1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN3Oy1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN3Oy1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN3Oy1 .modal-open {
  overflow: hidden;
}
.cid-t5NmlN3Oy1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN3Oy1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN3Oy1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN3Oy1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN3Oy1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN3Oy1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN3Oy1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN3Oy1 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN3Oy1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN3Oy1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN3Oy1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN3Oy1 .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN3Oy1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN3Oy1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3Oy1 .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN3Oy1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN3Oy1 .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN3Oy1 .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN3Oy1 .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN3Oy1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN3Oy1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN3Oy1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3Oy1 .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN3Oy1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN3Oy1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3Oy1 .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN3Oy1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN3Oy1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN3Oy1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN3Oy1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN3Oy1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN3Oy1 .modal-lg,
  .cid-t5NmlN3Oy1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN3Oy1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN3Oy1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN3Oy1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN3Oy1 .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN3Oy1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN3Oy1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN3Oy1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN3Oy1 .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN3Oy1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52YOtdXRg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52YOtdXRg .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52YOtdXRg .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52YOtdXRg .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52YOtdXRg .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52YOtdXRg .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52Zlmhdxj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52Zlmhdxj .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52Zlmhdxj .mbr-section-title {
  color: #ffffff;
}
.cid-t52Zlmhdxj .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52Zlmhdxj .mbr-section-title,
.cid-t52Zlmhdxj .mbr-section-btn {
  text-align: center;
}
.cid-t59QVAn7db {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59QVAn7db .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59QVAn7db .mbr-section-title {
  color: #ffffff;
}
.cid-t59QVAn7db .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59QVAn7db .mbr-section-title,
.cid-t59QVAn7db .mbr-section-btn {
  text-align: center;
}
.cid-t4Rm4h4aKl {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4Rm4h4aKl .mbr-section-title {
  letter-spacing: 0.1em;
  color: #08ae16;
  margin-bottom: 2rem;
}
.cid-t4Rm4h4aKl .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4Rm4h4aKl .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-t4Rm4h4aKl .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm4h4aKl .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm4h4aKl .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4Rm4h4aKl .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4Rm4h4aKl .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4Rm4h4aKl .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4Rm4h4aKl .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4Rm4h4aKl .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t4Rm4h4aKl .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t4Rm4h4aKl .second-col {
    padding-top: 2rem;
  }
}
.cid-t4Rm4h4aKl strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4Rm4h4aKl klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t5CGj3TCIt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CGj3TCIt h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CGj3TCIt p {
  color: #767676;
}
.cid-t5CGj3TCIt .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CGj3TCIt .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CGj3TCIt .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CGj3TCIt .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CGj3TCIt .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CGj3TCIt .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CGj3TCIt rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CGj3TCIt .b-descr {
  color: #bc0a14;
}
.cid-t4Rm4ifBFb {
  z-index: 1000;
  width: 100%;
}
.cid-t4Rm4ifBFb nav.navbar {
  position: fixed;
}
.cid-t4Rm4ifBFb .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4Rm4ifBFb .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4Rm4ifBFb .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4Rm4ifBFb .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4Rm4ifBFb .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4Rm4ifBFb .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4Rm4ifBFb .dropdown-item:hover,
.cid-t4Rm4ifBFb .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4Rm4ifBFb .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4Rm4ifBFb .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4Rm4ifBFb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4Rm4ifBFb .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4Rm4ifBFb .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4Rm4ifBFb .container {
  display: flex;
  margin: auto;
}
.cid-t4Rm4ifBFb .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4Rm4ifBFb .dropdown-menu,
.cid-t4Rm4ifBFb .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4Rm4ifBFb .nav-item:focus,
.cid-t4Rm4ifBFb .nav-link:focus {
  outline: none;
}
.cid-t4Rm4ifBFb .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm4ifBFb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4Rm4ifBFb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4Rm4ifBFb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm4ifBFb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4Rm4ifBFb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4Rm4ifBFb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4Rm4ifBFb .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4Rm4ifBFb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4Rm4ifBFb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4Rm4ifBFb .navbar.opened {
  transition: all 0.3s;
}
.cid-t4Rm4ifBFb .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4Rm4ifBFb .navbar .navbar-logo img {
  width: auto;
}
.cid-t4Rm4ifBFb .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4Rm4ifBFb .navbar.collapsed {
  justify-content: center;
}
.cid-t4Rm4ifBFb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4Rm4ifBFb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4Rm4ifBFb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4Rm4ifBFb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4Rm4ifBFb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4Rm4ifBFb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4Rm4ifBFb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4Rm4ifBFb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4Rm4ifBFb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4Rm4ifBFb .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4Rm4ifBFb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4Rm4ifBFb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4Rm4ifBFb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4Rm4ifBFb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4Rm4ifBFb .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4Rm4ifBFb .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4Rm4ifBFb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4Rm4ifBFb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4Rm4ifBFb .navbar .navbar-buttons,
  .cid-t4Rm4ifBFb .navbar .icons-menu {
    display: none;
  }
  .cid-t4Rm4ifBFb .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4Rm4ifBFb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4Rm4ifBFb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4Rm4ifBFb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4Rm4ifBFb .dropdown-item.active,
.cid-t4Rm4ifBFb .dropdown-item:active {
  background-color: transparent;
}
.cid-t4Rm4ifBFb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4Rm4ifBFb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4Rm4ifBFb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4Rm4ifBFb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4Rm4ifBFb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4Rm4ifBFb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4Rm4ifBFb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4Rm4ifBFb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4Rm4ifBFb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm4ifBFb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm4ifBFb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4Rm4ifBFb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm4ifBFb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4Rm4ifBFb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4Rm4ifBFb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm4ifBFb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4Rm4ifBFb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4Rm4ifBFb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4Rm4ifBFb .navbar {
    height: 70px;
  }
  .cid-t4Rm4ifBFb .navbar.opened {
    height: auto;
  }
  .cid-t4Rm4ifBFb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4Rm4ifBFb .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4Rm4ifBFb fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4Rm4ifBFb orange {
  color: #e15a00;
}
.cid-t4Rm4ifBFb gruen {
  color: #059800;
}
.cid-t5CGhZh4la {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CGhZh4la hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CGhZh4la hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CGhZh4la h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CGhZh4la .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CGhZh4la H2 {
  color: #767676;
}
.cid-t5CGivSfe7 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CGivSfe7 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CGivSfe7 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CGivSfe7 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CGivSfe7 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CGivSfe7 H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN3oe2.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN3oe2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN3oe2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN3oe2 .modal-content,
.cid-t5NmlN3oe2 .modal-dialog {
  height: auto;
}
.cid-t5NmlN3oe2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN3oe2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN3oe2 .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN3oe2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN3oe2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN3oe2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN3oe2 .mbr-text {
  text-align: left;
}
.cid-t5NmlN3oe2 .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN3oe2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN3oe2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN3oe2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN3oe2 .modal-open {
  overflow: hidden;
}
.cid-t5NmlN3oe2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN3oe2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN3oe2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN3oe2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN3oe2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN3oe2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN3oe2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN3oe2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN3oe2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN3oe2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN3oe2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN3oe2 .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN3oe2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN3oe2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3oe2 .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN3oe2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN3oe2 .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN3oe2 .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN3oe2 .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN3oe2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN3oe2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN3oe2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3oe2 .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN3oe2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN3oe2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3oe2 .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN3oe2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN3oe2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN3oe2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN3oe2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN3oe2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN3oe2 .modal-lg,
  .cid-t5NmlN3oe2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN3oe2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN3oe2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN3oe2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN3oe2 .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN3oe2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN3oe2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN3oe2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN3oe2 .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN3oe2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52YRWGnQW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52YRWGnQW .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52YRWGnQW .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52YRWGnQW .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52YRWGnQW .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52YRWGnQW .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52ZndBbAg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52ZndBbAg .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52ZndBbAg .mbr-section-title {
  color: #ffffff;
}
.cid-t52ZndBbAg .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52ZndBbAg .mbr-section-title,
.cid-t52ZndBbAg .mbr-section-btn {
  text-align: center;
}
.cid-t59QXzJLJO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59QXzJLJO .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59QXzJLJO .mbr-section-title {
  color: #ffffff;
}
.cid-t59QXzJLJO .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59QXzJLJO .mbr-section-title,
.cid-t59QXzJLJO .mbr-section-btn {
  text-align: center;
}
.cid-t4Rm3BsMD5 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4Rm3BsMD5 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #08ae16;
  margin-bottom: 2rem;
}
.cid-t4Rm3BsMD5 .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4Rm3BsMD5 .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-t4Rm3BsMD5 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm3BsMD5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm3BsMD5 .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4Rm3BsMD5 .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4Rm3BsMD5 .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4Rm3BsMD5 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4Rm3BsMD5 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4Rm3BsMD5 .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t4Rm3BsMD5 .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t4Rm3BsMD5 .second-col {
    padding-top: 2rem;
  }
}
.cid-t4Rm3BsMD5 strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4Rm3BsMD5 klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t5CGCtKFGN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CGCtKFGN h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CGCtKFGN p {
  color: #767676;
}
.cid-t5CGCtKFGN .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CGCtKFGN .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CGCtKFGN .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CGCtKFGN .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CGCtKFGN .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CGCtKFGN .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CGCtKFGN rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CGCtKFGN .b-descr {
  color: #bc0a14;
}
.cid-t4Rm3DmyOr {
  z-index: 1000;
  width: 100%;
}
.cid-t4Rm3DmyOr nav.navbar {
  position: fixed;
}
.cid-t4Rm3DmyOr .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4Rm3DmyOr .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4Rm3DmyOr .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4Rm3DmyOr .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4Rm3DmyOr .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4Rm3DmyOr .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4Rm3DmyOr .dropdown-item:hover,
.cid-t4Rm3DmyOr .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4Rm3DmyOr .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4Rm3DmyOr .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4Rm3DmyOr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4Rm3DmyOr .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4Rm3DmyOr .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4Rm3DmyOr .container {
  display: flex;
  margin: auto;
}
.cid-t4Rm3DmyOr .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4Rm3DmyOr .dropdown-menu,
.cid-t4Rm3DmyOr .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4Rm3DmyOr .nav-item:focus,
.cid-t4Rm3DmyOr .nav-link:focus {
  outline: none;
}
.cid-t4Rm3DmyOr .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm3DmyOr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4Rm3DmyOr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4Rm3DmyOr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm3DmyOr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4Rm3DmyOr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4Rm3DmyOr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4Rm3DmyOr .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4Rm3DmyOr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4Rm3DmyOr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4Rm3DmyOr .navbar.opened {
  transition: all 0.3s;
}
.cid-t4Rm3DmyOr .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4Rm3DmyOr .navbar .navbar-logo img {
  width: auto;
}
.cid-t4Rm3DmyOr .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4Rm3DmyOr .navbar.collapsed {
  justify-content: center;
}
.cid-t4Rm3DmyOr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4Rm3DmyOr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4Rm3DmyOr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4Rm3DmyOr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4Rm3DmyOr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4Rm3DmyOr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4Rm3DmyOr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4Rm3DmyOr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4Rm3DmyOr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4Rm3DmyOr .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4Rm3DmyOr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4Rm3DmyOr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4Rm3DmyOr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4Rm3DmyOr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4Rm3DmyOr .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4Rm3DmyOr .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4Rm3DmyOr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4Rm3DmyOr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4Rm3DmyOr .navbar .navbar-buttons,
  .cid-t4Rm3DmyOr .navbar .icons-menu {
    display: none;
  }
  .cid-t4Rm3DmyOr .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4Rm3DmyOr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4Rm3DmyOr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4Rm3DmyOr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4Rm3DmyOr .dropdown-item.active,
.cid-t4Rm3DmyOr .dropdown-item:active {
  background-color: transparent;
}
.cid-t4Rm3DmyOr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4Rm3DmyOr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4Rm3DmyOr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4Rm3DmyOr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4Rm3DmyOr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4Rm3DmyOr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4Rm3DmyOr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4Rm3DmyOr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4Rm3DmyOr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm3DmyOr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm3DmyOr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4Rm3DmyOr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm3DmyOr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4Rm3DmyOr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4Rm3DmyOr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm3DmyOr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4Rm3DmyOr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4Rm3DmyOr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4Rm3DmyOr .navbar {
    height: 70px;
  }
  .cid-t4Rm3DmyOr .navbar.opened {
    height: auto;
  }
  .cid-t4Rm3DmyOr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4Rm3DmyOr .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4Rm3DmyOr fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4Rm3DmyOr orange {
  color: #e15a00;
}
.cid-t4Rm3DmyOr gruen {
  color: #059800;
}
.cid-t5CGARSy4j {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CGARSy4j hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CGARSy4j hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CGARSy4j h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CGARSy4j .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CGARSy4j H2 {
  color: #767676;
}
.cid-t5CGBUVAUc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CGBUVAUc hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CGBUVAUc hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CGBUVAUc h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CGBUVAUc .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CGBUVAUc H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN3oYn.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN3oYn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN3oYn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN3oYn .modal-content,
.cid-t5NmlN3oYn .modal-dialog {
  height: auto;
}
.cid-t5NmlN3oYn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN3oYn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN3oYn .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN3oYn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN3oYn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN3oYn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN3oYn .mbr-text {
  text-align: left;
}
.cid-t5NmlN3oYn .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN3oYn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN3oYn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN3oYn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN3oYn .modal-open {
  overflow: hidden;
}
.cid-t5NmlN3oYn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN3oYn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN3oYn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN3oYn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN3oYn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN3oYn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN3oYn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN3oYn .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN3oYn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN3oYn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN3oYn .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN3oYn .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN3oYn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN3oYn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3oYn .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN3oYn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN3oYn .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN3oYn .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN3oYn .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN3oYn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN3oYn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN3oYn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3oYn .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN3oYn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN3oYn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3oYn .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN3oYn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN3oYn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN3oYn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN3oYn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN3oYn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN3oYn .modal-lg,
  .cid-t5NmlN3oYn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN3oYn .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN3oYn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN3oYn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN3oYn .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN3oYn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN3oYn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN3oYn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN3oYn .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN3oYn .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52YVf4HYC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52YVf4HYC .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52YVf4HYC .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52YVf4HYC .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52YVf4HYC .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52YVf4HYC .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52ZoUTjQC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52ZoUTjQC .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52ZoUTjQC .mbr-section-title {
  color: #ffffff;
}
.cid-t52ZoUTjQC .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52ZoUTjQC .mbr-section-title,
.cid-t52ZoUTjQC .mbr-section-btn {
  text-align: center;
}
.cid-t59QZGWeBq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59QZGWeBq .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59QZGWeBq .mbr-section-title {
  color: #ffffff;
}
.cid-t59QZGWeBq .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59QZGWeBq .mbr-section-title,
.cid-t59QZGWeBq .mbr-section-btn {
  text-align: center;
}
.cid-t4Rm2Pi3O6 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4Rm2Pi3O6 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #08ae16;
  margin-bottom: 2rem;
}
.cid-t4Rm2Pi3O6 .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t4Rm2Pi3O6 .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-t4Rm2Pi3O6 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm2Pi3O6 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4Rm2Pi3O6 .carousel-item .media-container-row {
  -webkit-flex-grow: 10;
  flex-grow: 10;
}
.cid-t4Rm2Pi3O6 .carousel-item .wrap-img {
  text-align: center;
}
.cid-t4Rm2Pi3O6 .carousel-item .wrap-img img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
}
.cid-t4Rm2Pi3O6 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t4Rm2Pi3O6 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-t4Rm2Pi3O6 .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 3px solid #ed1285;
}
.cid-t4Rm2Pi3O6 .carousel-indicators li.active {
  border-color: #333333;
}
@media (max-width: 768px) {
  .cid-t4Rm2Pi3O6 .second-col {
    padding-top: 2rem;
  }
}
.cid-t4Rm2Pi3O6 strich {
  color: #333333;
  font-size: 30px;
  text-decoration: underline 1px;
  line-height: 36px;
}
.cid-t4Rm2Pi3O6 klein {
  font-size: 14px;
  line-height: 24px;
}
.cid-t4Rm2QGtx9 {
  z-index: 1000;
  width: 100%;
}
.cid-t4Rm2QGtx9 nav.navbar {
  position: fixed;
}
.cid-t4Rm2QGtx9 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4Rm2QGtx9 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4Rm2QGtx9 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4Rm2QGtx9 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4Rm2QGtx9 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4Rm2QGtx9 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4Rm2QGtx9 .dropdown-item:hover,
.cid-t4Rm2QGtx9 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4Rm2QGtx9 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4Rm2QGtx9 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4Rm2QGtx9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4Rm2QGtx9 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4Rm2QGtx9 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4Rm2QGtx9 .container {
  display: flex;
  margin: auto;
}
.cid-t4Rm2QGtx9 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4Rm2QGtx9 .dropdown-menu,
.cid-t4Rm2QGtx9 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4Rm2QGtx9 .nav-item:focus,
.cid-t4Rm2QGtx9 .nav-link:focus {
  outline: none;
}
.cid-t4Rm2QGtx9 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm2QGtx9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4Rm2QGtx9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4Rm2QGtx9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4Rm2QGtx9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4Rm2QGtx9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4Rm2QGtx9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4Rm2QGtx9 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4Rm2QGtx9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4Rm2QGtx9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4Rm2QGtx9 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4Rm2QGtx9 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4Rm2QGtx9 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4Rm2QGtx9 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4Rm2QGtx9 .navbar.collapsed {
  justify-content: center;
}
.cid-t4Rm2QGtx9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4Rm2QGtx9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4Rm2QGtx9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4Rm2QGtx9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4Rm2QGtx9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4Rm2QGtx9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4Rm2QGtx9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4Rm2QGtx9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4Rm2QGtx9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4Rm2QGtx9 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4Rm2QGtx9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4Rm2QGtx9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4Rm2QGtx9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4Rm2QGtx9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4Rm2QGtx9 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4Rm2QGtx9 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4Rm2QGtx9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4Rm2QGtx9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4Rm2QGtx9 .navbar .navbar-buttons,
  .cid-t4Rm2QGtx9 .navbar .icons-menu {
    display: none;
  }
  .cid-t4Rm2QGtx9 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4Rm2QGtx9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4Rm2QGtx9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4Rm2QGtx9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4Rm2QGtx9 .dropdown-item.active,
.cid-t4Rm2QGtx9 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4Rm2QGtx9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4Rm2QGtx9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4Rm2QGtx9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4Rm2QGtx9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4Rm2QGtx9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4Rm2QGtx9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4Rm2QGtx9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4Rm2QGtx9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4Rm2QGtx9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm2QGtx9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4Rm2QGtx9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4Rm2QGtx9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm2QGtx9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4Rm2QGtx9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4Rm2QGtx9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4Rm2QGtx9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4Rm2QGtx9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4Rm2QGtx9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4Rm2QGtx9 .navbar {
    height: 70px;
  }
  .cid-t4Rm2QGtx9 .navbar.opened {
    height: auto;
  }
  .cid-t4Rm2QGtx9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4Rm2QGtx9 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4Rm2QGtx9 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4Rm2QGtx9 orange {
  color: #e15a00;
}
.cid-t4Rm2QGtx9 gruen {
  color: #059800;
}
.cid-t5CGPGPiRG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CGPGPiRG h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5CGPGPiRG p {
  color: #767676;
}
.cid-t5CGPGPiRG .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5CGPGPiRG .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5CGPGPiRG .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5CGPGPiRG .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5CGPGPiRG .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5CGPGPiRG .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5CGPGPiRG rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5CGPGPiRG .b-descr {
  color: #bc0a14;
}
.cid-t5CGODKBHN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5CGODKBHN hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CGODKBHN hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CGODKBHN h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CGODKBHN .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CGODKBHN H2 {
  color: #767676;
}
.cid-t5CGP3R8DE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5CGP3R8DE hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5CGP3R8DE hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5CGP3R8DE h2 {
  float: left;
  color: #0082c3;
}
.cid-t5CGP3R8DE .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5CGP3R8DE H2 {
  color: #767676;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN3RWo.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN3RWo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN3RWo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN3RWo .modal-content,
.cid-t5NmlN3RWo .modal-dialog {
  height: auto;
}
.cid-t5NmlN3RWo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN3RWo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN3RWo .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN3RWo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN3RWo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN3RWo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN3RWo .mbr-text {
  text-align: left;
}
.cid-t5NmlN3RWo .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN3RWo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN3RWo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN3RWo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN3RWo .modal-open {
  overflow: hidden;
}
.cid-t5NmlN3RWo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN3RWo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN3RWo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN3RWo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN3RWo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN3RWo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN3RWo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN3RWo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN3RWo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN3RWo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN3RWo .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN3RWo .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN3RWo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN3RWo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3RWo .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN3RWo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN3RWo .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN3RWo .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN3RWo .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN3RWo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN3RWo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN3RWo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3RWo .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN3RWo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN3RWo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN3RWo .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN3RWo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN3RWo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN3RWo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN3RWo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN3RWo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN3RWo .modal-lg,
  .cid-t5NmlN3RWo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN3RWo .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN3RWo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN3RWo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN3RWo .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN3RWo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN3RWo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN3RWo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN3RWo .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN3RWo .mbr-section-btn .btn {
  margin: 0;
}
.cid-t52CokdfnV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52CokdfnV .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t52CokdfnV .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t52CokdfnV .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t52CokdfnV .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t52CokdfnV .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t52IwK0bLz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t52IwK0bLz .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t52IwK0bLz .mbr-section-title {
  color: #ffffff;
}
.cid-t52IwK0bLz .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t52IwK0bLz .mbr-section-title,
.cid-t52IwK0bLz .mbr-section-btn {
  text-align: center;
}
.cid-t5es3UUGPo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5es3UUGPo .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5es3UUGPo .mbr-section-title {
  color: #ffffff;
}
.cid-t5es3UUGPo .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5es3UUGPo .mbr-section-title,
.cid-t5es3UUGPo .mbr-section-btn {
  text-align: center;
}
.cid-sC1jhzW5xt {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sC1jhzW5xt img {
  width: 90%;
}
.cid-sC1jhzW5xt .mbr-text,
.cid-sC1jhzW5xt .mbr-section-btn {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sC1jhzW5xt img {
    width: 100%;
  }
  .cid-sC1jhzW5xt .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-sC1jhzW5xt H3 {
  color: #169505;
}
.cid-t52KdIijyp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t52KdIijyp .card-box {
  padding: 1rem;
  padding-top: 1rem;
}
@media (min-width: 1500px) {
  .cid-t52KdIijyp .container {
    max-width: 1400px;
  }
}
.cid-t52KdIijyp img {
  width: 100%;
}
.cid-t52KdIijyp .link-wrap {
  width: 100%;
}
.cid-t52KdIijyp .link {
  display: inline-block;
}
.cid-t52KdIijyp .card {
  transition: all 0.3s;
}
.cid-t52KdIijyp .card:hover {
  transform: translateY(-10px);
}
.cid-t52KdIijyp .card-wrapper {
  background-position: center;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px;
  cursor: pointer;
  background: #f4f6e9;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-t52KdIijyp .card-box {
    padding: 0.1rem;
    padding-top: 2rem;
  }
}
.cid-t52KdIijyp .card-title,
.cid-t52KdIijyp .card-box {
  text-align: center;
  color: #155f83;
}
.cid-t52KdIijyp .main-title {
  text-align: center;
  color: #155f83;
}
.cid-t52KiSKGNa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t52KiSKGNa .card-box {
  padding: 1rem;
  padding-top: 1rem;
}
@media (min-width: 1500px) {
  .cid-t52KiSKGNa .container {
    max-width: 1400px;
  }
}
.cid-t52KiSKGNa img {
  width: 100%;
}
.cid-t52KiSKGNa .link-wrap {
  width: 100%;
}
.cid-t52KiSKGNa .link {
  display: inline-block;
}
.cid-t52KiSKGNa .card {
  transition: all 0.3s;
}
.cid-t52KiSKGNa .card:hover {
  transform: translateY(-10px);
}
.cid-t52KiSKGNa .card-wrapper {
  background-position: center;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px;
  cursor: pointer;
  background: #f4f6e9;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-t52KiSKGNa .card-box {
    padding: 0.1rem;
    padding-top: 2rem;
  }
}
.cid-t52KiSKGNa .card-title,
.cid-t52KiSKGNa .card-box {
  text-align: center;
  color: #155f83;
}
.cid-t52KiSKGNa .main-title {
  text-align: left;
  color: #dba700;
}
.cid-t52KiSKGNa .mbr-text,
.cid-t52KiSKGNa .link-wrap {
  text-align: center;
}
.cid-t5Cf3YaIbx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cf3YaIbx h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5Cf3YaIbx p {
  color: #767676;
}
.cid-t5Cf3YaIbx .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5Cf3YaIbx .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5Cf3YaIbx .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5Cf3YaIbx .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5Cf3YaIbx .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5Cf3YaIbx .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5Cf3YaIbx rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5Cf3YaIbx .b-descr {
  color: #bc0a14;
}
.cid-t530jqYtHZ {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t530jqYtHZ h2 {
  text-align: left;
}
.cid-t530jqYtHZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t530jqYtHZ p {
  color: #767676;
  text-align: left;
}
.cid-t530jqYtHZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t530jqYtHZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t530jqYtHZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t530jqYtHZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t530jqYtHZ .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t530jqYtHZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t530jqYtHZ .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t530jqYtHZ .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t530jqYtHZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-t530jqYtHZ H4 {
  color: #82786e;
}
.cid-t530WU60mC {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t530WU60mC h2 {
  text-align: left;
}
.cid-t530WU60mC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t530WU60mC p {
  color: #767676;
  text-align: left;
}
.cid-t530WU60mC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t530WU60mC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t530WU60mC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t530WU60mC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t530WU60mC .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t530WU60mC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t530WU60mC .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t530WU60mC .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t530WU60mC .card-img span {
    font-size: 40px !important;
  }
}
.cid-t530WU60mC H4 {
  color: #82786e;
}
.cid-t530XpnFkC {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t530XpnFkC h2 {
  text-align: left;
}
.cid-t530XpnFkC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t530XpnFkC p {
  color: #767676;
  text-align: left;
}
.cid-t530XpnFkC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t530XpnFkC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t530XpnFkC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t530XpnFkC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t530XpnFkC .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t530XpnFkC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t530XpnFkC .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t530XpnFkC .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t530XpnFkC .card-img span {
    font-size: 40px !important;
  }
}
.cid-t530XpnFkC H4 {
  color: #82786e;
}
.cid-t530XSVJwI {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t530XSVJwI h2 {
  text-align: left;
}
.cid-t530XSVJwI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t530XSVJwI p {
  color: #767676;
  text-align: left;
}
.cid-t530XSVJwI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t530XSVJwI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t530XSVJwI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t530XSVJwI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t530XSVJwI .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t530XSVJwI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t530XSVJwI .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t530XSVJwI .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t530XSVJwI .card-img span {
    font-size: 40px !important;
  }
}
.cid-t530XSVJwI H4 {
  color: #82786e;
}
.cid-t530Ym4oIG {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t530Ym4oIG h2 {
  text-align: left;
}
.cid-t530Ym4oIG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t530Ym4oIG p {
  color: #767676;
  text-align: left;
}
.cid-t530Ym4oIG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t530Ym4oIG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t530Ym4oIG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t530Ym4oIG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t530Ym4oIG .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t530Ym4oIG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t530Ym4oIG .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t530Ym4oIG .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t530Ym4oIG .card-img span {
    font-size: 40px !important;
  }
}
.cid-t530Ym4oIG H4 {
  color: #82786e;
}
.cid-t530YUXKcF {
  padding-top: 1px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t530YUXKcF h2 {
  text-align: left;
}
.cid-t530YUXKcF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-t530YUXKcF p {
  color: #767676;
  text-align: left;
}
.cid-t530YUXKcF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t530YUXKcF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  margin-right: 10px;
}
.cid-t530YUXKcF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t530YUXKcF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  margin-right: 10px;
}
.cid-t530YUXKcF .card-img {
  padding-right: 0.5rem;
  width: auto;
  margin-right: 2px;
}
.cid-t530YUXKcF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t530YUXKcF .mbr-figure {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .cid-t530YUXKcF .mbr-figure {
    padding-right: 100px;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-t530YUXKcF .card-img span {
    font-size: 40px !important;
  }
}
.cid-t530YUXKcF H4 {
  color: #82786e;
}
.cid-t5Cf2kwGiG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Cf2kwGiG hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Cf2kwGiG hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Cf2kwGiG h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Cf2kwGiG .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Cf2kwGiG H2 {
  color: #767676;
}
.cid-t5Cf37fXIY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5Cf37fXIY hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Cf37fXIY hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Cf37fXIY h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Cf37fXIY .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Cf37fXIY H2 {
  color: #767676;
}
.cid-t4ReG680r0 {
  z-index: 1000;
  width: 100%;
}
.cid-t4ReG680r0 nav.navbar {
  position: fixed;
}
.cid-t4ReG680r0 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t4ReG680r0 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t4ReG680r0 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t4ReG680r0 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t4ReG680r0 .dropdown-item:hover,
.cid-t4ReG680r0 .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t4ReG680r0 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t4ReG680r0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t4ReG680r0 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t4ReG680r0 .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t4ReG680r0 .container {
  display: flex;
  margin: auto;
}
.cid-t4ReG680r0 .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t4ReG680r0 .dropdown-menu,
.cid-t4ReG680r0 .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4ReG680r0 .nav-item:focus,
.cid-t4ReG680r0 .nav-link:focus {
  outline: none;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4ReG680r0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4ReG680r0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4ReG680r0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4ReG680r0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t4ReG680r0 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4ReG680r0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4ReG680r0 .navbar.opened {
  transition: all 0.3s;
}
.cid-t4ReG680r0 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t4ReG680r0 .navbar .navbar-logo img {
  width: auto;
}
.cid-t4ReG680r0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar.collapsed {
  justify-content: center;
}
.cid-t4ReG680r0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4ReG680r0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4ReG680r0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4ReG680r0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4ReG680r0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4ReG680r0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4ReG680r0 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t4ReG680r0 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t4ReG680r0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4ReG680r0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4ReG680r0 .navbar .navbar-buttons,
  .cid-t4ReG680r0 .navbar .icons-menu {
    display: none;
  }
  .cid-t4ReG680r0 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t4ReG680r0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4ReG680r0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4ReG680r0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4ReG680r0 .dropdown-item.active,
.cid-t4ReG680r0 .dropdown-item:active {
  background-color: transparent;
}
.cid-t4ReG680r0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4ReG680r0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4ReG680r0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4ReG680r0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4ReG680r0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4ReG680r0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4ReG680r0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4ReG680r0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4ReG680r0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t4ReG680r0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4ReG680r0 .navbar {
    height: 70px;
  }
  .cid-t4ReG680r0 .navbar.opened {
    height: auto;
  }
  .cid-t4ReG680r0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4ReG680r0 .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t4ReG680r0 fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t4ReG680r0 orange {
  color: #e15a00;
}
.cid-t4ReG680r0 gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN44Sx.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN44Sx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN44Sx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN44Sx .modal-content,
.cid-t5NmlN44Sx .modal-dialog {
  height: auto;
}
.cid-t5NmlN44Sx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN44Sx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN44Sx .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN44Sx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN44Sx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN44Sx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN44Sx .mbr-text {
  text-align: left;
}
.cid-t5NmlN44Sx .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN44Sx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN44Sx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN44Sx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN44Sx .modal-open {
  overflow: hidden;
}
.cid-t5NmlN44Sx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN44Sx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN44Sx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN44Sx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN44Sx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN44Sx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN44Sx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN44Sx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN44Sx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN44Sx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN44Sx .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN44Sx .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN44Sx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN44Sx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN44Sx .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN44Sx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN44Sx .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN44Sx .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN44Sx .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN44Sx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN44Sx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN44Sx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN44Sx .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN44Sx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN44Sx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN44Sx .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN44Sx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN44Sx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN44Sx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN44Sx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN44Sx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN44Sx .modal-lg,
  .cid-t5NmlN44Sx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN44Sx .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN44Sx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN44Sx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN44Sx .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN44Sx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN44Sx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN44Sx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN44Sx .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN44Sx .mbr-section-btn .btn {
  margin: 0;
}
.cid-t58KR9M9dj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t58KR9M9dj .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t58KR9M9dj .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t58KR9M9dj .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t58KR9M9dj .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t58KR9M9dj .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t59PPfxrCF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59PPfxrCF .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59PPfxrCF .mbr-section-title {
  color: #ffffff;
}
.cid-t59PPfxrCF .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59PPfxrCF .mbr-section-title,
.cid-t59PPfxrCF .mbr-section-btn {
  text-align: center;
}
.cid-t59PVrfBMF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t59PVrfBMF .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t59PVrfBMF .mbr-section-title {
  color: #ffffff;
}
.cid-t59PVrfBMF .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t59PVrfBMF .mbr-section-title,
.cid-t59PVrfBMF .mbr-section-btn {
  text-align: center;
}
.cid-t59uhfufgg {
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #ffffff;
}
.cid-t59uhfufgg .image_behind,
.cid-t59uhfufgg .image_ahead {
  display: none;
}
@media (min-width: 992px) {
  .cid-t59uhfufgg .image_wrapper {
    display: inline-block;
  }
  .cid-t59uhfufgg .image_ahead {
    display: block;
    position: absolute;
    right: -80px;
    bottom: -90px;
    z-index: 5;
    width: 160px;
    height: 240px;
  }
  .cid-t59uhfufgg .image_ahead img {
    height: 100%;
  }
  .cid-t59uhfufgg .main_header {
    padding-right: 100px;
  }
}
.cid-t59uhfufgg .mbr-section-title {
  margin-bottom: 18px;
  border-radius: 50%;
  color: #169505;
}
.cid-t59uhfufgg .mbr-text {
  margin-bottom: 33px;
}
.cid-t59uhfufgg .item-img {
  position: relative;
  z-index: 3;
  height: 100%;
}
.cid-t59uhfufgg .item-img:before,
.cid-t59uhfufgg .image_ahead:before {
  content: "";
  position: absolute;
  border: 1px solid #eae8e4;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  pointer-events: none;
  border-radius: 10px;
}
.cid-t59uhfufgg img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t59uhfufgg .image_wrapper {
    margin-bottom: 60px;
  }
}
.cid-t59uDf82bt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t59uDf82bt h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t59uDf82bt p {
  color: #767676;
}
.cid-t59uDf82bt .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t59uDf82bt .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t59uDf82bt .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t59uDf82bt .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t59uDf82bt .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t59uDf82bt .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t59uDf82bt rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t59uDf82bt .b-descr {
  color: #bc0a14;
}
.cid-t59sdGFfak {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t59sdGFfak .image_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}
.cid-t59sdGFfak .item-img {
  width: 150px;
  margin-bottom: 21px;
  height: 100%;
  display: inline-block;
}
.cid-t59sdGFfak img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.cid-t59sdGFfak .item {
  margin-bottom: 70px;
}
.cid-t59sdGFfak .item-title {
  margin-bottom: 11px;
  color: #202020;
}
.cid-t59sdGFfak .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-t59sdGFfak .mbr-text {
  margin-bottom: 18px;
}
.cid-t59sdGFfak .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-t59sdGFfak .linkBtn a:after,
.cid-t59sdGFfak .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-t59sdGFfak .linkBtn a:before {
  left: 0;
}
.cid-t59sdGFfak .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-t59sdGFfak .linkBtn a:hover:before,
.cid-t59sdGFfak .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-t5bdWXFsWx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5bdWXFsWx hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bdWXFsWx hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bdWXFsWx h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bdWXFsWx .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bdWXFsWx H2 {
  color: #767676;
}
.cid-t59j7QWH8X {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t59j7QWH8X hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t59j7QWH8X hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t59j7QWH8X h2 {
  float: left;
  color: #0082c3;
}
.cid-t59j7QWH8X .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t59j7QWH8X H2 {
  color: #767676;
}
.cid-t58KRj2N8Y {
  z-index: 1000;
  width: 100%;
}
.cid-t58KRj2N8Y nav.navbar {
  position: fixed;
}
.cid-t58KRj2N8Y .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t58KRj2N8Y .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t58KRj2N8Y .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t58KRj2N8Y .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t58KRj2N8Y .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t58KRj2N8Y .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t58KRj2N8Y .dropdown-item:hover,
.cid-t58KRj2N8Y .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t58KRj2N8Y .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t58KRj2N8Y .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t58KRj2N8Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t58KRj2N8Y .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t58KRj2N8Y .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t58KRj2N8Y .container {
  display: flex;
  margin: auto;
}
.cid-t58KRj2N8Y .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t58KRj2N8Y .dropdown-menu,
.cid-t58KRj2N8Y .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t58KRj2N8Y .nav-item:focus,
.cid-t58KRj2N8Y .nav-link:focus {
  outline: none;
}
.cid-t58KRj2N8Y .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t58KRj2N8Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t58KRj2N8Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t58KRj2N8Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t58KRj2N8Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t58KRj2N8Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t58KRj2N8Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t58KRj2N8Y .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t58KRj2N8Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t58KRj2N8Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t58KRj2N8Y .navbar.opened {
  transition: all 0.3s;
}
.cid-t58KRj2N8Y .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t58KRj2N8Y .navbar .navbar-logo img {
  width: auto;
}
.cid-t58KRj2N8Y .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t58KRj2N8Y .navbar.collapsed {
  justify-content: center;
}
.cid-t58KRj2N8Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t58KRj2N8Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t58KRj2N8Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t58KRj2N8Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t58KRj2N8Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t58KRj2N8Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t58KRj2N8Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t58KRj2N8Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t58KRj2N8Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t58KRj2N8Y .navbar .dropdown-menu {
    display: none;
  }
  .cid-t58KRj2N8Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t58KRj2N8Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t58KRj2N8Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t58KRj2N8Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t58KRj2N8Y .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t58KRj2N8Y .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t58KRj2N8Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t58KRj2N8Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t58KRj2N8Y .navbar .navbar-buttons,
  .cid-t58KRj2N8Y .navbar .icons-menu {
    display: none;
  }
  .cid-t58KRj2N8Y .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t58KRj2N8Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t58KRj2N8Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t58KRj2N8Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t58KRj2N8Y .dropdown-item.active,
.cid-t58KRj2N8Y .dropdown-item:active {
  background-color: transparent;
}
.cid-t58KRj2N8Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t58KRj2N8Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t58KRj2N8Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t58KRj2N8Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t58KRj2N8Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t58KRj2N8Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t58KRj2N8Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t58KRj2N8Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t58KRj2N8Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t58KRj2N8Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t58KRj2N8Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t58KRj2N8Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t58KRj2N8Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t58KRj2N8Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t58KRj2N8Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t58KRj2N8Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t58KRj2N8Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t58KRj2N8Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t58KRj2N8Y .navbar {
    height: 70px;
  }
  .cid-t58KRj2N8Y .navbar.opened {
    height: auto;
  }
  .cid-t58KRj2N8Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t58KRj2N8Y .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t58KRj2N8Y fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t58KRj2N8Y orange {
  color: #e15a00;
}
.cid-t58KRj2N8Y gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN4a8I.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN4a8I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN4a8I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN4a8I .modal-content,
.cid-t5NmlN4a8I .modal-dialog {
  height: auto;
}
.cid-t5NmlN4a8I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN4a8I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN4a8I .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN4a8I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN4a8I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN4a8I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN4a8I .mbr-text {
  text-align: left;
}
.cid-t5NmlN4a8I .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN4a8I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN4a8I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN4a8I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN4a8I .modal-open {
  overflow: hidden;
}
.cid-t5NmlN4a8I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN4a8I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN4a8I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN4a8I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN4a8I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN4a8I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN4a8I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN4a8I .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN4a8I .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN4a8I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN4a8I .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN4a8I .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN4a8I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN4a8I .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4a8I .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN4a8I .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN4a8I .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN4a8I .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN4a8I .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN4a8I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN4a8I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN4a8I .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4a8I .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN4a8I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN4a8I .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4a8I .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN4a8I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN4a8I .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN4a8I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN4a8I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN4a8I .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN4a8I .modal-lg,
  .cid-t5NmlN4a8I .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN4a8I .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN4a8I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN4a8I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN4a8I .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN4a8I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN4a8I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN4a8I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN4a8I .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN4a8I .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5bntNLgUQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5bntNLgUQ .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5bntNLgUQ .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5bntNLgUQ .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5bntNLgUQ .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5bntNLgUQ .dentaura-top-spacer {
    height: 95px;
  }
}
.cid-t5bntOqvsM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5bntOqvsM .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5bntOqvsM .mbr-section-title {
  color: #ffffff;
}
.cid-t5bntOqvsM .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5bntOqvsM .mbr-section-title,
.cid-t5bntOqvsM .mbr-section-btn {
  text-align: center;
}
.cid-t5bntOY3DA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5bntOY3DA .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5bntOY3DA .mbr-section-title {
  color: #ffffff;
}
.cid-t5bntOY3DA .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5bntOY3DA .mbr-section-title,
.cid-t5bntOY3DA .mbr-section-btn {
  text-align: center;
}
.cid-t5bntQXhaH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5bntQXhaH hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bntQXhaH hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bntQXhaH h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bntQXhaH .btn {
  align: left !important;
  padding: 5px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.75rem !important;
  border-radius: 4px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bntQXhaH H2 {
  color: #767676;
}
.cid-t5bojjk5j8 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5bojjk5j8 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bojjk5j8 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bojjk5j8 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bojjk5j8 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bojjk5j8 H2 {
  color: #767676;
}
.cid-t5bpkxqqGU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5bpkxqqGU hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bpkxqqGU hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bpkxqqGU h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bpkxqqGU .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bpkxqqGU H2 {
  color: #767676;
}
.cid-t5bqkgGdx7 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5bqkgGdx7 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bqkgGdx7 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bqkgGdx7 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bqkgGdx7 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bqkgGdx7 H2 {
  color: #767676;
}
.cid-t5bqGP9I3J {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5bqGP9I3J hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bqGP9I3J hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bqGP9I3J h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bqGP9I3J .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bqGP9I3J H2 {
  color: #767676;
}
.cid-t5bs2TQd2M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5bs2TQd2M hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bs2TQd2M hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bs2TQd2M h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bs2TQd2M .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bs2TQd2M H2 {
  color: #767676;
}
.cid-t5bsScIKm9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t5bsScIKm9 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5bsScIKm9 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5bsScIKm9 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5bsScIKm9 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5bsScIKm9 H2 {
  color: #767676;
}
.cid-t5btFVaqTN {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t5btFVaqTN hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5btFVaqTN hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5btFVaqTN h2 {
  float: left;
  color: #0082c3;
}
.cid-t5btFVaqTN .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.8rem !important;
  border-radius: 3px !important;
  width: 164px;
  padding-left: 100px;
}
.cid-t5btFVaqTN H2 {
  color: #767676;
}
.cid-t5bntVTQat {
  z-index: 1000;
  width: 100%;
}
.cid-t5bntVTQat nav.navbar {
  position: fixed;
}
.cid-t5bntVTQat .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5bntVTQat .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5bntVTQat .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5bntVTQat .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5bntVTQat .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5bntVTQat .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5bntVTQat .dropdown-item:hover,
.cid-t5bntVTQat .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5bntVTQat .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5bntVTQat .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5bntVTQat .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5bntVTQat .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5bntVTQat .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5bntVTQat .container {
  display: flex;
  margin: auto;
}
.cid-t5bntVTQat .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5bntVTQat .dropdown-menu,
.cid-t5bntVTQat .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5bntVTQat .nav-item:focus,
.cid-t5bntVTQat .nav-link:focus {
  outline: none;
}
.cid-t5bntVTQat .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5bntVTQat .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5bntVTQat .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5bntVTQat .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5bntVTQat .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5bntVTQat .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5bntVTQat .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5bntVTQat .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5bntVTQat .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5bntVTQat .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5bntVTQat .navbar.opened {
  transition: all 0.3s;
}
.cid-t5bntVTQat .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5bntVTQat .navbar .navbar-logo img {
  width: auto;
}
.cid-t5bntVTQat .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5bntVTQat .navbar.collapsed {
  justify-content: center;
}
.cid-t5bntVTQat .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5bntVTQat .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5bntVTQat .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5bntVTQat .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5bntVTQat .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5bntVTQat .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5bntVTQat .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5bntVTQat .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5bntVTQat .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5bntVTQat .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5bntVTQat .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5bntVTQat .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5bntVTQat .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5bntVTQat .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5bntVTQat .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5bntVTQat .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5bntVTQat .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5bntVTQat .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5bntVTQat .navbar .navbar-buttons,
  .cid-t5bntVTQat .navbar .icons-menu {
    display: none;
  }
  .cid-t5bntVTQat .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5bntVTQat .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5bntVTQat .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5bntVTQat .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5bntVTQat .dropdown-item.active,
.cid-t5bntVTQat .dropdown-item:active {
  background-color: transparent;
}
.cid-t5bntVTQat .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5bntVTQat .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5bntVTQat .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5bntVTQat ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5bntVTQat .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5bntVTQat button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5bntVTQat button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5bntVTQat button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5bntVTQat button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5bntVTQat button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5bntVTQat button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5bntVTQat nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5bntVTQat nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5bntVTQat nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5bntVTQat nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5bntVTQat .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5bntVTQat a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5bntVTQat .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5bntVTQat .navbar {
    height: 70px;
  }
  .cid-t5bntVTQat .navbar.opened {
    height: auto;
  }
  .cid-t5bntVTQat .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5bntVTQat .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5bntVTQat fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5bntVTQat orange {
  color: #e15a00;
}
.cid-t5bntVTQat gruen {
  color: #059800;
}
.cid-t5erEzfL7u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5erEzfL7u .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5erEzfL7u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5erEzfL7u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5erEzfL7u .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5erEzfL7u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5erEzfL7u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5erEzfL7u .input-group-btn {
  padding-left: 0;
}
.cid-t5erEzfL7u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5erEzfL7u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5erEzfL7u .mbr-text {
  color: #444;
}
.cid-t5erEzfL7u h5 {
  margin-bottom: 0;
}
.cid-t5erEzfL7u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5erEzfL7u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5erEzfL7u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5erEzfL7u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5erEzfL7u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5erEzfL7u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5erEzfL7u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5erEzfL7u .social-list a:hover {
  opacity: 0.4;
}
.cid-t5erEzfL7u .media-container-row > div {
  padding: 0px;
}
.cid-t5erEzfL7u .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5erEzfL7u .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5erEzfL7u .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5erEzfL7u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5erEzfL7u .social-list,
  .cid-t5erEzfL7u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5erEzfL7u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5erEzfL7u .form-group {
    max-width: 180px;
  }
}
.cid-t5erEzfL7u .links span {
  color: #9e9e9e;
}
.cid-t5erEzfL7u .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5erEzfL7u .logo-title {
  text-align: center;
}
.cid-t5erEzfL7u .logo-title,
.cid-t5erEzfL7u .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5erEzfL7u .logo-sub-title DIV {
  text-align: left;
}
.cid-t5erEzfL7u normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5erEzfL7u orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5ep0IaYkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5ep0IaYkw .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5ep0IaYkw cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN4MHX.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN4MHX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN4MHX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN4MHX .modal-content,
.cid-t5NmlN4MHX .modal-dialog {
  height: auto;
}
.cid-t5NmlN4MHX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN4MHX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN4MHX .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN4MHX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN4MHX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN4MHX .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN4MHX .mbr-text {
  text-align: left;
}
.cid-t5NmlN4MHX .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN4MHX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN4MHX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN4MHX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN4MHX .modal-open {
  overflow: hidden;
}
.cid-t5NmlN4MHX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN4MHX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN4MHX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN4MHX .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN4MHX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN4MHX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN4MHX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN4MHX .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN4MHX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN4MHX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN4MHX .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN4MHX .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN4MHX .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN4MHX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4MHX .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN4MHX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN4MHX .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN4MHX .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN4MHX .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN4MHX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN4MHX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN4MHX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4MHX .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN4MHX .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN4MHX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4MHX .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN4MHX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN4MHX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN4MHX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN4MHX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN4MHX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN4MHX .modal-lg,
  .cid-t5NmlN4MHX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN4MHX .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN4MHX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN4MHX .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN4MHX .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN4MHX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN4MHX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN4MHX .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN4MHX .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN4MHX .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5D74O72eH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5D74O72eH .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5D74O72eH .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5D74O72eH .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5D74O72eH .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5D74O72eH .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t5D74OvPSH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5D74OvPSH .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5D74OvPSH .mbr-section-title {
  color: #ffffff;
}
.cid-t5D74OvPSH .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5D74OvPSH .mbr-section-title,
.cid-t5D74OvPSH .mbr-section-btn {
  text-align: center;
}
.cid-t5D74OVjBk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5D74OVjBk .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5D74OVjBk .mbr-section-title {
  color: #ffffff;
}
.cid-t5D74OVjBk .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5D74OVjBk .mbr-section-title,
.cid-t5D74OVjBk .mbr-section-btn {
  text-align: center;
}
.cid-t5D74Q5ZdR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5D74Q5ZdR h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5D74Q5ZdR p {
  color: #767676;
}
.cid-t5D74Q5ZdR .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5D74Q5ZdR .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5D74Q5ZdR .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5D74Q5ZdR .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5D74Q5ZdR .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5D74Q5ZdR .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5D74Q5ZdR rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5D74Q5ZdR .b-descr {
  color: #bc0a14;
}
.cid-t5DoHe039L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5D74QPTBp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5D74QPTBp hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5D74QPTBp hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5D74QPTBp h2 {
  float: left;
  color: #0082c3;
}
.cid-t5D74QPTBp .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5D74QPTBp H2 {
  color: #767676;
}
.cid-t5D74Rfhle {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5D74Rfhle hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5D74Rfhle hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5D74Rfhle h2 {
  float: left;
  color: #0082c3;
}
.cid-t5D74Rfhle .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5D74Rfhle H2 {
  color: #767676;
}
.cid-t5D74RH2Zq {
  z-index: 1000;
  width: 100%;
}
.cid-t5D74RH2Zq nav.navbar {
  position: fixed;
}
.cid-t5D74RH2Zq .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5D74RH2Zq .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5D74RH2Zq .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5D74RH2Zq .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5D74RH2Zq .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5D74RH2Zq .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5D74RH2Zq .dropdown-item:hover,
.cid-t5D74RH2Zq .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5D74RH2Zq .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5D74RH2Zq .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5D74RH2Zq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5D74RH2Zq .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5D74RH2Zq .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5D74RH2Zq .container {
  display: flex;
  margin: auto;
}
.cid-t5D74RH2Zq .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5D74RH2Zq .dropdown-menu,
.cid-t5D74RH2Zq .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5D74RH2Zq .nav-item:focus,
.cid-t5D74RH2Zq .nav-link:focus {
  outline: none;
}
.cid-t5D74RH2Zq .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5D74RH2Zq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5D74RH2Zq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5D74RH2Zq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5D74RH2Zq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5D74RH2Zq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5D74RH2Zq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5D74RH2Zq .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5D74RH2Zq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5D74RH2Zq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5D74RH2Zq .navbar.opened {
  transition: all 0.3s;
}
.cid-t5D74RH2Zq .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5D74RH2Zq .navbar .navbar-logo img {
  width: auto;
}
.cid-t5D74RH2Zq .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5D74RH2Zq .navbar.collapsed {
  justify-content: center;
}
.cid-t5D74RH2Zq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5D74RH2Zq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5D74RH2Zq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5D74RH2Zq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5D74RH2Zq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5D74RH2Zq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5D74RH2Zq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5D74RH2Zq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5D74RH2Zq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5D74RH2Zq .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5D74RH2Zq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5D74RH2Zq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5D74RH2Zq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5D74RH2Zq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5D74RH2Zq .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5D74RH2Zq .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5D74RH2Zq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5D74RH2Zq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5D74RH2Zq .navbar .navbar-buttons,
  .cid-t5D74RH2Zq .navbar .icons-menu {
    display: none;
  }
  .cid-t5D74RH2Zq .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5D74RH2Zq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5D74RH2Zq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5D74RH2Zq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5D74RH2Zq .dropdown-item.active,
.cid-t5D74RH2Zq .dropdown-item:active {
  background-color: transparent;
}
.cid-t5D74RH2Zq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5D74RH2Zq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5D74RH2Zq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5D74RH2Zq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5D74RH2Zq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5D74RH2Zq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5D74RH2Zq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5D74RH2Zq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5D74RH2Zq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5D74RH2Zq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5D74RH2Zq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5D74RH2Zq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5D74RH2Zq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5D74RH2Zq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5D74RH2Zq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5D74RH2Zq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5D74RH2Zq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5D74RH2Zq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5D74RH2Zq .navbar {
    height: 70px;
  }
  .cid-t5D74RH2Zq .navbar.opened {
    height: auto;
  }
  .cid-t5D74RH2Zq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5D74RH2Zq .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5D74RH2Zq fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5D74RH2Zq orange {
  color: #e15a00;
}
.cid-t5D74RH2Zq gruen {
  color: #059800;
}
.cid-t5D74SoZ6r {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5D74SoZ6r .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5D74SoZ6r .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5D74SoZ6r .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5D74SoZ6r .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5D74SoZ6r .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5D74SoZ6r .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5D74SoZ6r .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5D74SoZ6r .input-group-btn {
  padding-left: 0;
}
.cid-t5D74SoZ6r .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5D74SoZ6r .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5D74SoZ6r .mbr-text {
  color: #444;
}
.cid-t5D74SoZ6r h5 {
  margin-bottom: 0;
}
.cid-t5D74SoZ6r .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5D74SoZ6r .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5D74SoZ6r .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5D74SoZ6r .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5D74SoZ6r .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5D74SoZ6r .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5D74SoZ6r .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5D74SoZ6r .social-list a:hover {
  opacity: 0.4;
}
.cid-t5D74SoZ6r .media-container-row > div {
  padding: 0px;
}
.cid-t5D74SoZ6r .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5D74SoZ6r .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5D74SoZ6r .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5D74SoZ6r .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5D74SoZ6r .social-list,
  .cid-t5D74SoZ6r .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5D74SoZ6r h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5D74SoZ6r .form-group {
    max-width: 180px;
  }
}
.cid-t5D74SoZ6r .links span {
  color: #9e9e9e;
}
.cid-t5D74SoZ6r .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5D74SoZ6r .logo-title {
  text-align: center;
}
.cid-t5D74SoZ6r .logo-title,
.cid-t5D74SoZ6r .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5D74SoZ6r .logo-sub-title DIV {
  text-align: left;
}
.cid-t5D74SoZ6r normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5D74SoZ6r orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5D74TgERl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5D74TgERl .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5D74TgERl cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN49lm.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN49lm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN49lm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN49lm .modal-content,
.cid-t5NmlN49lm .modal-dialog {
  height: auto;
}
.cid-t5NmlN49lm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN49lm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN49lm .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN49lm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN49lm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN49lm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN49lm .mbr-text {
  text-align: left;
}
.cid-t5NmlN49lm .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN49lm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN49lm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN49lm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN49lm .modal-open {
  overflow: hidden;
}
.cid-t5NmlN49lm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN49lm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN49lm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN49lm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN49lm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN49lm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN49lm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN49lm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN49lm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN49lm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN49lm .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN49lm .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN49lm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN49lm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN49lm .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN49lm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN49lm .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN49lm .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN49lm .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN49lm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN49lm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN49lm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN49lm .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN49lm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN49lm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN49lm .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN49lm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN49lm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN49lm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN49lm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN49lm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN49lm .modal-lg,
  .cid-t5NmlN49lm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN49lm .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN49lm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN49lm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN49lm .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN49lm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN49lm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN49lm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN49lm .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN49lm .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5HyEkm3PN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HyEkm3PN .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5HyEkm3PN .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5HyEkm3PN .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5HyEkm3PN .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5HyEkm3PN .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t5HyEkS514 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HyEkS514 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HyEkS514 .mbr-section-title {
  color: #ffffff;
}
.cid-t5HyEkS514 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HyEkS514 .mbr-section-title,
.cid-t5HyEkS514 .mbr-section-btn {
  text-align: center;
}
.cid-t5HyElfK4k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HyElfK4k .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HyElfK4k .mbr-section-title {
  color: #ffffff;
}
.cid-t5HyElfK4k .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HyElfK4k .mbr-section-title,
.cid-t5HyElfK4k .mbr-section-btn {
  text-align: center;
}
.cid-t5HyElAc4h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HyElAc4h h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5HyElAc4h p {
  color: #767676;
}
.cid-t5HyElAc4h .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5HyElAc4h .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5HyElAc4h .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5HyElAc4h .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5HyElAc4h .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5HyElAc4h .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5HyElAc4h rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5HyElAc4h .b-descr {
  color: #bc0a14;
}
.cid-t5Hz0hlkPA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5HyEmOHN0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HyEmOHN0 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HyEmOHN0 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HyEmOHN0 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HyEmOHN0 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HyEmOHN0 H2 {
  color: #767676;
}
.cid-t5HyEncpq3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5HyEncpq3 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HyEncpq3 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HyEncpq3 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HyEncpq3 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HyEncpq3 H2 {
  color: #767676;
}
.cid-t5HyEnBe0J {
  z-index: 1000;
  width: 100%;
}
.cid-t5HyEnBe0J nav.navbar {
  position: fixed;
}
.cid-t5HyEnBe0J .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5HyEnBe0J .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5HyEnBe0J .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5HyEnBe0J .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5HyEnBe0J .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5HyEnBe0J .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5HyEnBe0J .dropdown-item:hover,
.cid-t5HyEnBe0J .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5HyEnBe0J .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5HyEnBe0J .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5HyEnBe0J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5HyEnBe0J .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5HyEnBe0J .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5HyEnBe0J .container {
  display: flex;
  margin: auto;
}
.cid-t5HyEnBe0J .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5HyEnBe0J .dropdown-menu,
.cid-t5HyEnBe0J .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5HyEnBe0J .nav-item:focus,
.cid-t5HyEnBe0J .nav-link:focus {
  outline: none;
}
.cid-t5HyEnBe0J .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5HyEnBe0J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5HyEnBe0J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5HyEnBe0J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5HyEnBe0J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5HyEnBe0J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5HyEnBe0J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5HyEnBe0J .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5HyEnBe0J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5HyEnBe0J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5HyEnBe0J .navbar.opened {
  transition: all 0.3s;
}
.cid-t5HyEnBe0J .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5HyEnBe0J .navbar .navbar-logo img {
  width: auto;
}
.cid-t5HyEnBe0J .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5HyEnBe0J .navbar.collapsed {
  justify-content: center;
}
.cid-t5HyEnBe0J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5HyEnBe0J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5HyEnBe0J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5HyEnBe0J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5HyEnBe0J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5HyEnBe0J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5HyEnBe0J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5HyEnBe0J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HyEnBe0J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5HyEnBe0J .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5HyEnBe0J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5HyEnBe0J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5HyEnBe0J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5HyEnBe0J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5HyEnBe0J .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5HyEnBe0J .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5HyEnBe0J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5HyEnBe0J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5HyEnBe0J .navbar .navbar-buttons,
  .cid-t5HyEnBe0J .navbar .icons-menu {
    display: none;
  }
  .cid-t5HyEnBe0J .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5HyEnBe0J .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5HyEnBe0J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5HyEnBe0J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5HyEnBe0J .dropdown-item.active,
.cid-t5HyEnBe0J .dropdown-item:active {
  background-color: transparent;
}
.cid-t5HyEnBe0J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5HyEnBe0J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5HyEnBe0J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5HyEnBe0J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5HyEnBe0J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5HyEnBe0J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5HyEnBe0J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5HyEnBe0J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5HyEnBe0J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HyEnBe0J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HyEnBe0J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5HyEnBe0J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HyEnBe0J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5HyEnBe0J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5HyEnBe0J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HyEnBe0J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5HyEnBe0J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5HyEnBe0J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5HyEnBe0J .navbar {
    height: 70px;
  }
  .cid-t5HyEnBe0J .navbar.opened {
    height: auto;
  }
  .cid-t5HyEnBe0J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5HyEnBe0J .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5HyEnBe0J fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5HyEnBe0J orange {
  color: #e15a00;
}
.cid-t5HyEnBe0J gruen {
  color: #059800;
}
.cid-t5HyEo9sab {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5HyEo9sab .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5HyEo9sab .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5HyEo9sab .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5HyEo9sab .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5HyEo9sab .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5HyEo9sab .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5HyEo9sab .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5HyEo9sab .input-group-btn {
  padding-left: 0;
}
.cid-t5HyEo9sab .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5HyEo9sab .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5HyEo9sab .mbr-text {
  color: #444;
}
.cid-t5HyEo9sab h5 {
  margin-bottom: 0;
}
.cid-t5HyEo9sab .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5HyEo9sab .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5HyEo9sab .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5HyEo9sab .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5HyEo9sab .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5HyEo9sab .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5HyEo9sab .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5HyEo9sab .social-list a:hover {
  opacity: 0.4;
}
.cid-t5HyEo9sab .media-container-row > div {
  padding: 0px;
}
.cid-t5HyEo9sab .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5HyEo9sab .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5HyEo9sab .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HyEo9sab .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5HyEo9sab .social-list,
  .cid-t5HyEo9sab .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5HyEo9sab h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5HyEo9sab .form-group {
    max-width: 180px;
  }
}
.cid-t5HyEo9sab .links span {
  color: #9e9e9e;
}
.cid-t5HyEo9sab .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5HyEo9sab .logo-title {
  text-align: center;
}
.cid-t5HyEo9sab .logo-title,
.cid-t5HyEo9sab .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5HyEo9sab .logo-sub-title DIV {
  text-align: left;
}
.cid-t5HyEo9sab normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5HyEo9sab orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5HyEoXa4D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5HyEoXa4D .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5HyEoXa4D cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN4Gum.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN4Gum.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN4Gum.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN4Gum .modal-content,
.cid-t5NmlN4Gum .modal-dialog {
  height: auto;
}
.cid-t5NmlN4Gum .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN4Gum .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN4Gum .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN4Gum .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN4Gum .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN4Gum .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN4Gum .mbr-text {
  text-align: left;
}
.cid-t5NmlN4Gum .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN4Gum .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN4Gum .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN4Gum .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN4Gum .modal-open {
  overflow: hidden;
}
.cid-t5NmlN4Gum .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN4Gum .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN4Gum .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN4Gum .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN4Gum .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN4Gum .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN4Gum .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN4Gum .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN4Gum .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN4Gum .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN4Gum .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN4Gum .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN4Gum .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN4Gum .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4Gum .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN4Gum .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN4Gum .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN4Gum .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN4Gum .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN4Gum .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN4Gum .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN4Gum .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4Gum .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN4Gum .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN4Gum .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4Gum .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN4Gum .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN4Gum .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN4Gum .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN4Gum .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN4Gum .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN4Gum .modal-lg,
  .cid-t5NmlN4Gum .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN4Gum .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN4Gum .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN4Gum .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN4Gum .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN4Gum .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN4Gum .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN4Gum .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN4Gum .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN4Gum .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5Hz9TapHE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Hz9TapHE .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5Hz9TapHE .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5Hz9TapHE .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5Hz9TapHE .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5Hz9TapHE .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t5Hz9THkk8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5Hz9THkk8 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5Hz9THkk8 .mbr-section-title {
  color: #ffffff;
}
.cid-t5Hz9THkk8 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5Hz9THkk8 .mbr-section-title,
.cid-t5Hz9THkk8 .mbr-section-btn {
  text-align: center;
}
.cid-t5Hz9U1bYh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5Hz9U1bYh .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5Hz9U1bYh .mbr-section-title {
  color: #ffffff;
}
.cid-t5Hz9U1bYh .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5Hz9U1bYh .mbr-section-title,
.cid-t5Hz9U1bYh .mbr-section-btn {
  text-align: center;
}
.cid-t5Hz9UlhrX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Hz9UlhrX h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5Hz9UlhrX p {
  color: #767676;
}
.cid-t5Hz9UlhrX .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5Hz9UlhrX .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5Hz9UlhrX .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5Hz9UlhrX .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5Hz9UlhrX .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5Hz9UlhrX .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5Hz9UlhrX rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5Hz9UlhrX .b-descr {
  color: #bc0a14;
}
.cid-t5Hz9UTsfQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5Hz9VcL34 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5Hz9VcL34 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Hz9VcL34 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Hz9VcL34 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Hz9VcL34 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Hz9VcL34 H2 {
  color: #767676;
}
.cid-t5Hz9VyQFc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5Hz9VyQFc hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5Hz9VyQFc hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5Hz9VyQFc h2 {
  float: left;
  color: #0082c3;
}
.cid-t5Hz9VyQFc .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5Hz9VyQFc H2 {
  color: #767676;
}
.cid-t5Hz9VRVsW {
  z-index: 1000;
  width: 100%;
}
.cid-t5Hz9VRVsW nav.navbar {
  position: fixed;
}
.cid-t5Hz9VRVsW .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5Hz9VRVsW .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5Hz9VRVsW .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5Hz9VRVsW .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5Hz9VRVsW .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5Hz9VRVsW .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5Hz9VRVsW .dropdown-item:hover,
.cid-t5Hz9VRVsW .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5Hz9VRVsW .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5Hz9VRVsW .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5Hz9VRVsW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5Hz9VRVsW .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5Hz9VRVsW .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5Hz9VRVsW .container {
  display: flex;
  margin: auto;
}
.cid-t5Hz9VRVsW .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5Hz9VRVsW .dropdown-menu,
.cid-t5Hz9VRVsW .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5Hz9VRVsW .nav-item:focus,
.cid-t5Hz9VRVsW .nav-link:focus {
  outline: none;
}
.cid-t5Hz9VRVsW .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5Hz9VRVsW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5Hz9VRVsW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5Hz9VRVsW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5Hz9VRVsW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5Hz9VRVsW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5Hz9VRVsW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5Hz9VRVsW .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5Hz9VRVsW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5Hz9VRVsW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5Hz9VRVsW .navbar.opened {
  transition: all 0.3s;
}
.cid-t5Hz9VRVsW .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5Hz9VRVsW .navbar .navbar-logo img {
  width: auto;
}
.cid-t5Hz9VRVsW .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5Hz9VRVsW .navbar.collapsed {
  justify-content: center;
}
.cid-t5Hz9VRVsW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5Hz9VRVsW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5Hz9VRVsW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5Hz9VRVsW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5Hz9VRVsW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5Hz9VRVsW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5Hz9VRVsW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5Hz9VRVsW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5Hz9VRVsW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5Hz9VRVsW .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5Hz9VRVsW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5Hz9VRVsW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5Hz9VRVsW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5Hz9VRVsW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5Hz9VRVsW .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5Hz9VRVsW .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5Hz9VRVsW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5Hz9VRVsW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5Hz9VRVsW .navbar .navbar-buttons,
  .cid-t5Hz9VRVsW .navbar .icons-menu {
    display: none;
  }
  .cid-t5Hz9VRVsW .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5Hz9VRVsW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5Hz9VRVsW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5Hz9VRVsW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5Hz9VRVsW .dropdown-item.active,
.cid-t5Hz9VRVsW .dropdown-item:active {
  background-color: transparent;
}
.cid-t5Hz9VRVsW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5Hz9VRVsW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5Hz9VRVsW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5Hz9VRVsW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5Hz9VRVsW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5Hz9VRVsW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5Hz9VRVsW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5Hz9VRVsW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5Hz9VRVsW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5Hz9VRVsW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5Hz9VRVsW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5Hz9VRVsW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5Hz9VRVsW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5Hz9VRVsW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5Hz9VRVsW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5Hz9VRVsW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5Hz9VRVsW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5Hz9VRVsW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5Hz9VRVsW .navbar {
    height: 70px;
  }
  .cid-t5Hz9VRVsW .navbar.opened {
    height: auto;
  }
  .cid-t5Hz9VRVsW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5Hz9VRVsW .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5Hz9VRVsW fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5Hz9VRVsW orange {
  color: #e15a00;
}
.cid-t5Hz9VRVsW gruen {
  color: #059800;
}
.cid-t5Hz9Wl60z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5Hz9Wl60z .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5Hz9Wl60z .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5Hz9Wl60z .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5Hz9Wl60z .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5Hz9Wl60z .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5Hz9Wl60z .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5Hz9Wl60z .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5Hz9Wl60z .input-group-btn {
  padding-left: 0;
}
.cid-t5Hz9Wl60z .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5Hz9Wl60z .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5Hz9Wl60z .mbr-text {
  color: #444;
}
.cid-t5Hz9Wl60z h5 {
  margin-bottom: 0;
}
.cid-t5Hz9Wl60z .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5Hz9Wl60z .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5Hz9Wl60z .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5Hz9Wl60z .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5Hz9Wl60z .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5Hz9Wl60z .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5Hz9Wl60z .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5Hz9Wl60z .social-list a:hover {
  opacity: 0.4;
}
.cid-t5Hz9Wl60z .media-container-row > div {
  padding: 0px;
}
.cid-t5Hz9Wl60z .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5Hz9Wl60z .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5Hz9Wl60z .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5Hz9Wl60z .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5Hz9Wl60z .social-list,
  .cid-t5Hz9Wl60z .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5Hz9Wl60z h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5Hz9Wl60z .form-group {
    max-width: 180px;
  }
}
.cid-t5Hz9Wl60z .links span {
  color: #9e9e9e;
}
.cid-t5Hz9Wl60z .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5Hz9Wl60z .logo-title {
  text-align: center;
}
.cid-t5Hz9Wl60z .logo-title,
.cid-t5Hz9Wl60z .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5Hz9Wl60z .logo-sub-title DIV {
  text-align: left;
}
.cid-t5Hz9Wl60z normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5Hz9Wl60z orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5Hz9X9rhQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5Hz9X9rhQ .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5Hz9X9rhQ cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN4GmO.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN4GmO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN4GmO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN4GmO .modal-content,
.cid-t5NmlN4GmO .modal-dialog {
  height: auto;
}
.cid-t5NmlN4GmO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN4GmO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN4GmO .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN4GmO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN4GmO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN4GmO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN4GmO .mbr-text {
  text-align: left;
}
.cid-t5NmlN4GmO .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN4GmO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN4GmO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN4GmO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN4GmO .modal-open {
  overflow: hidden;
}
.cid-t5NmlN4GmO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN4GmO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN4GmO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN4GmO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN4GmO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN4GmO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN4GmO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN4GmO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN4GmO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN4GmO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN4GmO .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN4GmO .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN4GmO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN4GmO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4GmO .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN4GmO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN4GmO .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN4GmO .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN4GmO .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN4GmO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN4GmO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN4GmO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4GmO .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN4GmO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN4GmO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4GmO .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN4GmO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN4GmO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN4GmO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN4GmO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN4GmO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN4GmO .modal-lg,
  .cid-t5NmlN4GmO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN4GmO .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN4GmO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN4GmO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN4GmO .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN4GmO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN4GmO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN4GmO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN4GmO .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN4GmO .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5HzkKA628 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HzkKA628 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5HzkKA628 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5HzkKA628 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5HzkKA628 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5HzkKA628 .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t5HzkKWlO9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HzkKWlO9 .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HzkKWlO9 .mbr-section-title {
  color: #ffffff;
}
.cid-t5HzkKWlO9 .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HzkKWlO9 .mbr-section-title,
.cid-t5HzkKWlO9 .mbr-section-btn {
  text-align: center;
}
.cid-t5HzkLejiK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HzkLejiK .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HzkLejiK .mbr-section-title {
  color: #ffffff;
}
.cid-t5HzkLejiK .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HzkLejiK .mbr-section-title,
.cid-t5HzkLejiK .mbr-section-btn {
  text-align: center;
}
.cid-t5HzkLy30o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HzkLy30o h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5HzkLy30o p {
  color: #767676;
}
.cid-t5HzkLy30o .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5HzkLy30o .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5HzkLy30o .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5HzkLy30o .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5HzkLy30o .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5HzkLy30o .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5HzkLy30o rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5HzkLy30o .b-descr {
  color: #bc0a14;
}
.cid-t5HzkM3ZvM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5HzkMmVsP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HzkMmVsP hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HzkMmVsP hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HzkMmVsP h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HzkMmVsP .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HzkMmVsP H2 {
  color: #767676;
}
.cid-t5HzkMDy6e {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5HzkMDy6e hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HzkMDy6e hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HzkMDy6e h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HzkMDy6e .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HzkMDy6e H2 {
  color: #767676;
}
.cid-t5HzkMVFzi {
  z-index: 1000;
  width: 100%;
}
.cid-t5HzkMVFzi nav.navbar {
  position: fixed;
}
.cid-t5HzkMVFzi .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5HzkMVFzi .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5HzkMVFzi .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5HzkMVFzi .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5HzkMVFzi .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5HzkMVFzi .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5HzkMVFzi .dropdown-item:hover,
.cid-t5HzkMVFzi .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5HzkMVFzi .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5HzkMVFzi .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5HzkMVFzi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5HzkMVFzi .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5HzkMVFzi .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5HzkMVFzi .container {
  display: flex;
  margin: auto;
}
.cid-t5HzkMVFzi .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5HzkMVFzi .dropdown-menu,
.cid-t5HzkMVFzi .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5HzkMVFzi .nav-item:focus,
.cid-t5HzkMVFzi .nav-link:focus {
  outline: none;
}
.cid-t5HzkMVFzi .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5HzkMVFzi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5HzkMVFzi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5HzkMVFzi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5HzkMVFzi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5HzkMVFzi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5HzkMVFzi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5HzkMVFzi .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5HzkMVFzi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5HzkMVFzi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5HzkMVFzi .navbar.opened {
  transition: all 0.3s;
}
.cid-t5HzkMVFzi .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5HzkMVFzi .navbar .navbar-logo img {
  width: auto;
}
.cid-t5HzkMVFzi .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5HzkMVFzi .navbar.collapsed {
  justify-content: center;
}
.cid-t5HzkMVFzi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5HzkMVFzi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5HzkMVFzi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5HzkMVFzi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5HzkMVFzi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5HzkMVFzi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5HzkMVFzi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5HzkMVFzi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HzkMVFzi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5HzkMVFzi .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5HzkMVFzi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5HzkMVFzi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5HzkMVFzi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5HzkMVFzi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5HzkMVFzi .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5HzkMVFzi .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5HzkMVFzi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5HzkMVFzi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5HzkMVFzi .navbar .navbar-buttons,
  .cid-t5HzkMVFzi .navbar .icons-menu {
    display: none;
  }
  .cid-t5HzkMVFzi .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5HzkMVFzi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5HzkMVFzi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5HzkMVFzi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5HzkMVFzi .dropdown-item.active,
.cid-t5HzkMVFzi .dropdown-item:active {
  background-color: transparent;
}
.cid-t5HzkMVFzi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5HzkMVFzi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5HzkMVFzi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5HzkMVFzi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5HzkMVFzi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5HzkMVFzi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5HzkMVFzi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5HzkMVFzi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5HzkMVFzi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HzkMVFzi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HzkMVFzi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5HzkMVFzi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HzkMVFzi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5HzkMVFzi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5HzkMVFzi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HzkMVFzi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5HzkMVFzi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5HzkMVFzi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5HzkMVFzi .navbar {
    height: 70px;
  }
  .cid-t5HzkMVFzi .navbar.opened {
    height: auto;
  }
  .cid-t5HzkMVFzi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5HzkMVFzi .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5HzkMVFzi fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5HzkMVFzi orange {
  color: #e15a00;
}
.cid-t5HzkMVFzi gruen {
  color: #059800;
}
.cid-t5HzkNnpBg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5HzkNnpBg .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5HzkNnpBg .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5HzkNnpBg .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5HzkNnpBg .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5HzkNnpBg .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5HzkNnpBg .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5HzkNnpBg .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5HzkNnpBg .input-group-btn {
  padding-left: 0;
}
.cid-t5HzkNnpBg .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5HzkNnpBg .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5HzkNnpBg .mbr-text {
  color: #444;
}
.cid-t5HzkNnpBg h5 {
  margin-bottom: 0;
}
.cid-t5HzkNnpBg .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5HzkNnpBg .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5HzkNnpBg .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5HzkNnpBg .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5HzkNnpBg .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5HzkNnpBg .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5HzkNnpBg .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5HzkNnpBg .social-list a:hover {
  opacity: 0.4;
}
.cid-t5HzkNnpBg .media-container-row > div {
  padding: 0px;
}
.cid-t5HzkNnpBg .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5HzkNnpBg .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5HzkNnpBg .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HzkNnpBg .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5HzkNnpBg .social-list,
  .cid-t5HzkNnpBg .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5HzkNnpBg h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5HzkNnpBg .form-group {
    max-width: 180px;
  }
}
.cid-t5HzkNnpBg .links span {
  color: #9e9e9e;
}
.cid-t5HzkNnpBg .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5HzkNnpBg .logo-title {
  text-align: center;
}
.cid-t5HzkNnpBg .logo-title,
.cid-t5HzkNnpBg .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5HzkNnpBg .logo-sub-title DIV {
  text-align: left;
}
.cid-t5HzkNnpBg normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5HzkNnpBg orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5HzkO1uzi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5HzkO1uzi .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5HzkO1uzi cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN4glw.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN4glw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN4glw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN4glw .modal-content,
.cid-t5NmlN4glw .modal-dialog {
  height: auto;
}
.cid-t5NmlN4glw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN4glw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN4glw .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN4glw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN4glw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN4glw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN4glw .mbr-text {
  text-align: left;
}
.cid-t5NmlN4glw .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN4glw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN4glw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN4glw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN4glw .modal-open {
  overflow: hidden;
}
.cid-t5NmlN4glw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN4glw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN4glw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN4glw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN4glw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN4glw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN4glw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN4glw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN4glw .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN4glw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN4glw .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN4glw .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN4glw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN4glw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4glw .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN4glw .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN4glw .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN4glw .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN4glw .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN4glw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN4glw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN4glw .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4glw .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN4glw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN4glw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4glw .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN4glw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN4glw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN4glw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN4glw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN4glw .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN4glw .modal-lg,
  .cid-t5NmlN4glw .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN4glw .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN4glw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN4glw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN4glw .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN4glw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN4glw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN4glw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN4glw .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN4glw .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5HztUyayW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HztUyayW .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5HztUyayW .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5HztUyayW .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5HztUyayW .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5HztUyayW .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t5HztUVKdX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HztUVKdX .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HztUVKdX .mbr-section-title {
  color: #ffffff;
}
.cid-t5HztUVKdX .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HztUVKdX .mbr-section-title,
.cid-t5HztUVKdX .mbr-section-btn {
  text-align: center;
}
.cid-t5HztVfP3i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HztVfP3i .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HztVfP3i .mbr-section-title {
  color: #ffffff;
}
.cid-t5HztVfP3i .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HztVfP3i .mbr-section-title,
.cid-t5HztVfP3i .mbr-section-btn {
  text-align: center;
}
.cid-t5HztVzo7I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HztVzo7I h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5HztVzo7I p {
  color: #767676;
}
.cid-t5HztVzo7I .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5HztVzo7I .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5HztVzo7I .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5HztVzo7I .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5HztVzo7I .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5HztVzo7I .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5HztVzo7I rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5HztVzo7I .b-descr {
  color: #bc0a14;
}
.cid-t5HztW6N6s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5HztWny1R {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HztWny1R hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HztWny1R hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HztWny1R h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HztWny1R .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HztWny1R H2 {
  color: #767676;
}
.cid-t5HztWEoeu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5HztWEoeu hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HztWEoeu hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HztWEoeu h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HztWEoeu .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HztWEoeu H2 {
  color: #767676;
}
.cid-t5HztWWOOl {
  z-index: 1000;
  width: 100%;
}
.cid-t5HztWWOOl nav.navbar {
  position: fixed;
}
.cid-t5HztWWOOl .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5HztWWOOl .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5HztWWOOl .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5HztWWOOl .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5HztWWOOl .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5HztWWOOl .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5HztWWOOl .dropdown-item:hover,
.cid-t5HztWWOOl .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5HztWWOOl .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5HztWWOOl .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5HztWWOOl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5HztWWOOl .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5HztWWOOl .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5HztWWOOl .container {
  display: flex;
  margin: auto;
}
.cid-t5HztWWOOl .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5HztWWOOl .dropdown-menu,
.cid-t5HztWWOOl .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5HztWWOOl .nav-item:focus,
.cid-t5HztWWOOl .nav-link:focus {
  outline: none;
}
.cid-t5HztWWOOl .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5HztWWOOl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5HztWWOOl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5HztWWOOl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5HztWWOOl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5HztWWOOl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5HztWWOOl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5HztWWOOl .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5HztWWOOl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5HztWWOOl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5HztWWOOl .navbar.opened {
  transition: all 0.3s;
}
.cid-t5HztWWOOl .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5HztWWOOl .navbar .navbar-logo img {
  width: auto;
}
.cid-t5HztWWOOl .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5HztWWOOl .navbar.collapsed {
  justify-content: center;
}
.cid-t5HztWWOOl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5HztWWOOl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5HztWWOOl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5HztWWOOl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5HztWWOOl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5HztWWOOl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5HztWWOOl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5HztWWOOl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HztWWOOl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5HztWWOOl .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5HztWWOOl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5HztWWOOl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5HztWWOOl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5HztWWOOl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5HztWWOOl .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5HztWWOOl .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5HztWWOOl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5HztWWOOl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5HztWWOOl .navbar .navbar-buttons,
  .cid-t5HztWWOOl .navbar .icons-menu {
    display: none;
  }
  .cid-t5HztWWOOl .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5HztWWOOl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5HztWWOOl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5HztWWOOl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5HztWWOOl .dropdown-item.active,
.cid-t5HztWWOOl .dropdown-item:active {
  background-color: transparent;
}
.cid-t5HztWWOOl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5HztWWOOl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5HztWWOOl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5HztWWOOl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5HztWWOOl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5HztWWOOl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5HztWWOOl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5HztWWOOl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5HztWWOOl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HztWWOOl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HztWWOOl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5HztWWOOl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HztWWOOl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5HztWWOOl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5HztWWOOl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HztWWOOl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5HztWWOOl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5HztWWOOl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5HztWWOOl .navbar {
    height: 70px;
  }
  .cid-t5HztWWOOl .navbar.opened {
    height: auto;
  }
  .cid-t5HztWWOOl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5HztWWOOl .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5HztWWOOl fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5HztWWOOl orange {
  color: #e15a00;
}
.cid-t5HztWWOOl gruen {
  color: #059800;
}
.cid-t5HztXnt1w {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5HztXnt1w .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5HztXnt1w .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5HztXnt1w .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5HztXnt1w .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5HztXnt1w .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5HztXnt1w .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5HztXnt1w .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5HztXnt1w .input-group-btn {
  padding-left: 0;
}
.cid-t5HztXnt1w .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5HztXnt1w .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5HztXnt1w .mbr-text {
  color: #444;
}
.cid-t5HztXnt1w h5 {
  margin-bottom: 0;
}
.cid-t5HztXnt1w .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5HztXnt1w .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5HztXnt1w .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5HztXnt1w .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5HztXnt1w .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5HztXnt1w .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5HztXnt1w .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5HztXnt1w .social-list a:hover {
  opacity: 0.4;
}
.cid-t5HztXnt1w .media-container-row > div {
  padding: 0px;
}
.cid-t5HztXnt1w .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5HztXnt1w .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5HztXnt1w .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HztXnt1w .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5HztXnt1w .social-list,
  .cid-t5HztXnt1w .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5HztXnt1w h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5HztXnt1w .form-group {
    max-width: 180px;
  }
}
.cid-t5HztXnt1w .links span {
  color: #9e9e9e;
}
.cid-t5HztXnt1w .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5HztXnt1w .logo-title {
  text-align: center;
}
.cid-t5HztXnt1w .logo-title,
.cid-t5HztXnt1w .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5HztXnt1w .logo-sub-title DIV {
  text-align: left;
}
.cid-t5HztXnt1w normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5HztXnt1w orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5HztY1oqg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5HztY1oqg .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5HztY1oqg cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN4wDs.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN4wDs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN4wDs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN4wDs .modal-content,
.cid-t5NmlN4wDs .modal-dialog {
  height: auto;
}
.cid-t5NmlN4wDs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN4wDs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN4wDs .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN4wDs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN4wDs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN4wDs .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN4wDs .mbr-text {
  text-align: left;
}
.cid-t5NmlN4wDs .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN4wDs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN4wDs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN4wDs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN4wDs .modal-open {
  overflow: hidden;
}
.cid-t5NmlN4wDs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN4wDs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN4wDs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN4wDs .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN4wDs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN4wDs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN4wDs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN4wDs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN4wDs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN4wDs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN4wDs .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN4wDs .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN4wDs .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN4wDs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4wDs .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN4wDs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN4wDs .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN4wDs .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN4wDs .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN4wDs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN4wDs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN4wDs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4wDs .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN4wDs .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN4wDs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN4wDs .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN4wDs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN4wDs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN4wDs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN4wDs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN4wDs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN4wDs .modal-lg,
  .cid-t5NmlN4wDs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN4wDs .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN4wDs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN4wDs .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN4wDs .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN4wDs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN4wDs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN4wDs .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN4wDs .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN4wDs .mbr-section-btn .btn {
  margin: 0;
}
.cid-t5HzHG6fc5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HzHG6fc5 .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-t5HzHG6fc5 .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-t5HzHG6fc5 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .cid-t5HzHG6fc5 .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-t5HzHG6fc5 .dentaura-top-spacer {
    height: 80px;
  }
}
.cid-t5HzHGBrSp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-apartment-desktop.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HzHGBrSp .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HzHGBrSp .mbr-section-title {
  color: #ffffff;
}
.cid-t5HzHGBrSp .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HzHGBrSp .mbr-section-title,
.cid-t5HzHGBrSp .mbr-section-btn {
  text-align: center;
}
.cid-t5HzHGTtvA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kombi-handy.jpg");
  overflow: hidden;
  position: relative;
}
.cid-t5HzHGTtvA .col-text {
  display: grid;
  justify-items: left;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}
.cid-t5HzHGTtvA .mbr-section-title {
  color: #ffffff;
}
.cid-t5HzHGTtvA .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t5HzHGTtvA .mbr-section-title,
.cid-t5HzHGTtvA .mbr-section-btn {
  text-align: center;
}
.cid-t5HzHHf98D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HzHHf98D h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-t5HzHHf98D p {
  color: #767676;
}
.cid-t5HzHHf98D .card-wrapper {
  border-top: 1px solid #efefef;
  position: relative;
  justify-content: unset;
}
.cid-t5HzHHf98D .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-t5HzHHf98D .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t5HzHHf98D .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-t5HzHHf98D .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-t5HzHHf98D .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-t5HzHHf98D rot {
  color: #bc0a14;
  font-size: 16px;
  line-height: 22px;
}
.cid-t5HzHHf98D .b-descr {
  color: #bc0a14;
}
.cid-t5HzHHLRAy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5HzHI3aRn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5HzHI3aRn hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HzHI3aRn hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HzHI3aRn h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HzHI3aRn .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HzHI3aRn H2 {
  color: #767676;
}
.cid-t5HzHImkk8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t5HzHImkk8 hr.top-hr {
  border-top: 1px solid #bbbbbb;
  width: 98%;
  margin: 0px 0px 19px 0px;
  padding: 0px;
}
.cid-t5HzHImkk8 hr.bot-hr {
  border-top: 1px solid #cccccc;
  width: 98%;
  margin: 1px 0px 0px 0px;
  padding: 10px;
}
.cid-t5HzHImkk8 h2 {
  float: left;
  color: #0082c3;
}
.cid-t5HzHImkk8 .btn {
  align: left !important;
  padding: 6px 6px !important;
  border-width: 1px !important;
  margin: 0px 12px 5px 0px !important;
  font-size: 0.85rem !important;
  border-radius: 3px !important;
  width: 165px;
  padding-left: 100px;
}
.cid-t5HzHImkk8 H2 {
  color: #767676;
}
.cid-t5HzHIFdjU {
  z-index: 1000;
  width: 100%;
}
.cid-t5HzHIFdjU nav.navbar {
  position: fixed;
}
.cid-t5HzHIFdjU .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.55rem 2rem;
  border-radius: 3px;
}
.cid-t5HzHIFdjU .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-t5HzHIFdjU .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-t5HzHIFdjU .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-t5HzHIFdjU .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-t5HzHIFdjU .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-t5HzHIFdjU .dropdown-item:hover,
.cid-t5HzHIFdjU .dropdown-item:focus {
  background: rgba(0, 130, 195, 0.1) !important;
  color: #0082c3 !important;
}
.cid-t5HzHIFdjU .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-t5HzHIFdjU .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-t5HzHIFdjU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-t5HzHIFdjU .nav-link {
  position: relative;
  line-height: 1;
}
.cid-t5HzHIFdjU .nav-link:hover {
  color: #0082c3 !important;
}
.cid-t5HzHIFdjU .container {
  display: flex;
  margin: auto;
}
.cid-t5HzHIFdjU .iconfont-wrapper {
  color: #e6de0c !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-t5HzHIFdjU .dropdown-menu,
.cid-t5HzHIFdjU .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t5HzHIFdjU .nav-item:focus,
.cid-t5HzHIFdjU .nav-link:focus {
  outline: none;
}
.cid-t5HzHIFdjU .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-t5HzHIFdjU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5HzHIFdjU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5HzHIFdjU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5HzHIFdjU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5HzHIFdjU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5HzHIFdjU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
}
.cid-t5HzHIFdjU .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-t5HzHIFdjU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5HzHIFdjU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t5HzHIFdjU .navbar.opened {
  transition: all 0.3s;
}
.cid-t5HzHIFdjU .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-t5HzHIFdjU .navbar .navbar-logo img {
  width: auto;
}
.cid-t5HzHIFdjU .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t5HzHIFdjU .navbar.collapsed {
  justify-content: center;
}
.cid-t5HzHIFdjU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5HzHIFdjU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5HzHIFdjU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t5HzHIFdjU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5HzHIFdjU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5HzHIFdjU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t5HzHIFdjU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5HzHIFdjU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HzHIFdjU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5HzHIFdjU .navbar .dropdown-menu {
    display: none;
  }
  .cid-t5HzHIFdjU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5HzHIFdjU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5HzHIFdjU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t5HzHIFdjU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5HzHIFdjU .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-t5HzHIFdjU .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-t5HzHIFdjU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5HzHIFdjU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5HzHIFdjU .navbar .navbar-buttons,
  .cid-t5HzHIFdjU .navbar .icons-menu {
    display: none;
  }
  .cid-t5HzHIFdjU .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-t5HzHIFdjU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t5HzHIFdjU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5HzHIFdjU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5HzHIFdjU .dropdown-item.active,
.cid-t5HzHIFdjU .dropdown-item:active {
  background-color: transparent;
}
.cid-t5HzHIFdjU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5HzHIFdjU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t5HzHIFdjU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5HzHIFdjU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5HzHIFdjU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5HzHIFdjU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5HzHIFdjU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #155f83;
}
.cid-t5HzHIFdjU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5HzHIFdjU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HzHIFdjU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5HzHIFdjU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5HzHIFdjU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HzHIFdjU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5HzHIFdjU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5HzHIFdjU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5HzHIFdjU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5HzHIFdjU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-t5HzHIFdjU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5HzHIFdjU .navbar {
    height: 70px;
  }
  .cid-t5HzHIFdjU .navbar.opened {
    height: auto;
  }
  .cid-t5HzHIFdjU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5HzHIFdjU .navbar .dropdown.open > .dropdown-menu {
    display: block;
    margin: 5px;
    padding: 0;
    border-width: 1px;
    border-color: grey;
    border-style: solid;
  }
}
.cid-t5HzHIFdjU fett {
  color: #df2422;
  font-weight: bold;
}
.cid-t5HzHIFdjU orange {
  color: #e15a00;
}
.cid-t5HzHIFdjU gruen {
  color: #059800;
}
.cid-t5HzHJ5cj0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f6f9;
}
.cid-t5HzHJ5cj0 .listico {
  padding-right: 1rem;
  font-size: 1.7rem;
}
.cid-t5HzHJ5cj0 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t5HzHJ5cj0 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-t5HzHJ5cj0 .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-t5HzHJ5cj0 .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-t5HzHJ5cj0 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t5HzHJ5cj0 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-t5HzHJ5cj0 .input-group-btn {
  padding-left: 0;
}
.cid-t5HzHJ5cj0 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t5HzHJ5cj0 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t5HzHJ5cj0 .mbr-text {
  color: #444;
}
.cid-t5HzHJ5cj0 h5 {
  margin-bottom: 0;
}
.cid-t5HzHJ5cj0 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t5HzHJ5cj0 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5HzHJ5cj0 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t5HzHJ5cj0 .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5HzHJ5cj0 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5HzHJ5cj0 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t5HzHJ5cj0 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5HzHJ5cj0 .social-list a:hover {
  opacity: 0.4;
}
.cid-t5HzHJ5cj0 .media-container-row > div {
  padding: 0px;
}
.cid-t5HzHJ5cj0 .text2 {
  color: #000000;
  text-align: left;
}
.cid-t5HzHJ5cj0 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t5HzHJ5cj0 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5HzHJ5cj0 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t5HzHJ5cj0 .social-list,
  .cid-t5HzHJ5cj0 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t5HzHJ5cj0 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t5HzHJ5cj0 .form-group {
    max-width: 180px;
  }
}
.cid-t5HzHJ5cj0 .links span {
  color: #9e9e9e;
}
.cid-t5HzHJ5cj0 .logo-sub-title {
  text-align: left;
  color: #353535;
}
.cid-t5HzHJ5cj0 .logo-title {
  text-align: center;
}
.cid-t5HzHJ5cj0 .logo-title,
.cid-t5HzHJ5cj0 .logo {
  color: #4479d9;
  text-align: left;
}
.cid-t5HzHJ5cj0 .logo-sub-title DIV {
  text-align: left;
}
.cid-t5HzHJ5cj0 normal {
  color: #0082c3;
  font-size: 22px;
  line-height: 22px;
}
.cid-t5HzHJ5cj0 orange2 {
  color: #e15a00;
  font-size: 22px;
  text-decoration: underline;
  font-weight: bold;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-t5HzHJNuBQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eaf0f4;
  overflow: hidden;
}
.cid-t5HzHJNuBQ .media-container-row .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-t5HzHJNuBQ cop {
  color: '#bcbcbc';
  font-size: 12px;
}
.cid-t5NmlN5cI3.popup-builder {
  background-color: #ffffff;
}
.cid-t5NmlN5cI3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t5NmlN5cI3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t5NmlN5cI3 .modal-content,
.cid-t5NmlN5cI3 .modal-dialog {
  height: auto;
}
.cid-t5NmlN5cI3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5NmlN5cI3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t5NmlN5cI3 .form-wrapper .mbr-form .form-group,
  .cid-t5NmlN5cI3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t5NmlN5cI3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t5NmlN5cI3 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5NmlN5cI3 .mbr-text {
  text-align: left;
}
.cid-t5NmlN5cI3 .pt-0 {
  padding-top: 0 !important;
}
.cid-t5NmlN5cI3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t5NmlN5cI3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t5NmlN5cI3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t5NmlN5cI3 .modal-open {
  overflow: hidden;
}
.cid-t5NmlN5cI3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t5NmlN5cI3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 90%;
  height: 70%;
  overflow: hidden;
  outline: 0;
}
.cid-t5NmlN5cI3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t5NmlN5cI3 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t5NmlN5cI3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t5NmlN5cI3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t5NmlN5cI3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t5NmlN5cI3 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t5NmlN5cI3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t5NmlN5cI3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t5NmlN5cI3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t5NmlN5cI3 .modal-backdrop.show {
  opacity: .5;
}
.cid-t5NmlN5cI3 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t5NmlN5cI3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN5cI3 .modal-header {
    padding: 1rem;
  }
}
.cid-t5NmlN5cI3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t5NmlN5cI3 .modal-header .close svg {
  fill: #353535;
}
.cid-t5NmlN5cI3 .modal-header .close:hover {
  opacity: 1;
}
.cid-t5NmlN5cI3 .modal-header .close:focus {
  outline: none;
}
.cid-t5NmlN5cI3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0082c3;
}
.cid-t5NmlN5cI3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t5NmlN5cI3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN5cI3 .modal-body {
    padding: 1rem;
  }
}
.cid-t5NmlN5cI3 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t5NmlN5cI3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5NmlN5cI3 .modal-footer {
    padding: 1rem;
  }
}
.cid-t5NmlN5cI3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t5NmlN5cI3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t5NmlN5cI3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t5NmlN5cI3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t5NmlN5cI3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t5NmlN5cI3 .modal-lg,
  .cid-t5NmlN5cI3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t5NmlN5cI3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t5NmlN5cI3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t5NmlN5cI3 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t5NmlN5cI3 .form-group {
  margin-bottom: 1rem;
}
.cid-t5NmlN5cI3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t5NmlN5cI3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t5NmlN5cI3 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t5NmlN5cI3 .mbr-section-btn {
  margin: 0;
}
.cid-t5NmlN5cI3 .mbr-section-btn .btn {
  margin: 0;
}
