@import url(https://fonts.googleapis.com/css?family=Gilda+Display);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i);





body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #c19b76 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #906841 !important;
  color: #906841 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c19b76 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #e26c5a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #906841 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b63420 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #709faf;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c19b76;
  border-color: #c19b76;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c19b76;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9dbce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #c19b76;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c19b76;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c19b76;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c19b76;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c19b76;
  border-bottom-color: #c19b76;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #c19b76 !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: #333333 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
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='%23c19b76' %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;
}
.cid-rBERn9CvKk {
  background-image: url("../../../assets/images/fuesse-1800x1089.jpg");
}
.cid-rBERn9CvKk .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rBERn9CvKk .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rBERn9CvKk .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rBEGs3nzfm {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/fuesse-1800x1089.jpg");
}
.cid-rBEGs3nzfm .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rBEGs3nzfm .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rBEGs3nzfm .btn-wrapper {
  width: 100%;
}
.cid-rBEGs3nzfm .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-rBEGs3nzfm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rBEGs3nzfm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rBEGs3nzfm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rBEGs3nzfm a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rBEGs3nzfm a.close:hover {
  color: #ffffff;
}
.cid-rBEGs3nzfm H1 {
  color: #878787;
}
.cid-rB03iqBkEG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rB03iqBkEG .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-rB03iqBkEG .card .card-img img {
  transition: all .5s;
}
.cid-rB03iqBkEG .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rB03iqBkEG .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rB03iqBkEG .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rB03iqBkEG .first-card {
  display: block;
}
.cid-rB03iqBkEG .first-card .card-wrapper {
  height: 100%;
}
.cid-rB03iqBkEG .first-card .card-box {
  background: #000000;
  padding: 2rem;
}
.cid-rB03iqBkEG .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rB03iqBkEG .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rB03iqBkEG .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rB03iqBkEG .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rB03iqBkEG .first-row,
.cid-rB03iqBkEG .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rB03iqBkEG .first-row .card .card-wrapper,
.cid-rB03iqBkEG .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rB03iqBkEG .first-row .card .card-wrapper .card-img,
.cid-rB03iqBkEG .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rB03iqBkEG .first-row .card .card-wrapper .card-img img,
.cid-rB03iqBkEG .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rB03iqBkEG .first-row,
  .cid-rB03iqBkEG .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rB03iqBkEG .first-row .card .card-wrapper .card-img,
  .cid-rB03iqBkEG .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rB03iqBkEG .first-row .card .card-wrapper .card-img img,
  .cid-rB03iqBkEG .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rB03iqBkEG .first-row .caption,
.cid-rB03iqBkEG .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-rB03iqBkEG .first-row .caption .price,
.cid-rB03iqBkEG .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-rB03iqBkEG .first-row {
  padding-bottom: 1rem;
}
.cid-rB03iqBkEG .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rB03iqBkEG .first-card,
  .cid-rB03iqBkEG .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rB03iqBkEG .first-card {
    padding-bottom: 2rem;
  }
  .cid-rB03iqBkEG .only-first-row {
    height: 100%;
  }
}
.cid-rB03iqBkEG .card-title {
  color: #efefef;
}
.cid-rB03iqBkEG .first-card-text,
.cid-rB03iqBkEG .card-btn {
  color: #000000;
  text-align: center;
}
.cid-rB06psWnQr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rHMvjhRcQA {
  background-image: url("../../../assets/images/herrin-oben-1-1400x1512.jpg");
}
.cid-rHMvjhRcQA .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rHMvjhRcQA .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rHMvjhRcQA .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rHMvjhRcQA .animated-element,
.cid-rHMvjhRcQA .typed-cursor {
  color: #ffffff;
}
.cid-rHMvjhRcQA .animated-element {
  border-bottom: 5px solid #c19b76;
}
@media (max-width: 767px) {
  .cid-rHMvjhRcQA .typed-text {
    text-align: center;
  }
}
.cid-rHMwiZBdcG {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/fuesse-1-1800x1089.jpg");
}
.cid-rHMwiZBdcG .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rHMwiZBdcG .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rHMwiZBdcG .btn-wrapper {
  width: 100%;
}
.cid-rHMwiZBdcG .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-rHMwiZBdcG .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rHMwiZBdcG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rHMwiZBdcG .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rHMwiZBdcG a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rHMwiZBdcG a.close:hover {
  color: #ffffff;
}
.cid-rHMwVlMgn6 {
  background-color: #000000;
}
.cid-rHMwVlMgn6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rHMwVlMgn6 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rHMwVlMgn6 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rHMwVlMgn6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-rHMwVlMgn6 .image-element {
    padding-left: 0;
  }
}
.cid-rHMwVlMgn6 .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-rHMwVlMgn6 .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-rHMwVlMgn6 .brown {
  color: #c19b76;
}
.cid-rHMwVlMgn6 .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rHMwVlMgn6 .paragraphs-wrapper .first-paragraph,
.cid-rHMwVlMgn6 .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-rHMwVlMgn6 .image-element {
    padding-top: 1rem;
  }
  .cid-rHMwVlMgn6 .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rHMwVlMgn6 .paragraphs-wrapper .first-paragraph,
  .cid-rHMwVlMgn6 .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-rHMwVlMgn6 .first-paragraph,
  .cid-rHMwVlMgn6 .second-paragraph {
    width: 50%;
  }
  .cid-rHMwVlMgn6 .first-paragraph {
    padding-right: .5rem;
  }
  .cid-rHMwVlMgn6 .second-paragraph {
    padding-left: .5rem;
  }
  .cid-rHMwVlMgn6 .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-rHMwVlMgn6 .mbr-section-title,
  .cid-rHMwVlMgn6 .mbr-section-btn {
    text-align: left;
  }
}
.cid-rHMwVlMgn6 .mbr-section-title {
  text-align: center;
}
.cid-rHMwVlMgn6 .mbr-text,
.cid-rHMwVlMgn6 .mbr-section-btn {
  color: #ffffff;
}
.cid-rHMycfEkYC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rHMycfEkYC .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rHMycfEkYC .mbr-section-title,
.cid-rHMycfEkYC .mbr-section-subtitle,
.cid-rHMycfEkYC .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rHMycfEkYC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rHMycfEkYC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rHMycfEkYC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rHMycfEkYC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rHMycfEkYC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-rHMycfEkYC .icon-focus {
  display: none;
}
.cid-rHMycfEkYC .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  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-rHMycfEkYC ul {
  font-size: 0;
}
.cid-rHMycfEkYC .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rHMycfEkYC .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-rHMycfEkYC .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-rHMycfEkYC .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rHMycfEkYC .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rHMycfEkYC .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rHMycfEkYC .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rHMycfEkYC .btn:hover {
  background: transparent !important;
}
.cid-rHMycfEkYC .btn:hover:before {
  background: transparent !important;
}
.cid-rHMycfEkYC .btn:before {
  background-color: transparent !important;
}
.cid-rHMycfEkYC .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-rHMycfEkYC .mbr-section-title {
  color: #ffffff;
}
.cid-rHMAKP79zI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fuesse-1-1800x1089.jpg");
}
.cid-rHMAKP79zI .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rHMAKP79zI .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rHMAKP79zI .btn-wrapper {
  width: 100%;
}
.cid-rHMAKP79zI .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-rHMAKP79zI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rHMAKP79zI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rHMAKP79zI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rHMAKP79zI a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rHMAKP79zI a.close:hover {
  color: #ffffff;
}
.cid-rHMB8KPxGa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-rHMB8KPxGa .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rHMB8KPxGa .row {
  background-color: #000000;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rHMB8KPxGa .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-rHMB8KPxGa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rHMB8KPxGa .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rHMB8KPxGa .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rHMB8KPxGa .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rHMB8KPxGa .image-element {
    padding: 0 15px;
  }
  .cid-rHMB8KPxGa .text-element {
    padding: 2rem 1rem;
  }
  .cid-rHMB8KPxGa .text-element .mbr-text {
    padding: 1rem;
  }
  .cid-rHMB8KPxGa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.cid-rHMB8KPxGa .mbr-text,
