.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #723c35 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #723c35 !important;
  border-color: #723c35 !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: #371d19 !important;
  border-color: #371d19 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #371d19 !important;
  border-color: #371d19 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #723c35;
  color: #723c35;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #371d19 !important;
  background-color: transparent!important;
  border-color: #371d19 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #723c35 !important;
  border-color: #723c35 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #723c35 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2c1715 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #723c35;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #723c35;
  border-color: #723c35;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #723c35;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bb756c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #723c35 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #723c35;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #723c35;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #723c35;
}
.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: #723c35;
  border-bottom-color: #723c35;
}
.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: #723c35 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23723c35' %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-uOR2glkEng {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOR2glkEng nav.navbar {
  position: fixed;
}
.cid-uOR2glkEng .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR2glkEng .dropdown-menu {
  padding: 0;
}
.cid-uOR2glkEng .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR2glkEng .dropdown-item:hover,
.cid-uOR2glkEng .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uOR2glkEng .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uOR2glkEng .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOR2glkEng .nav-link {
  position: relative;
}
.cid-uOR2glkEng .container {
  display: flex;
  margin: auto;
}
.cid-uOR2glkEng .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOR2glkEng .navbar-caption {
  padding-right: 4rem;
}
.cid-uOR2glkEng .dropdown-menu,
.cid-uOR2glkEng .navbar.opened {
  background: #ffffff !important;
}
.cid-uOR2glkEng .nav-item:focus,
.cid-uOR2glkEng .nav-link:focus {
  outline: none;
}
.cid-uOR2glkEng .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOR2glkEng .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOR2glkEng .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOR2glkEng .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR2glkEng .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOR2glkEng .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOR2glkEng .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOR2glkEng .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR2glkEng .navbar.opened {
  transition: all .3s;
}
.cid-uOR2glkEng .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uOR2glkEng .navbar .navbar-logo img {
  width: auto;
}
.cid-uOR2glkEng .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOR2glkEng .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOR2glkEng .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOR2glkEng .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uOR2glkEng .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOR2glkEng .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOR2glkEng .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uOR2glkEng .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOR2glkEng .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOR2glkEng .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOR2glkEng .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOR2glkEng .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOR2glkEng .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOR2glkEng .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOR2glkEng .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uOR2glkEng .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOR2glkEng .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOR2glkEng .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOR2glkEng .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOR2glkEng .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOR2glkEng .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOR2glkEng .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOR2glkEng .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOR2glkEng .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOR2glkEng .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOR2glkEng .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOR2glkEng .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOR2glkEng .dropdown-item.active,
.cid-uOR2glkEng .dropdown-item:active {
  background-color: transparent;
}
.cid-uOR2glkEng .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOR2glkEng .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOR2glkEng .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOR2glkEng .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOR2glkEng .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOR2glkEng .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOR2glkEng ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOR2glkEng .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOR2glkEng button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uOR2glkEng button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uOR2glkEng button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOR2glkEng button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR2glkEng button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR2glkEng button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOR2glkEng nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR2glkEng nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOR2glkEng nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOR2glkEng nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR2glkEng .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOR2glkEng a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOR2glkEng .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOR2glkEng .navbar {
    height: 77px;
  }
  .cid-uOR2glkEng .navbar.opened {
    height: auto;
  }
  .cid-uOR2glkEng .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5GNHk9DQR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5GNHk9DQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5GNHk9DQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5GNHk9DQR .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u5GNHk9DQR .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u5GNHk9DQR .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPYpLAUsxP {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPYpLAUsxP .carousel {
  width: 100%;
}
.cid-uPYpLAUsxP .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPYpLAUsxP .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPYpLAUsxP .carousel-caption {
  bottom: 40px;
}
.cid-uPYpLAUsxP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPYpLAUsxP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPYpLAUsxP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPYpLAUsxP .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPYpLAUsxP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPYpLAUsxP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPYpLAUsxP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPYpLAUsxP .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPYpLAUsxP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPYpLAUsxP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPYpLAUsxP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPYpLAUsxP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPYpLAUsxP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPYpLAUsxP .carousel-indicators li.active,
.cid-uPYpLAUsxP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPYpLAUsxP .carousel-indicators li::after,
.cid-uPYpLAUsxP .carousel-indicators li::before {
  content: none;
}
.cid-uPYpLAUsxP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPYpLAUsxP .carousel-indicators {
    display: none !important;
  }
}
.cid-uPYpLAUsxP H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPYpLAUsxP P {
  text-align: center;
  color: #ffffff;
}
.cid-uOQRaRx2eH {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/therapie-1524x1012.jpeg");
}
.cid-uOQRaRx2eH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOQRaRx2eH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOQRaRx2eH .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uOQRaRx2eH .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOQRaRx2eH .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOQRaRx2eH .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOQRaRx2eH .card-title {
  color: #e07d23;
  text-align: left;
}
.cid-uOQRaRx2eH .mbr-text,
.cid-uOQRaRx2eH .mbr-section-btn {
  text-align: center;
  color: #e07d23;
}
.cid-uOGlmzb8fG {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/analects-2907066-1920-1920x1440.jpg");
}
.cid-uOGlmzb8fG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOGlmzb8fG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOGlmzb8fG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOGlmzb8fG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOGlmzb8fG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOGlmzb8fG .mbr-section-title {
  text-align: left;
  color: #e07d23;
}
.cid-uOGlmzb8fG .mbr-text {
  color: #723c35;
}
.cid-uOGkltxncA {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/back-4916984-2000x1333.jpg");
}
.cid-uOGkltxncA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOGkltxncA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOGkltxncA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uOGkltxncA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uOGkltxncA .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #723c35;
}
.cid-uOGkltxncA .panel-body,
.cid-uOGkltxncA .card-header {
  padding: 1rem 0;
}
.cid-uOGkltxncA .panel-title-edit {
  color: #723c35;
}
.cid-uOGkltxncA H3 {
  text-align: left;
  color: #e07d23;
}
.cid-uOGkltxncA .panel-text {
  color: #723c35;
}
.cid-uOFY92JhRT {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uOFY92JhRT img,
.cid-uOFY92JhRT .item-img {
  width: 100%;
}
.cid-uOFY92JhRT .item:focus,
.cid-uOFY92JhRT span:focus {
  outline: none;
}
.cid-uOFY92JhRT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOFY92JhRT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOFY92JhRT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOFY92JhRT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOFY92JhRT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOFY92JhRT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOFY92JhRT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOFY92JhRT .mbr-section-title {
  color: #e07d23;
  text-align: center;
}
.cid-uOFY92JhRT .mbr-text,
.cid-uOFY92JhRT .mbr-section-btn {
  text-align: left;
}
.cid-uOFY92JhRT .item-title {
  text-align: left;
  color: #723c35;
}
.cid-uOFY92JhRT .item-subtitle {
  text-align: left;
}
.cid-uSticePTyc {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSticePTyc img,
.cid-uSticePTyc .item-img {
  width: 100%;
}
.cid-uSticePTyc .item:focus,
.cid-uSticePTyc span:focus {
  outline: none;
}
.cid-uSticePTyc .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSticePTyc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uSticePTyc .item {
  padding: 0;
  margin: 0;
}
.cid-uSticePTyc .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSticePTyc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSticePTyc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSticePTyc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSticePTyc .mbr-section-title {
  color: #e07d23;
}
.cid-u5HXVDMnTl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u5HXVDMnTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5HXVDMnTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-u5HXVDMnTl .container {
    max-width: 1400px;
  }
}
.cid-u5HXVDMnTl .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-u5HXVDMnTl .row {
  justify-content: center;
}
.cid-u5HXVDMnTl .card-text {
  color: #723c35;
}
.cid-u5HXVDMnTl .card-title,
.cid-u5HXVDMnTl .iconfont-wrapper {
  color: #723c35;
}
.cid-u7LREGDsrE {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-u7LREGDsrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7LREGDsrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOQU06u0QL {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uOQU06u0QL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOQU06u0QL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOQU06u0QL .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOQU06u0QL .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOQU06u0QL .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOQU06u0QL .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOQU06u0QL .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOQU06u0QL .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOQU06u0QL .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOQU06u0QL .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOQU06u0QL .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOQU06u0QL .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOQU06u0QL .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOQU06u0QL .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uSEIxkd6RQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSEIxkd6RQ nav.navbar {
  position: fixed;
}
.cid-uSEIxkd6RQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSEIxkd6RQ .dropdown-menu {
  padding: 0;
}
.cid-uSEIxkd6RQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSEIxkd6RQ .dropdown-item:hover,
.cid-uSEIxkd6RQ .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uSEIxkd6RQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uSEIxkd6RQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSEIxkd6RQ .nav-link {
  position: relative;
}
.cid-uSEIxkd6RQ .container {
  display: flex;
  margin: auto;
}
.cid-uSEIxkd6RQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uSEIxkd6RQ .navbar-caption {
  padding-right: 4rem;
}
.cid-uSEIxkd6RQ .dropdown-menu,
.cid-uSEIxkd6RQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uSEIxkd6RQ .nav-item:focus,
.cid-uSEIxkd6RQ .nav-link:focus {
  outline: none;
}
.cid-uSEIxkd6RQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSEIxkd6RQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSEIxkd6RQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uSEIxkd6RQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSEIxkd6RQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSEIxkd6RQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSEIxkd6RQ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uSEIxkd6RQ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSEIxkd6RQ .navbar.opened {
  transition: all .3s;
}
.cid-uSEIxkd6RQ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uSEIxkd6RQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uSEIxkd6RQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSEIxkd6RQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSEIxkd6RQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSEIxkd6RQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uSEIxkd6RQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSEIxkd6RQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSEIxkd6RQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uSEIxkd6RQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSEIxkd6RQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uSEIxkd6RQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uSEIxkd6RQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSEIxkd6RQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSEIxkd6RQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSEIxkd6RQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSEIxkd6RQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uSEIxkd6RQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSEIxkd6RQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSEIxkd6RQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSEIxkd6RQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSEIxkd6RQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSEIxkd6RQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uSEIxkd6RQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSEIxkd6RQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSEIxkd6RQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSEIxkd6RQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSEIxkd6RQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSEIxkd6RQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSEIxkd6RQ .dropdown-item.active,
.cid-uSEIxkd6RQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uSEIxkd6RQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSEIxkd6RQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSEIxkd6RQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSEIxkd6RQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSEIxkd6RQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSEIxkd6RQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSEIxkd6RQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSEIxkd6RQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSEIxkd6RQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uSEIxkd6RQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uSEIxkd6RQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSEIxkd6RQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSEIxkd6RQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSEIxkd6RQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSEIxkd6RQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSEIxkd6RQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uSEIxkd6RQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uSEIxkd6RQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSEIxkd6RQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uSEIxkd6RQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSEIxkd6RQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSEIxkd6RQ .navbar {
    height: 77px;
  }
  .cid-uSEIxkd6RQ .navbar.opened {
    height: auto;
  }
  .cid-uSEIxkd6RQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6l9IC3EY9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6l9IC3EY9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6l9IC3EY9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6l9IC3EY9 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u6l9IC3EY9 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u6l9IC3EY9 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPYppKgCnI {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPYppKgCnI .carousel {
  width: 100%;
}
.cid-uPYppKgCnI .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPYppKgCnI .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPYppKgCnI .carousel-caption {
  bottom: 40px;
}
.cid-uPYppKgCnI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPYppKgCnI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPYppKgCnI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPYppKgCnI .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPYppKgCnI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPYppKgCnI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPYppKgCnI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPYppKgCnI .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPYppKgCnI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPYppKgCnI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPYppKgCnI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPYppKgCnI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPYppKgCnI .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPYppKgCnI .carousel-indicators li.active,
.cid-uPYppKgCnI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPYppKgCnI .carousel-indicators li::after,
.cid-uPYppKgCnI .carousel-indicators li::before {
  content: none;
}
.cid-uPYppKgCnI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPYppKgCnI .carousel-indicators {
    display: none !important;
  }
}
.cid-uPYppKgCnI H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPYppKgCnI P {
  text-align: center;
  color: #ffffff;
}
.cid-uOQK53nyQx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/kinkaku-ji-3970248-1920-1920x1272.jpg");
}
.cid-uOQK53nyQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOQK53nyQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOQK53nyQx .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uOQK53nyQx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOQK53nyQx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOQK53nyQx .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOQK53nyQx .card-title {
  color: #e07d23;
  text-align: left;
}
.cid-uOQK53nyQx .mbr-text,
.cid-uOQK53nyQx .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uOQLNd23qi {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOQLNd23qi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOQLNd23qi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uOQLNd23qi .container {
    max-width: 1400px;
  }
}
.cid-uOQLNd23qi .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uOQLNd23qi .row {
  justify-content: center;
}
.cid-uOQLNd23qi .card-text {
  color: #723c35;
}
.cid-uOQLNd23qi .card-title,
.cid-uOQLNd23qi .iconfont-wrapper {
  color: #723c35;
}
.cid-u6l9IDHvm4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-u6l9IDHvm4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u6l9IDHvm4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u6l9IDHvm4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u6l9IDHvm4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6l9IDHvm4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6l9IDHvm4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6l9IDHvm4 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u6l9IDHvm4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u6l9IDHvm4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u6l9IDHvm4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u6l9IDHvm4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6l9IDHvm4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6l9IDHvm4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u6l9IDHvm4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOR7beQxx2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOR7beQxx2 nav.navbar {
  position: fixed;
}
.cid-uOR7beQxx2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR7beQxx2 .dropdown-menu {
  padding: 0;
}
.cid-uOR7beQxx2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR7beQxx2 .dropdown-item:hover,
.cid-uOR7beQxx2 .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uOR7beQxx2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uOR7beQxx2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOR7beQxx2 .nav-link {
  position: relative;
}
.cid-uOR7beQxx2 .container {
  display: flex;
  margin: auto;
}
.cid-uOR7beQxx2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOR7beQxx2 .navbar-caption {
  padding-right: 4rem;
}
.cid-uOR7beQxx2 .dropdown-menu,
.cid-uOR7beQxx2 .navbar.opened {
  background: #ffffff !important;
}
.cid-uOR7beQxx2 .nav-item:focus,
.cid-uOR7beQxx2 .nav-link:focus {
  outline: none;
}
.cid-uOR7beQxx2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOR7beQxx2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOR7beQxx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOR7beQxx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR7beQxx2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOR7beQxx2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOR7beQxx2 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOR7beQxx2 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR7beQxx2 .navbar.opened {
  transition: all .3s;
}
.cid-uOR7beQxx2 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uOR7beQxx2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uOR7beQxx2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOR7beQxx2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOR7beQxx2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOR7beQxx2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uOR7beQxx2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOR7beQxx2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOR7beQxx2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uOR7beQxx2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOR7beQxx2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOR7beQxx2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOR7beQxx2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOR7beQxx2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOR7beQxx2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOR7beQxx2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOR7beQxx2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uOR7beQxx2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOR7beQxx2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOR7beQxx2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOR7beQxx2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOR7beQxx2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOR7beQxx2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOR7beQxx2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOR7beQxx2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOR7beQxx2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOR7beQxx2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOR7beQxx2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOR7beQxx2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOR7beQxx2 .dropdown-item.active,
.cid-uOR7beQxx2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uOR7beQxx2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOR7beQxx2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOR7beQxx2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOR7beQxx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOR7beQxx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOR7beQxx2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOR7beQxx2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOR7beQxx2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOR7beQxx2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uOR7beQxx2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uOR7beQxx2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOR7beQxx2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR7beQxx2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR7beQxx2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOR7beQxx2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR7beQxx2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOR7beQxx2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOR7beQxx2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR7beQxx2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOR7beQxx2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOR7beQxx2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOR7beQxx2 .navbar {
    height: 77px;
  }
  .cid-uOR7beQxx2 .navbar.opened {
    height: auto;
  }
  .cid-uOR7beQxx2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6ladMEahM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6ladMEahM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6ladMEahM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6ladMEahM .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u6ladMEahM .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u6ladMEahM .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPYpj2ZvHA {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPYpj2ZvHA .carousel {
  width: 100%;
}
.cid-uPYpj2ZvHA .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPYpj2ZvHA .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPYpj2ZvHA .carousel-caption {
  bottom: 40px;
}
.cid-uPYpj2ZvHA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPYpj2ZvHA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPYpj2ZvHA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPYpj2ZvHA .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPYpj2ZvHA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPYpj2ZvHA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPYpj2ZvHA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPYpj2ZvHA .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPYpj2ZvHA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPYpj2ZvHA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPYpj2ZvHA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPYpj2ZvHA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPYpj2ZvHA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPYpj2ZvHA .carousel-indicators li.active,
.cid-uPYpj2ZvHA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPYpj2ZvHA .carousel-indicators li::after,
.cid-uPYpj2ZvHA .carousel-indicators li::before {
  content: none;
}
.cid-uPYpj2ZvHA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPYpj2ZvHA .carousel-indicators {
    display: none !important;
  }
}
.cid-uPYpj2ZvHA H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPYpj2ZvHA P {
  text-align: center;
  color: #ffffff;
}
.cid-u7PjZJ8mE0 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/behandlung-1108x737.jpg");
}
.cid-u7PjZJ8mE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7PjZJ8mE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7PjZJ8mE0 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u7PjZJ8mE0 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u7PjZJ8mE0 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7PjZJ8mE0 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u7PjZJ8mE0 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #723c35;
}
.cid-u7PjZJ8mE0 .card-title {
  color: #e07d23;
}
.cid-u7PjZJ8mE0 P {
  color: #723c35;
}
.cid-u7PjZJ8mE0 .mbr-section-title {
  color: #e07d23;
}
.cid-uSEJfunE87 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/frame-4822807-1920-1920x1920.png");
}
.cid-uSEJfunE87 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uSEJfunE87 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uSEJfunE87 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uSEJfunE87 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uSEJfunE87 .mbr-section-title {
  color: #723c35;
}
.cid-uORdFpcXxd {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-uORdFpcXxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uORdFpcXxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uORc8RpImE {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uORc8RpImE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uORc8RpImE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uORc8RpImE .container {
    max-width: 1400px;
  }
}
.cid-uORc8RpImE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uORc8RpImE .row {
  justify-content: center;
}
.cid-uORc8RpImE .card-text {
  color: #723c35;
}
.cid-uORc8RpImE .card-title,
.cid-uORc8RpImE .iconfont-wrapper {
  color: #723c35;
}
.cid-uORc9CtpHM {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uORc9CtpHM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uORc9CtpHM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uORc9CtpHM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uORc9CtpHM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uORc9CtpHM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uORc9CtpHM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uORc9CtpHM .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uORc9CtpHM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uORc9CtpHM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uORc9CtpHM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uORc9CtpHM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uORc9CtpHM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uORc9CtpHM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uORc9CtpHM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOR2kq1wVj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOR2kq1wVj nav.navbar {
  position: fixed;
}
.cid-uOR2kq1wVj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR2kq1wVj .dropdown-menu {
  padding: 0;
}
.cid-uOR2kq1wVj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR2kq1wVj .dropdown-item:hover,
.cid-uOR2kq1wVj .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uOR2kq1wVj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uOR2kq1wVj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOR2kq1wVj .nav-link {
  position: relative;
}
.cid-uOR2kq1wVj .container {
  display: flex;
  margin: auto;
}
.cid-uOR2kq1wVj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOR2kq1wVj .navbar-caption {
  padding-right: 4rem;
}
.cid-uOR2kq1wVj .dropdown-menu,
.cid-uOR2kq1wVj .navbar.opened {
  background: #ffffff !important;
}
.cid-uOR2kq1wVj .nav-item:focus,
.cid-uOR2kq1wVj .nav-link:focus {
  outline: none;
}
.cid-uOR2kq1wVj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOR2kq1wVj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOR2kq1wVj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOR2kq1wVj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR2kq1wVj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOR2kq1wVj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOR2kq1wVj .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOR2kq1wVj .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR2kq1wVj .navbar.opened {
  transition: all .3s;
}
.cid-uOR2kq1wVj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uOR2kq1wVj .navbar .navbar-logo img {
  width: auto;
}
.cid-uOR2kq1wVj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOR2kq1wVj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOR2kq1wVj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOR2kq1wVj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uOR2kq1wVj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOR2kq1wVj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOR2kq1wVj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uOR2kq1wVj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOR2kq1wVj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOR2kq1wVj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOR2kq1wVj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOR2kq1wVj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOR2kq1wVj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOR2kq1wVj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOR2kq1wVj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uOR2kq1wVj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOR2kq1wVj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOR2kq1wVj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOR2kq1wVj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOR2kq1wVj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOR2kq1wVj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOR2kq1wVj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOR2kq1wVj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOR2kq1wVj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOR2kq1wVj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOR2kq1wVj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOR2kq1wVj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOR2kq1wVj .dropdown-item.active,
.cid-uOR2kq1wVj .dropdown-item:active {
  background-color: transparent;
}
.cid-uOR2kq1wVj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOR2kq1wVj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOR2kq1wVj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOR2kq1wVj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOR2kq1wVj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOR2kq1wVj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOR2kq1wVj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOR2kq1wVj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOR2kq1wVj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uOR2kq1wVj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uOR2kq1wVj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOR2kq1wVj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR2kq1wVj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR2kq1wVj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOR2kq1wVj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR2kq1wVj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOR2kq1wVj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOR2kq1wVj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR2kq1wVj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOR2kq1wVj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOR2kq1wVj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOR2kq1wVj .navbar {
    height: 77px;
  }
  .cid-uOR2kq1wVj .navbar.opened {
    height: auto;
  }
  .cid-uOR2kq1wVj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBZ4NThTUs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBZ4NThTUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBZ4NThTUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBZ4NThTUs .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uBZ4NThTUs .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBZ4NThTUs .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOR5q3Nkh8 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uOR5q3Nkh8 .carousel {
  width: 100%;
}
.cid-uOR5q3Nkh8 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uOR5q3Nkh8 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uOR5q3Nkh8 .carousel-caption {
  bottom: 40px;
}
.cid-uOR5q3Nkh8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uOR5q3Nkh8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uOR5q3Nkh8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uOR5q3Nkh8 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uOR5q3Nkh8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uOR5q3Nkh8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uOR5q3Nkh8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uOR5q3Nkh8 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOR5q3Nkh8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOR5q3Nkh8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOR5q3Nkh8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOR5q3Nkh8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uOR5q3Nkh8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOR5q3Nkh8 .carousel-indicators li.active,
.cid-uOR5q3Nkh8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOR5q3Nkh8 .carousel-indicators li::after,
.cid-uOR5q3Nkh8 .carousel-indicators li::before {
  content: none;
}
.cid-uOR5q3Nkh8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOR5q3Nkh8 .carousel-indicators {
    display: none !important;
  }
}
.cid-uOR5q3Nkh8 H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uOR5q3Nkh8 P {
  text-align: center;
  color: #ffffff;
}
.cid-uSkEynN3hL {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSkEynN3hL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkEynN3hL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSkEynN3hL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSkEynN3hL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSkEynN3hL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uSkEynN3hL .mbr-section-title DIV {
  text-align: left;
}
.cid-uSkEynN3hL .mbr-section-title {
  color: #e07d23;
}
.cid-uSkEynN3hL .mbr-text {
  color: #723c35;
}
.cid-uOYXOzDKEA {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/chiropraktiker.webp");
}
.cid-uOYXOzDKEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOYXOzDKEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOYXOzDKEA .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uOYXOzDKEA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOYXOzDKEA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOYXOzDKEA .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOYXOzDKEA .card-title {
  color: #e07d23;
  text-align: left;
}
.cid-uOYXOzDKEA .mbr-text,
.cid-uOYXOzDKEA .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uOYXOzDKEA .card-title DIV {
  text-align: center;
}
.cid-uBZ4NULtKU {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBZ4NULtKU img,
.cid-uBZ4NULtKU .item-img {
  width: 100%;
}
.cid-uBZ4NULtKU .item:focus,
.cid-uBZ4NULtKU span:focus {
  outline: none;
}
.cid-uBZ4NULtKU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBZ4NULtKU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBZ4NULtKU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBZ4NULtKU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBZ4NULtKU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBZ4NULtKU .mbr-section-title {
  color: #e07d23;
}
.cid-uBZ4NULtKU .mbr-text,
.cid-uBZ4NULtKU .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uBZ4NULtKU .item-title {
  text-align: left;
  color: #e07d23;
}
.cid-uBZ4NULtKU .item-subtitle {
  text-align: left;
}
.cid-uSEG1spBmH {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSEG1spBmH img,
.cid-uSEG1spBmH .item-img {
  width: 100%;
}
.cid-uSEG1spBmH .item:focus,
.cid-uSEG1spBmH span:focus {
  outline: none;
}
.cid-uSEG1spBmH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSEG1spBmH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uSEG1spBmH .item {
  padding: 0;
  margin: 0;
}
.cid-uSEG1spBmH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSEG1spBmH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSEG1spBmH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSEG1spBmH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSEG1spBmH .mbr-section-title {
  color: #e07d23;
}
.cid-uOZ44tIZOk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOZ44tIZOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOZ44tIZOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uOZ44tIZOk .container {
    max-width: 1400px;
  }
}
.cid-uOZ44tIZOk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uOZ44tIZOk .row {
  justify-content: center;
}
.cid-uOZ44tIZOk .card-text {
  color: #723c35;
}
.cid-uOZ44tIZOk .card-title,
.cid-uOZ44tIZOk .iconfont-wrapper {
  color: #723c35;
}
.cid-uOTvxtvPNA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uOTvxtvPNA .mbr-text {
  color: #000000;
}
.cid-uOTvxtvPNA .mbr-section-subtitle {
  color: #000000;
}
.cid-uOTvxtvPNA .mbr-section-title {
  color: #723c35;
  text-align: center;
}
.cid-uOTx7rRheT {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-uOTx7rRheT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOTx7rRheT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOR6nAGiy3 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uOR6nAGiy3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOR6nAGiy3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOR6nAGiy3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOR6nAGiy3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOR6nAGiy3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOR6nAGiy3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOR6nAGiy3 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOR6nAGiy3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOR6nAGiy3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOR6nAGiy3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOR6nAGiy3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOR6nAGiy3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOR6nAGiy3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOR6nAGiy3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOQBHwykYx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOQBHwykYx nav.navbar {
  position: fixed;
}
.cid-uOQBHwykYx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOQBHwykYx .dropdown-menu {
  padding: 0;
}
.cid-uOQBHwykYx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOQBHwykYx .dropdown-item:hover,
.cid-uOQBHwykYx .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uOQBHwykYx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uOQBHwykYx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOQBHwykYx .nav-link {
  position: relative;
}
.cid-uOQBHwykYx .container {
  display: flex;
  margin: auto;
}
.cid-uOQBHwykYx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOQBHwykYx .navbar-caption {
  padding-right: 4rem;
}
.cid-uOQBHwykYx .dropdown-menu,
.cid-uOQBHwykYx .navbar.opened {
  background: #ffffff !important;
}
.cid-uOQBHwykYx .nav-item:focus,
.cid-uOQBHwykYx .nav-link:focus {
  outline: none;
}
.cid-uOQBHwykYx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOQBHwykYx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOQBHwykYx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOQBHwykYx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOQBHwykYx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOQBHwykYx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOQBHwykYx .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOQBHwykYx .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOQBHwykYx .navbar.opened {
  transition: all .3s;
}
.cid-uOQBHwykYx .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uOQBHwykYx .navbar .navbar-logo img {
  width: auto;
}
.cid-uOQBHwykYx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOQBHwykYx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOQBHwykYx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOQBHwykYx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uOQBHwykYx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOQBHwykYx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOQBHwykYx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uOQBHwykYx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOQBHwykYx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOQBHwykYx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOQBHwykYx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOQBHwykYx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOQBHwykYx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOQBHwykYx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOQBHwykYx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uOQBHwykYx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOQBHwykYx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOQBHwykYx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOQBHwykYx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOQBHwykYx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOQBHwykYx .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOQBHwykYx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOQBHwykYx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOQBHwykYx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOQBHwykYx .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOQBHwykYx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOQBHwykYx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOQBHwykYx .dropdown-item.active,
.cid-uOQBHwykYx .dropdown-item:active {
  background-color: transparent;
}
.cid-uOQBHwykYx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOQBHwykYx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOQBHwykYx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOQBHwykYx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOQBHwykYx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOQBHwykYx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOQBHwykYx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOQBHwykYx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOQBHwykYx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uOQBHwykYx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uOQBHwykYx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOQBHwykYx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOQBHwykYx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOQBHwykYx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOQBHwykYx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOQBHwykYx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOQBHwykYx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOQBHwykYx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOQBHwykYx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOQBHwykYx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOQBHwykYx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOQBHwykYx .navbar {
    height: 77px;
  }
  .cid-uOQBHwykYx .navbar.opened {
    height: auto;
  }
  .cid-uOQBHwykYx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOQBHwUm9L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOQBHwUm9L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOQBHwUm9L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOQBHwUm9L .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOQBHwUm9L .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOQBHwUm9L .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPYpt9pxTq {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPYpt9pxTq .carousel {
  width: 100%;
}
.cid-uPYpt9pxTq .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPYpt9pxTq .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPYpt9pxTq .carousel-caption {
  bottom: 40px;
}
.cid-uPYpt9pxTq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPYpt9pxTq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPYpt9pxTq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPYpt9pxTq .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPYpt9pxTq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPYpt9pxTq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPYpt9pxTq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPYpt9pxTq .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPYpt9pxTq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPYpt9pxTq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPYpt9pxTq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPYpt9pxTq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPYpt9pxTq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPYpt9pxTq .carousel-indicators li.active,
.cid-uPYpt9pxTq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPYpt9pxTq .carousel-indicators li::after,
.cid-uPYpt9pxTq .carousel-indicators li::before {
  content: none;
}
.cid-uPYpt9pxTq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPYpt9pxTq .carousel-indicators {
    display: none !important;
  }
}
.cid-uPYpt9pxTq H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPYpt9pxTq P {
  text-align: center;
  color: #ffffff;
}
.cid-uOQNmeWPEq {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/bamboo-8369576-1920-1920x1358.png");
}
.cid-uOQNmeWPEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOQNmeWPEq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOQNmeWPEq .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uOQNmeWPEq .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOQNmeWPEq .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOQNmeWPEq .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOQNmeWPEq .card-title {
  color: #e07d23;
  text-align: left;
}
.cid-uOQNmeWPEq .mbr-text,
.cid-uOQNmeWPEq .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uOQNRz4Lqj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uOQNRz4Lqj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOQNRz4Lqj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uOQNRz4Lqj .container {
    max-width: 1400px;
  }
}
.cid-uOQNRz4Lqj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uOQNRz4Lqj .row {
  justify-content: center;
}
.cid-uOQNRz4Lqj .card-text {
  color: #723c35;
}
.cid-uOQNRz4Lqj .card-title,
.cid-uOQNRz4Lqj .iconfont-wrapper {
  color: #723c35;
}
.cid-uOQQt97WOO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uOQQt97WOO .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOQQt97WOO .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOQQt97WOO .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOQQt97WOO .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOQQt97WOO .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOQQt97WOO .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOQQt97WOO .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOQQt97WOO .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOQQt97WOO .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOQQt97WOO .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOQQt97WOO .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOQQt97WOO .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOQQt97WOO .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOQQt97WOO .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uPUGTYFVDz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPUGTYFVDz nav.navbar {
  position: fixed;
}
.cid-uPUGTYFVDz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPUGTYFVDz .dropdown-menu {
  padding: 0;
}
.cid-uPUGTYFVDz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPUGTYFVDz .dropdown-item:hover,
.cid-uPUGTYFVDz .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uPUGTYFVDz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uPUGTYFVDz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPUGTYFVDz .nav-link {
  position: relative;
}
.cid-uPUGTYFVDz .container {
  display: flex;
  margin: auto;
}
.cid-uPUGTYFVDz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPUGTYFVDz .navbar-caption {
  padding-right: 4rem;
}
.cid-uPUGTYFVDz .dropdown-menu,
.cid-uPUGTYFVDz .navbar.opened {
  background: #ffffff !important;
}
.cid-uPUGTYFVDz .nav-item:focus,
.cid-uPUGTYFVDz .nav-link:focus {
  outline: none;
}
.cid-uPUGTYFVDz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPUGTYFVDz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPUGTYFVDz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPUGTYFVDz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPUGTYFVDz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPUGTYFVDz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPUGTYFVDz .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uPUGTYFVDz .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPUGTYFVDz .navbar.opened {
  transition: all .3s;
}
.cid-uPUGTYFVDz .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uPUGTYFVDz .navbar .navbar-logo img {
  width: auto;
}
.cid-uPUGTYFVDz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPUGTYFVDz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPUGTYFVDz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPUGTYFVDz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uPUGTYFVDz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPUGTYFVDz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPUGTYFVDz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uPUGTYFVDz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPUGTYFVDz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uPUGTYFVDz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uPUGTYFVDz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPUGTYFVDz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPUGTYFVDz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPUGTYFVDz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPUGTYFVDz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uPUGTYFVDz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPUGTYFVDz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPUGTYFVDz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPUGTYFVDz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPUGTYFVDz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPUGTYFVDz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uPUGTYFVDz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPUGTYFVDz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uPUGTYFVDz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPUGTYFVDz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPUGTYFVDz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPUGTYFVDz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPUGTYFVDz .dropdown-item.active,
.cid-uPUGTYFVDz .dropdown-item:active {
  background-color: transparent;
}
.cid-uPUGTYFVDz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPUGTYFVDz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPUGTYFVDz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPUGTYFVDz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPUGTYFVDz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPUGTYFVDz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPUGTYFVDz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPUGTYFVDz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPUGTYFVDz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uPUGTYFVDz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uPUGTYFVDz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPUGTYFVDz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPUGTYFVDz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPUGTYFVDz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPUGTYFVDz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPUGTYFVDz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPUGTYFVDz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPUGTYFVDz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPUGTYFVDz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uPUGTYFVDz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPUGTYFVDz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPUGTYFVDz .navbar {
    height: 77px;
  }
  .cid-uPUGTYFVDz .navbar.opened {
    height: auto;
  }
  .cid-uPUGTYFVDz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPUGTYU8tB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPUGTYU8tB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUGTYU8tB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPUGTYU8tB .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uPUGTYU8tB .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uPUGTYU8tB .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPUGTZ7NfN {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPUGTZ7NfN .carousel {
  width: 100%;
}
.cid-uPUGTZ7NfN .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPUGTZ7NfN .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPUGTZ7NfN .carousel-caption {
  bottom: 40px;
}
.cid-uPUGTZ7NfN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPUGTZ7NfN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPUGTZ7NfN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPUGTZ7NfN .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPUGTZ7NfN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPUGTZ7NfN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPUGTZ7NfN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPUGTZ7NfN .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPUGTZ7NfN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPUGTZ7NfN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPUGTZ7NfN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPUGTZ7NfN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPUGTZ7NfN .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPUGTZ7NfN .carousel-indicators li.active,
.cid-uPUGTZ7NfN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPUGTZ7NfN .carousel-indicators li::after,
.cid-uPUGTZ7NfN .carousel-indicators li::before {
  content: none;
}
.cid-uPUGTZ7NfN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPUGTZ7NfN .carousel-indicators {
    display: none !important;
  }
}
.cid-uPUGTZ7NfN H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPUGTZ7NfN P {
  text-align: center;
  color: #ffffff;
}
.cid-uPUGTZjhF1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/design-ohne-titel-1920x602.jpg");
}
.cid-uPUGTZjhF1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUGTZjhF1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPUGTZjhF1 .mbr-section-subtitle {
  color: #e07d23;
}
.cid-uPUGTZVumX {
  background-image: url("../../../assets/images/stone-8598089-1921-1920x960.jpg");
}
.cid-uPUGTZVumX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUGTZVumX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPUGTZVumX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPUGTZVumX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPUGTZVumX .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPUGTZVumX .mbr-section-title {
  text-align: left;
  color: #e07d23;
}
.cid-uPUGTZVumX .mbr-text {
  color: #723c35;
}
.cid-uPV6biqj0M {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/36525057-detail-high-1400x933.jpg");
}
.cid-uPV6biqj0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPV6biqj0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPV6biqj0M .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPV6biqj0M .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPV6biqj0M .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPV6biqj0M .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPV6biqj0M .card-title {
  color: #e07d23;
  text-align: left;
}
.cid-uPV6biqj0M .mbr-text,
.cid-uPV6biqj0M .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uPV6biqj0M .card-title DIV {
  text-align: center;
}
.cid-uSnBcL32F0 {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uSnBcL32F0 .carousel {
    min-height: 700px;
  }
  .cid-uSnBcL32F0 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uSnBcL32F0 .carousel {
    min-height: 455px;
  }
  .cid-uSnBcL32F0 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uSnBcL32F0 .carousel {
    min-height: 385px;
  }
  .cid-uSnBcL32F0 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uSnBcL32F0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uSnBcL32F0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uSnBcL32F0 .carousel,
.cid-uSnBcL32F0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSnBcL32F0 .item-wrapper {
  width: 100%;
}
.cid-uSnBcL32F0 .carousel-caption {
  bottom: 40px;
}
.cid-uSnBcL32F0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uSnBcL32F0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uSnBcL32F0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uSnBcL32F0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uSnBcL32F0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSnBcL32F0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSnBcL32F0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSnBcL32F0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSnBcL32F0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uSnBcL32F0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSnBcL32F0 .carousel-indicators li.active,
.cid-uSnBcL32F0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSnBcL32F0 .carousel-indicators li::after,
.cid-uSnBcL32F0 .carousel-indicators li::before {
  content: none;
}
.cid-uSnBcL32F0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSnBcL32F0 .carousel-indicators {
    display: none !important;
  }
}
.cid-uPUGU0gUXo {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPUGU0gUXo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUGU0gUXo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uPUGU0gUXo .container {
    max-width: 1400px;
  }
}
.cid-uPUGU0gUXo .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uPUGU0gUXo .row {
  justify-content: center;
}
.cid-uPUGU0gUXo .card-text {
  color: #723c35;
}
.cid-uPUGU0gUXo .card-title,
.cid-uPUGU0gUXo .iconfont-wrapper {
  color: #723c35;
}
.cid-uPUGU0xVfv {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-uPUGU0xVfv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUGU0xVfv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPUGU0HnmC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uPUGU0HnmC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uPUGU0HnmC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uPUGU0HnmC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uPUGU0HnmC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uPUGU0HnmC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uPUGU0HnmC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uPUGU0HnmC .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uPUGU0HnmC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uPUGU0HnmC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uPUGU0HnmC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uPUGU0HnmC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPUGU0HnmC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPUGU0HnmC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uPUGU0HnmC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uPGVjZORzp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPGVjZORzp nav.navbar {
  position: fixed;
}
.cid-uPGVjZORzp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPGVjZORzp .dropdown-menu {
  padding: 0;
}
.cid-uPGVjZORzp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPGVjZORzp .dropdown-item:hover,
.cid-uPGVjZORzp .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uPGVjZORzp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uPGVjZORzp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPGVjZORzp .nav-link {
  position: relative;
}
.cid-uPGVjZORzp .container {
  display: flex;
  margin: auto;
}
.cid-uPGVjZORzp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPGVjZORzp .navbar-caption {
  padding-right: 4rem;
}
.cid-uPGVjZORzp .dropdown-menu,
.cid-uPGVjZORzp .navbar.opened {
  background: #ffffff !important;
}
.cid-uPGVjZORzp .nav-item:focus,
.cid-uPGVjZORzp .nav-link:focus {
  outline: none;
}
.cid-uPGVjZORzp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPGVjZORzp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPGVjZORzp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPGVjZORzp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPGVjZORzp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPGVjZORzp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPGVjZORzp .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uPGVjZORzp .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPGVjZORzp .navbar.opened {
  transition: all .3s;
}
.cid-uPGVjZORzp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uPGVjZORzp .navbar .navbar-logo img {
  width: auto;
}
.cid-uPGVjZORzp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPGVjZORzp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPGVjZORzp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPGVjZORzp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uPGVjZORzp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPGVjZORzp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPGVjZORzp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uPGVjZORzp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPGVjZORzp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uPGVjZORzp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uPGVjZORzp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPGVjZORzp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPGVjZORzp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPGVjZORzp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPGVjZORzp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uPGVjZORzp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPGVjZORzp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPGVjZORzp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPGVjZORzp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPGVjZORzp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPGVjZORzp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uPGVjZORzp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPGVjZORzp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uPGVjZORzp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPGVjZORzp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPGVjZORzp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPGVjZORzp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPGVjZORzp .dropdown-item.active,
.cid-uPGVjZORzp .dropdown-item:active {
  background-color: transparent;
}
.cid-uPGVjZORzp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPGVjZORzp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPGVjZORzp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPGVjZORzp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPGVjZORzp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPGVjZORzp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPGVjZORzp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPGVjZORzp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPGVjZORzp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uPGVjZORzp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uPGVjZORzp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPGVjZORzp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPGVjZORzp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPGVjZORzp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPGVjZORzp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPGVjZORzp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPGVjZORzp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPGVjZORzp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPGVjZORzp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uPGVjZORzp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPGVjZORzp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPGVjZORzp .navbar {
    height: 77px;
  }
  .cid-uPGVjZORzp .navbar.opened {
    height: auto;
  }
  .cid-uPGVjZORzp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPGVk06PBJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPGVk06PBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGVk06PBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGVk06PBJ .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uPGVk06PBJ .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uPGVk06PBJ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPGVk0nBLY {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPGVk0nBLY .carousel {
  width: 100%;
}
.cid-uPGVk0nBLY .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPGVk0nBLY .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPGVk0nBLY .carousel-caption {
  bottom: 40px;
}
.cid-uPGVk0nBLY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPGVk0nBLY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPGVk0nBLY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPGVk0nBLY .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPGVk0nBLY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPGVk0nBLY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPGVk0nBLY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPGVk0nBLY .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPGVk0nBLY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGVk0nBLY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPGVk0nBLY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPGVk0nBLY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPGVk0nBLY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPGVk0nBLY .carousel-indicators li.active,
.cid-uPGVk0nBLY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPGVk0nBLY .carousel-indicators li::after,
.cid-uPGVk0nBLY .carousel-indicators li::before {
  content: none;
}
.cid-uPGVk0nBLY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPGVk0nBLY .carousel-indicators {
    display: none !important;
  }
}
.cid-uPGVk0nBLY H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPGVk0nBLY P {
  text-align: center;
  color: #ffffff;
}
.cid-uPGVk0AZsl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/behandlung-chinesisch-1610x1074.jpg");
}
.cid-uPGVk0AZsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGVk0AZsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGVk0AZsl .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPGVk0AZsl .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPGVk0AZsl .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPGVk0AZsl .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPGVk0AZsl .card-title {
  color: #e07d23;
  text-align: center;
}
.cid-uPGVk0AZsl .mbr-text,
.cid-uPGVk0AZsl .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uPGVk0AZsl .card-title DIV {
  text-align: center;
}
.cid-uPGVk0Z0VN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/bamboo-8369576-1920-1920x1358.png");
}
.cid-uPGVk0Z0VN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGVk0Z0VN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGVk0Z0VN .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPGVk0Z0VN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPGVk0Z0VN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPGVk0Z0VN .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPGVk0Z0VN .card-title {
  color: #e07d23;
  text-align: left;
}
.cid-uPGVk0Z0VN .mbr-text,
.cid-uPGVk0Z0VN .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uPGVk0Z0VN .card-title DIV {
  text-align: center;
}
.cid-uPGVk19FX9 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPGVk19FX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGVk19FX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uPGVk19FX9 .container {
    max-width: 1400px;
  }
}
.cid-uPGVk19FX9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uPGVk19FX9 .row {
  justify-content: center;
}
.cid-uPGVk19FX9 .card-text {
  color: #723c35;
}
.cid-uPGVk19FX9 .card-title,
.cid-uPGVk19FX9 .iconfont-wrapper {
  color: #723c35;
}
.cid-uPGVk1opQo {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPGVk1opQo .mbr-text {
  color: #000000;
}
.cid-uPGVk1opQo .mbr-section-subtitle {
  color: #000000;
}
.cid-uPGVk1opQo .mbr-section-title {
  color: #723c35;
  text-align: center;
}
.cid-uPGVk1xiSz {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-uPGVk1xiSz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGVk1xiSz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGVk1LAyR {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uPGVk1LAyR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uPGVk1LAyR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uPGVk1LAyR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uPGVk1LAyR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uPGVk1LAyR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uPGVk1LAyR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uPGVk1LAyR .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uPGVk1LAyR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uPGVk1LAyR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uPGVk1LAyR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uPGVk1LAyR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPGVk1LAyR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPGVk1LAyR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uPGVk1LAyR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOR5MmIHOJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOR5MmIHOJ nav.navbar {
  position: fixed;
}
.cid-uOR5MmIHOJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR5MmIHOJ .dropdown-menu {
  padding: 0;
}
.cid-uOR5MmIHOJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR5MmIHOJ .dropdown-item:hover,
.cid-uOR5MmIHOJ .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uOR5MmIHOJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uOR5MmIHOJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOR5MmIHOJ .nav-link {
  position: relative;
}
.cid-uOR5MmIHOJ .container {
  display: flex;
  margin: auto;
}
.cid-uOR5MmIHOJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOR5MmIHOJ .navbar-caption {
  padding-right: 4rem;
}
.cid-uOR5MmIHOJ .dropdown-menu,
.cid-uOR5MmIHOJ .navbar.opened {
  background: #ffffff !important;
}
.cid-uOR5MmIHOJ .nav-item:focus,
.cid-uOR5MmIHOJ .nav-link:focus {
  outline: none;
}
.cid-uOR5MmIHOJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOR5MmIHOJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOR5MmIHOJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOR5MmIHOJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOR5MmIHOJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOR5MmIHOJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOR5MmIHOJ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOR5MmIHOJ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOR5MmIHOJ .navbar.opened {
  transition: all .3s;
}
.cid-uOR5MmIHOJ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uOR5MmIHOJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uOR5MmIHOJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOR5MmIHOJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOR5MmIHOJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOR5MmIHOJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uOR5MmIHOJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOR5MmIHOJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOR5MmIHOJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uOR5MmIHOJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOR5MmIHOJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOR5MmIHOJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOR5MmIHOJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOR5MmIHOJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOR5MmIHOJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOR5MmIHOJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOR5MmIHOJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uOR5MmIHOJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOR5MmIHOJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOR5MmIHOJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOR5MmIHOJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOR5MmIHOJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOR5MmIHOJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOR5MmIHOJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOR5MmIHOJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOR5MmIHOJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOR5MmIHOJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOR5MmIHOJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOR5MmIHOJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOR5MmIHOJ .dropdown-item.active,
.cid-uOR5MmIHOJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uOR5MmIHOJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOR5MmIHOJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOR5MmIHOJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOR5MmIHOJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOR5MmIHOJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOR5MmIHOJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOR5MmIHOJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOR5MmIHOJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOR5MmIHOJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uOR5MmIHOJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uOR5MmIHOJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOR5MmIHOJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR5MmIHOJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOR5MmIHOJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOR5MmIHOJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR5MmIHOJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOR5MmIHOJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOR5MmIHOJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOR5MmIHOJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOR5MmIHOJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOR5MmIHOJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOR5MmIHOJ .navbar {
    height: 77px;
  }
  .cid-uOR5MmIHOJ .navbar.opened {
    height: auto;
  }
  .cid-uOR5MmIHOJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOw1NprBHX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOw1NprBHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOw1NprBHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOw1NprBHX .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOw1NprBHX .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOw1NprBHX .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOR5NQzcuO {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uOR5NQzcuO .carousel {
  width: 100%;
}
.cid-uOR5NQzcuO .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uOR5NQzcuO .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uOR5NQzcuO .carousel-caption {
  bottom: 40px;
}
.cid-uOR5NQzcuO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uOR5NQzcuO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uOR5NQzcuO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uOR5NQzcuO .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uOR5NQzcuO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uOR5NQzcuO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uOR5NQzcuO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uOR5NQzcuO .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOR5NQzcuO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOR5NQzcuO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOR5NQzcuO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOR5NQzcuO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uOR5NQzcuO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOR5NQzcuO .carousel-indicators li.active,
.cid-uOR5NQzcuO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOR5NQzcuO .carousel-indicators li::after,
.cid-uOR5NQzcuO .carousel-indicators li::before {
  content: none;
}
.cid-uOR5NQzcuO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOR5NQzcuO .carousel-indicators {
    display: none !important;
  }
}
.cid-uOR5NQzcuO H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uOR5NQzcuO P {
  text-align: center;
  color: #ffffff;
}
.cid-uPgbeT81uR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/design-ohne-titel-1920x602.jpg");
}
.cid-uPgbeT81uR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgbeT81uR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPgbeT81uR .mbr-section-subtitle {
  color: #e07d23;
}
.cid-uPgbhxFpfJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/bamboo-8369576-1920-1920x1358.png");
}
.cid-uPgbhxFpfJ .mbr-overlay {
  background: #fafafa;
  opacity: 0;
}
.cid-uPgbhxFpfJ img,
.cid-uPgbhxFpfJ .item-img {
  width: 100%;
}
.cid-uPgbhxFpfJ .item:focus,
.cid-uPgbhxFpfJ span:focus {
  outline: none;
}
.cid-uPgbhxFpfJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPgbhxFpfJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPgbhxFpfJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPgbhxFpfJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPgbhxFpfJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPgbhxFpfJ .mbr-section-title {
  color: #232323;
}
.cid-uPgbhxFpfJ .mbr-text,
.cid-uPgbhxFpfJ .mbr-section-btn {
  text-align: left;
  color: #723c35;
}
.cid-uPgbhxFpfJ .item-title {
  text-align: left;
  color: #e07d23;
}
.cid-uPgbhxFpfJ .item-subtitle {
  text-align: left;
}
.cid-uPgboz5Trx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/design-ohne-titel-1920x602.jpg");
}
.cid-uPgboz5Trx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgboz5Trx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPgboz5Trx .mbr-section-subtitle {
  color: #e07d23;
}
.cid-uPgFPpnSxy {
  background-image: url("../../../assets/images/stone-8598089-1921-1920x960.jpg");
}
.cid-uPgFPpnSxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgFPpnSxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPgFPpnSxy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPgFPpnSxy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPgFPpnSxy .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPgFPpnSxy .mbr-section-title {
  text-align: left;
  color: #e07d23;
}
.cid-uPgFPpnSxy .mbr-text {
  color: #723c35;
}
.cid-uPgHNSnENl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/36525060-detail-high-1400x933.jpg");
}
.cid-uPgHNSnENl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgHNSnENl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPgHNSnENl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPgHNSnENl .row {
  flex-direction: row-reverse;
}
.cid-uPgHNSnENl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPgHNSnENl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPgHNSnENl .mbr-description {
  color: #723c35;
}
.cid-uPgHNSnENl .mbr-section-title {
  color: #e07d23;
}
.cid-uPgHNSnENl .mbr-text {
  color: #723c35;
}
.cid-uOR6B3QEcy {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOR6B3QEcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOR6B3QEcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uOR6B3QEcy .container {
    max-width: 1400px;
  }
}
.cid-uOR6B3QEcy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uOR6B3QEcy .row {
  justify-content: center;
}
.cid-uOR6B3QEcy .card-text {
  color: #723c35;
}
.cid-uOR6B3QEcy .card-title,
.cid-uOR6B3QEcy .iconfont-wrapper {
  color: #723c35;
}
.cid-uPgdnLjC28 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-uPgdnLjC28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgdnLjC28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOR6BALaxj {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uOR6BALaxj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOR6BALaxj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOR6BALaxj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOR6BALaxj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOR6BALaxj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOR6BALaxj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOR6BALaxj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOR6BALaxj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOR6BALaxj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOR6BALaxj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOR6BALaxj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOR6BALaxj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOR6BALaxj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOR6BALaxj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uSEICYfSEs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSEICYfSEs nav.navbar {
  position: fixed;
}
.cid-uSEICYfSEs .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSEICYfSEs .dropdown-menu {
  padding: 0;
}
.cid-uSEICYfSEs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSEICYfSEs .dropdown-item:hover,
.cid-uSEICYfSEs .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uSEICYfSEs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uSEICYfSEs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSEICYfSEs .nav-link {
  position: relative;
}
.cid-uSEICYfSEs .container {
  display: flex;
  margin: auto;
}
.cid-uSEICYfSEs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uSEICYfSEs .navbar-caption {
  padding-right: 4rem;
}
.cid-uSEICYfSEs .dropdown-menu,
.cid-uSEICYfSEs .navbar.opened {
  background: #ffffff !important;
}
.cid-uSEICYfSEs .nav-item:focus,
.cid-uSEICYfSEs .nav-link:focus {
  outline: none;
}
.cid-uSEICYfSEs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSEICYfSEs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSEICYfSEs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uSEICYfSEs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSEICYfSEs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSEICYfSEs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSEICYfSEs .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uSEICYfSEs .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSEICYfSEs .navbar.opened {
  transition: all .3s;
}
.cid-uSEICYfSEs .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uSEICYfSEs .navbar .navbar-logo img {
  width: auto;
}
.cid-uSEICYfSEs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSEICYfSEs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSEICYfSEs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSEICYfSEs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uSEICYfSEs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSEICYfSEs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSEICYfSEs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uSEICYfSEs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSEICYfSEs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uSEICYfSEs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uSEICYfSEs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSEICYfSEs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSEICYfSEs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSEICYfSEs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSEICYfSEs .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uSEICYfSEs .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSEICYfSEs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSEICYfSEs .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSEICYfSEs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSEICYfSEs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSEICYfSEs .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uSEICYfSEs .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSEICYfSEs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSEICYfSEs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSEICYfSEs .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSEICYfSEs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSEICYfSEs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSEICYfSEs .dropdown-item.active,
.cid-uSEICYfSEs .dropdown-item:active {
  background-color: transparent;
}
.cid-uSEICYfSEs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSEICYfSEs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSEICYfSEs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSEICYfSEs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSEICYfSEs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSEICYfSEs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSEICYfSEs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSEICYfSEs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSEICYfSEs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uSEICYfSEs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uSEICYfSEs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSEICYfSEs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSEICYfSEs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSEICYfSEs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSEICYfSEs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSEICYfSEs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uSEICYfSEs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uSEICYfSEs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSEICYfSEs .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uSEICYfSEs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSEICYfSEs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSEICYfSEs .navbar {
    height: 77px;
  }
  .cid-uSEICYfSEs .navbar.opened {
    height: auto;
  }
  .cid-uSEICYfSEs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPVfFfdcxq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPVfFfdcxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVfFfdcxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVfFfdcxq .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uPVfFfdcxq .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uPVfFfdcxq .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uPYpmu12Dv {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uPYpmu12Dv .carousel {
  width: 100%;
}
.cid-uPYpmu12Dv .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPYpmu12Dv .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPYpmu12Dv .carousel-caption {
  bottom: 40px;
}
.cid-uPYpmu12Dv .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPYpmu12Dv .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPYpmu12Dv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPYpmu12Dv .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPYpmu12Dv .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPYpmu12Dv .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPYpmu12Dv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPYpmu12Dv .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPYpmu12Dv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPYpmu12Dv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPYpmu12Dv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPYpmu12Dv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPYpmu12Dv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPYpmu12Dv .carousel-indicators li.active,
.cid-uPYpmu12Dv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPYpmu12Dv .carousel-indicators li::after,
.cid-uPYpmu12Dv .carousel-indicators li::before {
  content: none;
}
.cid-uPYpmu12Dv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPYpmu12Dv .carousel-indicators {
    display: none !important;
  }
}
.cid-uPYpmu12Dv H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uPYpmu12Dv P {
  text-align: center;
  color: #ffffff;
}
.cid-uPVgxbZWou {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/design-ohne-titel-1920x602.jpg");
}
.cid-uPVgxbZWou .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVgxbZWou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVgxbZWou .mbr-section-subtitle {
  color: #e07d23;
}
.cid-uPVgiIboZ4 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/chinese-art-1873932-1920-1-1920x1200.jpg");
}
.cid-uPVgiIboZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVgiIboZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVgjpF4uY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/yin-yang-7215672-1920-1920x1200.jpg");
}
.cid-uPVgjpF4uY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVgjpF4uY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVgjpF4uY .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPVgjpF4uY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPVgjpF4uY .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #723c35;
}
.cid-uPVgjpF4uY .panel-body,
.cid-uPVgjpF4uY .card-header {
  padding: 1rem 0;
}
.cid-uPVgjpF4uY .panel-title-edit {
  color: #723c35;
}
.cid-uPVgjpF4uY H3 {
  text-align: left;
}
.cid-uPVgjpF4uY .panel-text {
  color: #723c35;
}
.cid-uPVfFfVUmP {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPVfFfVUmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVfFfVUmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uPVfFfVUmP .container {
    max-width: 1400px;
  }
}
.cid-uPVfFfVUmP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uPVfFfVUmP .row {
  justify-content: center;
}
.cid-uPVfFfVUmP .card-text {
  color: #723c35;
}
.cid-uPVfFfVUmP .card-title,
.cid-uPVfFfVUmP .iconfont-wrapper {
  color: #723c35;
}
.cid-uPVgLsKdQB {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fitness-8606426-1920-1920x1076.jpg");
}
.cid-uPVgLsKdQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVgLsKdQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVfFgbX7I {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uPVfFgbX7I .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uPVfFgbX7I .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uPVfFgbX7I .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uPVfFgbX7I .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uPVfFgbX7I .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uPVfFgbX7I .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uPVfFgbX7I .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uPVfFgbX7I .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uPVfFgbX7I .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uPVfFgbX7I .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uPVfFgbX7I .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPVfFgbX7I .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPVfFgbX7I .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uPVfFgbX7I .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uQGrCprCfa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQGrCprCfa nav.navbar {
  position: fixed;
}
.cid-uQGrCprCfa .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQGrCprCfa .dropdown-menu {
  padding: 0;
}
.cid-uQGrCprCfa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQGrCprCfa .dropdown-item:hover,
.cid-uQGrCprCfa .dropdown-item:focus {
  background: #723c35 !important;
  color: white !important;
}
.cid-uQGrCprCfa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uQGrCprCfa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQGrCprCfa .nav-link {
  position: relative;
}
.cid-uQGrCprCfa .container {
  display: flex;
  margin: auto;
}
.cid-uQGrCprCfa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uQGrCprCfa .navbar-caption {
  padding-right: 4rem;
}
.cid-uQGrCprCfa .dropdown-menu,
.cid-uQGrCprCfa .navbar.opened {
  background: #ffffff !important;
}
.cid-uQGrCprCfa .nav-item:focus,
.cid-uQGrCprCfa .nav-link:focus {
  outline: none;
}
.cid-uQGrCprCfa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQGrCprCfa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQGrCprCfa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQGrCprCfa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQGrCprCfa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQGrCprCfa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQGrCprCfa .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uQGrCprCfa .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQGrCprCfa .navbar.opened {
  transition: all .3s;
}
.cid-uQGrCprCfa .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uQGrCprCfa .navbar .navbar-logo img {
  width: auto;
}
.cid-uQGrCprCfa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQGrCprCfa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQGrCprCfa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQGrCprCfa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uQGrCprCfa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQGrCprCfa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQGrCprCfa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  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: 55%;
}
.cid-uQGrCprCfa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQGrCprCfa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQGrCprCfa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQGrCprCfa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQGrCprCfa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQGrCprCfa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQGrCprCfa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQGrCprCfa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    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: 55%;
  }
  .cid-uQGrCprCfa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQGrCprCfa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQGrCprCfa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQGrCprCfa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQGrCprCfa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQGrCprCfa .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQGrCprCfa .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQGrCprCfa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQGrCprCfa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQGrCprCfa .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQGrCprCfa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQGrCprCfa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQGrCprCfa .dropdown-item.active,