.cid-rHMB8KPxGa .mbr-section-btn {
  color: #ffffff;
}
.cid-rHMDciyyNa {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rHMDciyyNa .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-rHMDciyyNa .card .card-img img {
  transition: all .5s;
}
.cid-rHMDciyyNa .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rHMDciyyNa .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rHMDciyyNa .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rHMDciyyNa .first-card {
  display: block;
}
.cid-rHMDciyyNa .first-card .card-wrapper {
  height: 100%;
}
.cid-rHMDciyyNa .first-card .card-box {
  background: #000000;
  padding: 2rem;
}
.cid-rHMDciyyNa .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rHMDciyyNa .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rHMDciyyNa .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rHMDciyyNa .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rHMDciyyNa .first-row,
.cid-rHMDciyyNa .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rHMDciyyNa .first-row .card .card-wrapper,
.cid-rHMDciyyNa .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rHMDciyyNa .first-row .card .card-wrapper .card-img,
.cid-rHMDciyyNa .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rHMDciyyNa .first-row .card .card-wrapper .card-img img,
.cid-rHMDciyyNa .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rHMDciyyNa .first-row,
  .cid-rHMDciyyNa .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rHMDciyyNa .first-row .card .card-wrapper .card-img,
  .cid-rHMDciyyNa .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rHMDciyyNa .first-row .card .card-wrapper .card-img img,
  .cid-rHMDciyyNa .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rHMDciyyNa .first-row .caption,
.cid-rHMDciyyNa .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-rHMDciyyNa .first-row .caption .price,
.cid-rHMDciyyNa .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-rHMDciyyNa .first-row {
  padding-bottom: 1rem;
}
.cid-rHMDciyyNa .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rHMDciyyNa .first-card,
  .cid-rHMDciyyNa .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rHMDciyyNa .first-card {
    padding-bottom: 2rem;
  }
  .cid-rHMDciyyNa .only-first-row {
    height: 100%;
  }
}
.cid-rHMDciyyNa .first-card-text,
.cid-rHMDciyyNa .card-btn {
  color: #ffffff;
}
.cid-rHMENJeZq4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rHMENJeZq4 .mbr-text {
  color: #ffffff;
}
.cid-rHMG3xJUIh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-rHMG3xJUIh .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rHMG3xJUIh .row {
  background-color: #000000;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rHMG3xJUIh .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-rHMG3xJUIh .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rHMG3xJUIh .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rHMG3xJUIh .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rHMG3xJUIh .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rHMG3xJUIh .image-element {
    padding: 0 15px;
  }
  .cid-rHMG3xJUIh .text-element {
    padding: 2rem 1rem;
  }
  .cid-rHMG3xJUIh .text-element .mbr-text {
    padding: 1rem;
  }
  .cid-rHMG3xJUIh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.cid-rHMG3xJUIh .mbr-section-subtitle,
.cid-rHMG3xJUIh .underline {
  text-align: left;
  color: #ffffff;
}
.cid-rHMG3xJUIh .mbr-section-title {
  color: #a2784f;
  text-align: left;
}