.cid-uQGrCprCfa .dropdown-item:active {
  background-color: transparent;
}
.cid-uQGrCprCfa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQGrCprCfa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQGrCprCfa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQGrCprCfa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQGrCprCfa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQGrCprCfa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQGrCprCfa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQGrCprCfa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQGrCprCfa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQGrCprCfa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uQGrCprCfa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQGrCprCfa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQGrCprCfa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQGrCprCfa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQGrCprCfa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQGrCprCfa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQGrCprCfa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQGrCprCfa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQGrCprCfa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQGrCprCfa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQGrCprCfa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQGrCprCfa .navbar {
    height: 77px;
  }
  .cid-uQGrCprCfa .navbar.opened {
    height: auto;
  }
  .cid-uQGrCprCfa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQGrCpGiGj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQGrCpGiGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQGrCpGiGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQGrCpGiGj .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uQGrCpGiGj .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uQGrCpGiGj .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uQGrCpUUt3 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uQGrCpUUt3 .carousel {
  width: 100%;
}
.cid-uQGrCpUUt3 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uQGrCpUUt3 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uQGrCpUUt3 .carousel-caption {
  bottom: 40px;
}
.cid-uQGrCpUUt3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uQGrCpUUt3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uQGrCpUUt3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uQGrCpUUt3 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uQGrCpUUt3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uQGrCpUUt3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uQGrCpUUt3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uQGrCpUUt3 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uQGrCpUUt3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQGrCpUUt3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uQGrCpUUt3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uQGrCpUUt3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uQGrCpUUt3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uQGrCpUUt3 .carousel-indicators li.active,
.cid-uQGrCpUUt3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uQGrCpUUt3 .carousel-indicators li::after,
.cid-uQGrCpUUt3 .carousel-indicators li::before {
  content: none;
}
.cid-uQGrCpUUt3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uQGrCpUUt3 .carousel-indicators {
    display: none !important;
  }
}
.cid-uQGrCpUUt3 H5 {
  text-align: center;
  color: #fafafa;
}
.cid-uQGrCpUUt3 P {
  text-align: center;
  color: #ffffff;
}
.cid-uQGrCqeVUo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uQGrCqeVUo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQGrCqeVUo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uQGrCqeVUo .container {
    max-width: 1400px;
  }
}
.cid-uQGrCqeVUo .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uQGrCqeVUo .row {
  justify-content: center;
}
.cid-uQGrCqeVUo .card-text {
  color: #723c35;
}
.cid-uQGrCqeVUo .card-title,
.cid-uQGrCqeVUo .iconfont-wrapper {
  color: #723c35;
}
.cid-uQGrCqtO5b {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #723c35;
}
.cid-uQGrCqtO5b .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uQGrCqtO5b .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uQGrCqtO5b .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uQGrCqtO5b .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uQGrCqtO5b .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uQGrCqtO5b .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uQGrCqtO5b .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uQGrCqtO5b .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uQGrCqtO5b .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uQGrCqtO5b .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uQGrCqtO5b .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uQGrCqtO5b .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQGrCqtO5b .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uQGrCqtO5b .media-container-row .row-copirayt p {
  width: 100%;
}
