@import url(https://fonts.googleapis.com/css?family=Cormorant:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i&display=swap);





body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Cormorant', serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Cormorant', serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #41351b !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #d48f00 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #41351b !important;
  border-color: #41351b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0b0905 !important;
  border-color: #0b0905 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0b0905 !important;
  border-color: #0b0905 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d48f00 !important;
  border-color: #d48f00 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #885b00 !important;
  border-color: #885b00 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #885b00 !important;
  border-color: #885b00 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #41351b;
  color: #41351b !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #41351b;
  border-color: #41351b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #41351b !important;
  border-color: #41351b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3e97d1;
  color: #3e97d1 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #ff4100;
  color: #ff4100 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #36d88a;
  color: #36d88a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #d48f00;
  color: #d48f00 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #d48f00;
  border-color: #d48f00;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d48f00 !important;
  border-color: #d48f00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #444444;
  color: #444444 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #333333;
  color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #41351b !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #d48f00 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a,
a:hover {
  color: #41351b;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1d180c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2a7cb2 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #24b770 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cc3400 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a16d00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #2b2b2b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #1a1a1a !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #d48f00;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #41351b;
  border-color: #41351b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c8af7a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe0a1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #41351b;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #41351b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #41351b;
  border-bottom-color: #41351b;
}
.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: #41351b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3e97d1 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 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='%2341351b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-s0WHhzFHG6 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-s0WHhzFHG6 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s0WHhzFHG6 a {
  font-style: normal;
}
.cid-s0WHhzFHG6 .mylogo {
  position: absolute;
  top: 10px;
}
.cid-s0WHhzFHG6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-s0WHhzFHG6 .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-s0WHhzFHG6 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0WHhzFHG6 .content-text {
  margin-bottom: 0;
}
.cid-s0WHhzFHG6 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s0WHhzFHG6 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #41351b;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-s0WHhzFHG6 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-s0WHhzFHG6 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-s0WHhzFHG6 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-s0WHhzFHG6 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s0WHhzFHG6 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s0WHhzFHG6 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-s0WHhzFHG6 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0WHhzFHG6 .nav-dropdown .link {
  font-weight: 400;
}
.cid-s0WHhzFHG6 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s0WHhzFHG6 .content-right-side {
  text-align: center;
}
.cid-s0WHhzFHG6 .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-s0WHhzFHG6 .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-s0WHhzFHG6 .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-s0WHhzFHG6 .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-s0WHhzFHG6 .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-s0WHhzFHG6 .menu-bottom {
    justify-content: flex-end;
  }
  .cid-s0WHhzFHG6 img {
    height: 3.8rem !important;
  }
  .cid-s0WHhzFHG6 .btn {
    display: -webkit-flex;
  }
  .cid-s0WHhzFHG6 button.navbar-toggler {
    display: block;
  }
  .cid-s0WHhzFHG6 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-s0WHhzFHG6 .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s0WHhzFHG6 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s0WHhzFHG6 .navbar-collapse.collapsing,
  .cid-s0WHhzFHG6 .navbar-collapse.show {
    display: block !important;
  }
  .cid-s0WHhzFHG6 .navbar-collapse.collapsing .navbar-nav,
  .cid-s0WHhzFHG6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s0WHhzFHG6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s0WHhzFHG6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s0WHhzFHG6 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-s0WHhzFHG6 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-s0WHhzFHG6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-s0WHhzFHG6 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-s0WHhzFHG6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s0WHhzFHG6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s0WHhzFHG6 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s0WHhzFHG6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s0WHhzFHG6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s0WHhzFHG6 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-s0WHhzFHG6 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
  .cid-s0WHhzFHG6 .mylogo {
    max-width: 120px!important;
    height: auto!important;
  }
}
@media (max-width: 991px) {
  .cid-s0WHhzFHG6 .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-s0WHhzFHG6 .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-s0WHhzFHG6 .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-s0WHhzFHG6 .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-s0WHhzFHG6 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-s0WHhzFHG6 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-s0WHhzFHG6 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-s0WHhzFHG6 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-s0WHhzFHG6 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0WHhzFHG6 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-s0WHhzFHG6 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-s0WHhzFHG6 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-s0WHhzFHG6 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-s0WHhzFHG6 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-s0WHhzFHG6 .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-s0WHhzFHG6 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-s0WHhzFHG6 .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s0WHhzFHG6 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-s0WHhzFHG6 .navbar {
    display: block;
    padding: 0;
  }
  .cid-s0WHhzFHG6 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s0WHhzFHG6 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-s0WHhzFHG6 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-s0WHhzFHG6 .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-s0WHhzFHG6 .navbar-toggler {
    display: none;
  }
  .cid-s0WHhzFHG6 .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s0WHhzFHG6 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0WHhzFHG6 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s0WHhzFHG6 .menu-logo {
  margin-right: auto;
}
.cid-s0WHhzFHG6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0WHhzFHG6 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s0WHhzFHG6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s0WHhzFHG6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s0WHhzFHG6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s0WHhzFHG6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s0WHhzFHG6 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-s0WHhzFHG6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s0WHhzFHG6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0WHhzFHG6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s0WHhzFHG6 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0WHhzFHG6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s0WHhzFHG6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0WHhzFHG6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-s0WHhzFHG6 .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-s0WHhzFHG6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s0WHhzFHG6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s0WHhzFHG6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s0WHhzFHG6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s0WHhzFHG6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0WHhzFHG6 button.navbar-toggler:focus {
  outline: none;
}
.cid-s0WHhzFHG6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s0WHhzFHG6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s0WHhzFHG6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s0WHhzFHG6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s0WHhzFHG6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s0WHhzFHG6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0WHhzFHG6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s0WHhzFHG6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s0WHhzFHG6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0WHhzFHG6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0WHhzFHG6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0WHhzFHG6 .collapsed .btn {
  display: -webkit-flex;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.collapsing,
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s0WHhzFHG6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s0WHhzFHG6 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 10rem - 1.5rem);
  }
  .cid-s0WHhzFHG6 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s0WHhzFHG6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-s0WHhzFHG6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-s0WHhzFHG6 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s0WHhzFHG6 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s0WHhzFHG6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s0WHhzFHG6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s0WHhzFHG6 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-s0WHhzFHG6 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0WHhzFHG6 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s0WHhzFHG6 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-s0WHhzFHG6 .nav-link:focus {
  outline: none;
}
.cid-s0WHhzFHG6 .navbar-toggler {
  position: relative;
}
.cid-s0WHhzFHG6 .dropdown-item.active,
.cid-s0WHhzFHG6 .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-s0WHhzFHG6 .nav-link:hover,
.cid-s0WHhzFHG6 .dropdown-item:hover {
  color: #ff8f00;
}
.cid-s0WHhzFHG6 .widget-title,
.cid-s0WHhzFHG6 .widget-icon {
  color: #41351b;
}
.cid-s0WHhzFHG6 .widget-text {
  color: #41351b;
}
@media (max-width: 1280px) {
  .cid-s0WHhzFHG6 .mylogo {
    max-width: 150px;
    height: auto!important;
  }
}
.cid-rDOO1GALoB {
  overflow: hidden !important;
  padding-top: 280px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/schoenefrauaufhandtuch-4.jpg");
  background-position: right;
}
@media (max-width: 991px) {
  .cid-rDOO1GALoB {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 10px;
  }
}
.cid-rDOO1GALoB .my-container-pos {
  position: relative;
  top: -150px;
}
.cid-rDOO1GALoB .container-fluid {
  padding: 0 3rem;
}
.cid-rDOO1GALoB .animated-element {
  color: #efefef;
}
.cid-rDOO1GALoB .kiste {
  border-radius: 6px;
  padding: 20px;
  width: 70%;
}
@media (max-width: 1280px) {
  .cid-rDOO1GALoB .my-container-pos {
    position: relative;
    top: -100px;
  }
  .cid-rDOO1GALoB .kiste {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    width: 50%;
  }
  .cid-rDOO1GALoB h3 {
    font-size: 2rem;
  }
  .cid-rDOO1GALoB p {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-rDOO1GALoB .my-container-pos {
    position: relative;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .cid-rDOO1GALoB .container-fluid {
    padding: 0 1rem;
  }
  .cid-rDOO1GALoB .my-container-pos {
    position: relative;
    top: 0px;
  }
  .cid-rDOO1GALoB .kiste {
    visibility: hidden;
  }
}
.cid-rDOO1GALoB h1 {
  margin-bottom: 1rem;
}
.cid-rDOO1GALoB .mbr-section-title {
  font-weight: 300;
  text-align: left;
  color: #41351b;
}
.cid-rDOO1GALoB .btn-line {
  margin-top: 3rem;
}
.cid-rDOO1GALoB p {
  margin-bottom: 0;
}
.cid-rDOO1GALoB .mbr-section-subtitle {
  text-align: left;
}
.cid-rDOO1GALoB .mbr-text,
.cid-rDOO1GALoB .mbr-section-btn {
  text-align: left;
  color: #41351b;
}
.cid-rDJgCd0bCB {
  overflow: hidden !important;
  padding-top: 105px;
  padding-bottom: 120px;
  background-color: #faf7f2;
}
@media (max-width: 991px) {
  .cid-rDJgCd0bCB {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 16px;
  }
}
.cid-rDJgCd0bCB .img-style {
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}
.cid-rDJgCd0bCB .animated-element {
  color: #efefef;
}
.cid-rDJgCd0bCB .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-rDJgCd0bCB .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-rDJgCd0bCB .container-fluid {
    padding: 0 1rem;
  }
  .cid-rDJgCd0bCB .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJgCd0bCB .mbr-white {
    padding-left: 5rem;
  }
  .cid-rDJgCd0bCB .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-rDJgCd0bCB .container-fluid {
    padding: 0 2rem;
  }
}
.cid-rDJgCd0bCB .container-fluid {
  max-width: 1300px;
}
.cid-rDJgCd0bCB .mbr-section-title {
  margin-bottom: 1rem;
  color: #071125;
}
.cid-rDJgCd0bCB .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-rDJgCd0bCB .btn-line {
  margin-top: 3rem;
}
.cid-rDJgCd0bCB .mbr-section-subtitle,
.cid-rDJgCd0bCB .mbr-section-btn {
  color: #41351b;
}
.cid-rZZLMnAIgK {
  overflow: hidden !important;
  padding-top: 200px;
  padding-bottom: 200px;
  background-image: url("../../../assets/images/nasebreit.jpg");
}
@media (max-width: 991px) {
  .cid-rZZLMnAIgK {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-rZZLMnAIgK .container-fluid {
  padding: 0 3rem;
}
.cid-rZZLMnAIgK .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rZZLMnAIgK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rZZLMnAIgK h1 {
  margin-bottom: 1rem;
}
.cid-rZZLMnAIgK .mbr-section-title {
  font-weight: 300;
  text-align: left;
  color: #41351b;
}
.cid-rZZLMnAIgK .btn-line {
  margin-top: 3rem;
}
.cid-rZZLMnAIgK p {
  margin-bottom: 0;
}
.cid-rZZLMnAIgK .mbr-section-subtitle {
  text-align: left;
}
.cid-rZZLMnAIgK .mbr-text,
.cid-rZZLMnAIgK .mbr-section-btn {
  text-align: left;
  color: #41351b;
}
.cid-s00vhO9snU {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s00vhO9snU .mbr-section-title {
  font-weight: bold;
  color: #635331;
  text-align: center;
}
.cid-s00vhO9snU img {
  width: 70%;
  border-radius: 4px;
}
.cid-s00vhO9snU .img-style {
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}
.cid-s00vhO9snU .nav {
  border: none;
}
.cid-s00vhO9snU .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s00vhO9snU .nav-tabs .nav-link {
  border-radius: 0!important;
  border-width: 0 1px 1px 1px!important;
  box-sizing: border-box;
  color: #635331;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px -0.5px 1rem -0.5px;
  transition: all .5s;
  border-bottom: 1px solid #635331;
}
.cid-s00vhO9snU .nav-tabs .nav-link:hover {
  border: 1px solid #635331;
  background-color: #e5dfd1;
  color: #000000;
}
.cid-s00vhO9snU .nav-tabs .nav-link.active {
  border: 1px solid #635331;
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #e5dfd1;
}
.cid-s00vhO9snU P {
  text-align: center;
  color: #41351b;
}
.cid-s00PQ2TB0m {
  overflow: hidden !important;
  padding-top: 200px;
  padding-bottom: 200px;
  background-image: url("../../../assets/images/face-2936245.jpeg");
}
@media (max-width: 991px) {
  .cid-s00PQ2TB0m {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-s00PQ2TB0m .container-fluid {
  padding: 0 3rem;
}
.cid-s00PQ2TB0m .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-s00PQ2TB0m .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s00PQ2TB0m h1 {
  margin-bottom: 1rem;
}
.cid-s00PQ2TB0m .mbr-section-title {
  font-weight: 300;
  text-align: left;
  color: #41351b;
}
.cid-s00PQ2TB0m .btn-line {
  margin-top: 3rem;
}
.cid-s00PQ2TB0m p {
  margin-bottom: 0;
}
.cid-s00PQ2TB0m .mbr-section-subtitle {
  text-align: left;
}
.cid-s00PQ2TB0m .mbr-text,
.cid-s00PQ2TB0m .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-s00CYEmWJn {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-s00CYEmWJn .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s00CYEmWJn .container {
  max-width: 1300px;
}
.cid-s00CYEmWJn .img-style {
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}
.cid-s00CYEmWJn .mbr-text {
  color: #8d97ad;
}
.cid-s00CYEmWJn .nav {
  border: none;
}
.cid-s00CYEmWJn .nav-tabs {
  width: 100%;
}
.cid-s00CYEmWJn .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-s00CYEmWJn .card-img {
  overflow: hidden;
  border-radius: .25rem;
  max-width: 100%;
}
.cid-s00CYEmWJn .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-s00CYEmWJn .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #ffffff;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #efefef;
  margin: 0px;
  border-radius: 0px !important;
  transition: all .3s;
}
.cid-s00CYEmWJn .nav-tabs .nav-link:hover {
  background-color: #eecda3;
  color: #000000;
}
.cid-s00CYEmWJn .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #eecda3;
}
.cid-s00CYEmWJn .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-s00CYEmWJn .nav-item {
    display: table-row !important;
  }
}
.cid-s00CYEmWJn .mbr-section-title {
  color: #41351b;
}
.cid-s00CYEmWJn .title-content {
  color: #41351b;
}
.cid-s00CYEmWJn .mbr-text,
.cid-s00CYEmWJn .mbr-section-btn {
  color: #41351b;
}
.cid-s021NN5PEm {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s021NN5PEm .mbr-text {
  color: #767676;
}
.cid-s021NN5PEm .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  align-items: center;
  justify-content: center;
  background-color: #f9f2e3;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
}
.cid-s021NN5PEm .card-wrapper:hover {
  transform: translateY(-0.3rem);
}
.cid-s021NN5PEm .card-wrapper:hover .ico2 {
  color: #41351b !important;
}
.cid-s021NN5PEm .text-info:hover {
  color: inherit!important;
}
.cid-s021NN5PEm .ico2 {
  color: #d48f00 !important;
  transition: all 0.6s;
}
.cid-s021NN5PEm .card-box {
  padding: 0rem 1rem;
}
.cid-s021NN5PEm .card-img {
  width: auto;
}
.cid-s021NN5PEm .ico1 {
  font-size: 3rem !important;
}
.cid-s021NN5PEm h3,
.cid-s021NN5PEm h4 {
  padding: 0;
  margin: 0;
}
.cid-s021NN5PEm .card-title,
.cid-s021NN5PEm .card-img {
  color: #232323;
}
.cid-s021NN5PEm H3 {
  color: #767676;
}
.cid-s021NN5PEm H1 {
  color: #232323;
}
.cid-rDOOGK3PUE {
  background-color: #ffffff;
}
.cid-rDOOGK3PUE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-rDOOGK3PUE .img-style {
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}
.cid-rDOOGK3PUE textarea {
  min-height: 150px;
}
.cid-rDOOGK3PUE .form-col {
  background: #ffffff;
}
.cid-rDOOGK3PUE .form-wrap {
  max-width: 520px;
}
.cid-rDOOGK3PUE .text-wrap {
  max-width: 400px;
  border: 2px solid #132c70;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-rDOOGK3PUE .form-wrap {
    max-width: 690px;
  }
  .cid-rDOOGK3PUE .md-pb {
    padding-bottom: 3rem;
  }
  .cid-rDOOGK3PUE .text-wrap {
    max-width: 690px;
  }
}
.cid-rDOOGK3PUE .mbr-section-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-rDOOGK3PUE H2 {
  color: #41351b;
  margin-bottom: 1rem;
}
.cid-rDOOGK3PUE H3 {
  color: #132c70;
}
.cid-rDOOGK3PUE H4 {
  color: #132c70;
}
.cid-rDOOGK3PUE .mbr-text {
  text-align: center !important;
}
.cid-rDOOGK3PUE .form-group {
  margin-bottom: 0.5rem;
  padding-left: 2px;
}
.cid-rDOOGK3PUE .form-row {
  position: relative;
}
.cid-rDOOGK3PUE .btn {
  position: absolute;
  top: -39px;
  right: 5px;
  border-bottom: none;
}
.cid-rDOOGK3PUE .container-fluid {
  max-width: 1300px;
}
.cid-rDOOGK3PUE .mbr-section-title {
  line-height: 1;
}
@media (max-width: 900px) {
  .cid-rDOOGK3PUE .mbr-figure img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-rDOOGK3PUE {
    padding-top: 0px;
    padding-bottom: 16px;
  }
  .cid-rDOOGK3PUE .container-fluid {
    max-width: 1300px;
    padding: 0 1rem;
  }
  .cid-rDOOGK3PUE .form-wrap {
    margin: 1rem 0rem;
  }
  .cid-rDOOGK3PUE .btn {
    position: absolute;
    top: -45px;
    right: 5px;
  }
  .cid-rDOOGK3PUE .col-auto {
    margin: auto;
  }
  .cid-rDOOGK3PUE .mbr-figure img {
    display: none;
  }
}
@media (min-width: 767px) {
  .cid-rDOOGK3PUE {
    padding-top: 0px;
    padding-bottom: 120px;
  }
  .cid-rDOOGK3PUE .container-fluid {
    padding: 0 2rem;
  }
  .cid-rDOOGK3PUE .form-wrap {
    margin-top: 4rem;
    margin-bottom: 4rem;
    margin-right: 4rem;
    margin-left: 2.2rem;
  }
}
@media (max-width: 450px) {
  .cid-rDOOGK3PUE .btn {
    position: absolute;
    top: -47px;
    right: 5px;
  }
}
.cid-rDOOGK3PUE .telephone {
  margin-bottom: 0;
}
.cid-rDOOGK3PUE .E-mail {
  margin-bottom: 0;
}
.cid-rDOOGK3PUE .dragArea {
  margin-top: 1rem;
}
.cid-rDOOGK3PUE P {
  color: #41351b;
}
.cid-s0KS25Lifd {
  padding-top: 80px;
  padding-bottom: 30px;
  background-color: #eeeadf;
}
.cid-s0KS25Lifd .media-content .btn-bgr {
  z-index: 0;
}
.cid-s0KS25Lifd .mbr-section-text {
  word-break: break-word;
}
.cid-s0KS25Lifd .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-s0KS25Lifd .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-s0KS25Lifd .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-s0KS25Lifd .mbr-text {
    text-align: center;
  }
}
.cid-s0KS25Lifd H1 {
  color: #555555;
}
.cid-s0KRLB8Jyd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eeeadf;
}
@media (max-width: 767px) {
  .cid-s0KRLB8Jyd .content {
    text-align: center;
  }
  .cid-s0KRLB8Jyd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s0KRLB8Jyd .karte {
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  border-color: #ccc;
  padding: 6px;
}
.cid-s0KRLB8Jyd .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-s0KRLB8Jyd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s0KRLB8Jyd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s0KRLB8Jyd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s0KRLB8Jyd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s0KRLB8Jyd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s0KRLB8Jyd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s0KRLB8Jyd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s0KRLB8Jyd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s0KRLB8Jyd .google-map {
  height: 25rem;
  position: relative;
}
.cid-s0KRLB8Jyd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s0KRLB8Jyd .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s0KRLB8Jyd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s0KRLB8Jyd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s0KRLB8Jyd P {
  color: #2c1616;
}
@primaryColor: #41351b;
@secondaryColor: #3E97D1;
@successColor: #36D88A;
@infoColor: #FF4100;
@warningColor: #d48f00;
@dangerColor: #444444;
@mainFont: IBM Plex Sans;
@display1Font: 'Cormorant', serif;
@display1Size: 3.5;
@display2Font: 'Cormorant', serif;
@display2Size: 3;
@display5Font: 'Cormorant', serif;
@display5Size: 1.4;
@display7Font: 'IBM Plex Sans', sans-serif;
@display7Size: 1.1;
@display4Font: 'Cormorant', serif;
@display4Size: 1.2;
@isRoundedButtons: false;
@isAnimatedOnScroll: false;
@isScrollToTopButton: true;
@arrowColor: #444444;
@isPublish: true;

.cid-s0sD0oehnS {
@paddingTop: 7;
@paddingBottom: 3;
@showTitle: true;
@showSubtitle: false;
@showTitleTab: true;
@showImages: true;
@showButtons: true;
@tabColor: #ffffff;
@activeTabColor1: #eecda3;
@bootstrapTabs: "4";
@uname__10: "file:///D:/InternetProjekte/hno2/assets/images/background3.jpg";
@uname__11: true;
@uname__12: #ffffff;
@bg-value: #ffffff;
@bg-type: "color";
@bg-color-value: #ffffff;
@bg-parallax: false;
@gradientBg: true;
@color2: #ffffff;
@overlay: true;
@overlayColor: #ffffff;
@overlayOpacity: 0.7;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(0deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.mbr-section-subtitle {
  color: #8d97ad;
}
.container {
  max-width: 1300px;
}
li {
  border-radius: 5px;
  background: #eecda3;
}
.img-style {
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}
.my-li-text {
  padding: 0.5rem;
}
.mbr-text {
  color: #8d97ad;
}
.nav {
  border: none;
}
.nav-tabs {
  width: 100%;
  .nav-item {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.card-img {
  overflow: hidden;
  border-radius: .25rem;
}
.mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.nav-tabs .nav-link {
  display: flex;
  color: contrast(@tabColor);
  box-sizing: border-box;
  font-style: normal;
  background: @tabColor;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid darken(@tabColor, 6.3%);
  margin: 0px;
  border-radius: 0px !important;
  transition: all .3s;
  &:hover {
    background-color: @activeTabColor1;
    color: contrast(@activeTabColor1);
  }
  &.active {
    font-weight: 500;
    color: contrast(@activeTabColor1);
    font-style: normal;
    background: @activeTabColor1;
  }
  span {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .nav-item {
    display: table-row !important;
  }
}
.mbr-section-title {
  color: #41351b;
}
.title-content {
  color: #41351b;
}
.mbr-text,.mbr-section-btn {
  color: #41351b;
}
}

.cid-s0zT7380v9 {

& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
}
}

.cid-s0WHhzFHG6 {
@showLogo: true;
@logoSize: 10;
@showBrand: false;
@widgetCount: "2";
@showButtons: false;
@menuAlign: "center";
@itemsHoverColor: #ff8f00;
@sticky: true;
@collapsed: false;
@transparent: true;
@hamburgerColor: #333333;
@menuBgColor: #ffffff;

.navbar {
  padding: .5rem 0;
  background: @menuBgColor;
  transition: none;
  min-height: 50px;
}
.navbar-dropdown.bg-color.transparent.opened {
  background: @menuBgColor;
}
a {
  font-style: normal;
}
.mylogo {
  position: absolute;
  top: 10px;
}
.nav-item {
  & span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    top: -0.2em;
    text-decoration: none;
  }
  & a {
    padding: 0.7rem 0 !important;
    margin: 0 .65rem !important;
  }
}
.dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.content-text {
  margin-bottom: 0;
}
.navbar-nav {
  position: relative;
  min-height: 49px;
  @media (min-width: 992px) {
    .main-menu-animated-line {
      position: absolute;
      left: 0;
      width: 0;
      height: 0;
      z-index: 100;
      border-top: 4px solid @primaryColor;
      -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
      -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
      transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
      &.bottom {
        bottom: 0;
      }
    }
  }
  .nav-item span {
    padding-right: 0;
  }
  .nav-item a {
    margin: 0 1.3rem !important;
  }
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.nav-dropdown .dropdown-item {
  font-weight: 400;
}
.navbar-buttons when (@showButtons) {
  flex-wrap: wrap;
}
.navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.nav-dropdown .link {
  font-weight: 400;
}
.menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.content-right-side {
  text-align: center;
}
.menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .menu-content-top {
    width: 100%;
    display: flex;
    .menu-content-right {
      display: block;
      position: absolute;
      visibility: hidden;
      width: 100%;
      bottom: 0;
      left: 0;
      text-align: center;
      transition: 0s all 0s;
      .info-widget {
        padding: 1rem 0;
        text-align: center;
      }
    }
  }
  .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .menu-bottom {
    justify-content: flex-end;
  }
  img {
    height: 3.8rem !important;
  }
  .btn {
    display: -webkit-flex;
  }
  button.navbar-toggler {
    display: block;
  }
  .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
    &.collapsing,&.show {
      display: block !important;
      .navbar-nav {
        display: block;
        text-align: center;
        .nav-item {
          clear: both;
          & when (@showButtons = false) {
            &:last-child {
              margin-bottom: 1rem;
            }
          }
        }
      }
      .navbar-buttons {
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        text-align: center;
        &:last-child {
          margin-bottom: 1rem;
        }
      }
    }
  }
  .dropdown {
    .dropdown-menu {
      width: 100%;
      text-align: center;
      position: relative;
      opacity: 0;
      display: block;
      height: 0;
      visibility: hidden;
      padding: 0;
      transition-duration: .5s;
      transition-property: opacity,padding,height;
    }
    &.open > .dropdown-menu {
      position: relative;
      opacity: 1;
      height: auto;
      padding: 1.4rem 0;
      visibility: visible;
    }
    .dropdown-submenu {
      left: 0;
      text-align: center;
      width: 100%;
    }
    .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
      margin-top: 0;
      position: inherit;
      right: 0;
      top: 50%;
      display: inline-block;
      width: 0;
      height: 0;
      margin-left: .3em;
      vertical-align: middle;
      content: "";
      border-top: .30em solid;
      border-right: .30em solid transparent;
      border-left: .30em solid transparent;
    }
  }
  .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
  .mylogo {
    max-width: 120px!important;
    height: auto!important;
  }
}
.navbar when (@widgetCount = '1') {
  @media (max-width: 991px) {
    &.opened {
      padding-bottom: 4rem;
    }
    .navbar-collapse {
      max-height: ~"calc(100vh - 4rem - 80px)";
    }
  }
  @media (max-width: 575px) {
    &.opened {
      padding-bottom: 5rem;
    }
    .navbar-collapse {
      max-height: ~"calc(100vh - 5rem - 80px)";
    }
  }
}
.navbar when (@widgetCount = '2') {
  @media (max-width: 991px) {
    &.opened {
      padding-bottom: 8rem;
    }
    .navbar-collapse {
      max-height: ~"calc(100vh - 8rem - 80px)";
    }
  }
  @media (max-width: 575px) {
    &.opened {
      padding-bottom: 10rem;
    }
    .navbar-collapse {
      max-height: ~"calc(100vh - 10rem - 80px)";
    }
  }
}
.navbar when (@widgetCount = '3') {
  @media (max-width: 991px) {
    &.opened {
      padding-bottom: 12rem;
    }
    .navbar-collapse {
      max-height: ~"calc(100vh - 12rem - 80px)";
    }
  }
  @media (max-width: 575px) {
    &.opened {
      padding-bottom: 15rem;
    }
    .navbar-collapse {
      max-height: ~"calc(100vh - 15rem - 80px)";
    }
  }
}
.content-right-side .content-link {
  margin-left: 2rem;
  span {
    vertical-align: middle;
    padding-right: 1rem;
  }
}
.widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  .info-widget:last-child {
    padding-right: 0;
  }
  .info-widget:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  .widget-title {
    font-weight: 600;
    margin-bottom: 7px;
  }
  .widget-text {
    margin-bottom: 0;
  }
}
.menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  & when (@menuAlign = 'center') {
    -webkit-justify-content: center;
    justify-content: center;
  }
  & when (@menuAlign = 'right') {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .navbar {
    display: block;
    padding: 0;
    .menu-logo {
      margin-right: auto;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
    }
  }
  .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .navbar-short .menu-content-top when not (@collapsed) and (@sticky) {
    height: 0;
    min-height: 0;
    border: none;
  }
  .navbar-toggler {
    display: none;
  }
  .navbar-collapse {
    & when (@menuAlign = 'center') {
      -webkit-justify-content: center;
      justify-content: center;
    }
    & when (@menuAlign = 'right') {
      -webkit-justify-content: flex-end;
      justify-content: flex-end;
    }
    & when (@menuAlign = 'left') {
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
    }
  }
}
.btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  .mbr-iconfont {
    font-size: 1.2em;
  }
}
.menu-logo {
  margin-right: auto;
  .navbar-brand {
    display: flex;
    margin-left: 1.5rem;
    padding: 0.5rem 0;
    transition: padding .2s;
    min-height: 3.8rem;
    -webkit-align-items: center;
    align-items: center;
    .navbar-caption-wrap {
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      word-break: break-word;
      min-width: 7rem;
      margin: .3rem 0;
      .navbar-caption {
        line-height: 1.2rem !important;
        padding-right: 2rem;
      }
    }
    .navbar-logo {
      font-size: 4rem;
      transition: font-size 0.25s;
      & img {
        display: flex;
      }
      .mbr-iconfont {
        transition: font-size 0.25s;
      }
    }
  }
}
.navbar-toggleable-sm .navbar-collapse {
  width: auto;
  .navbar-nav {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    .nav-item {
      -webkit-align-self: center;
      align-self: center;
    }
  }
  .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
  }
}
.dropdown {
  .dropdown-menu {
    background: @menuBgColor;
    display: none;
    position: absolute;
    @media (max-width: 991px) {
      overflow: hidden;
    }
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
    .dropdown-item {
      width: auto;
      padding: 0.235em 2.5385em 0.235em 3.5385em !important;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      &::after {
        right: 0.5rem;
      }
      &:hover {
        .mbr-iconfont:before {
          -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
        }
      }
      .mbr-iconfont {
        margin-left: -1.8rem;
        padding-right: 1rem;
        font-size: inherit;
        &:before {
          display: inline-block;
          -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
          -webkit-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
        }
      }
    }
    .dropdown-submenu {
      margin: 0;
    }
  }
  &.open > .dropdown-menu {
    display: block;
  }
}
.navbar-toggleable-sm {
  &.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
  }
}
.navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
  & .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    transition: font-size 0.25s;
    & .mbr-iconfont {
      font-size: 2.5rem !important;
    }
    & img {
      height: 3rem !important;
    }
  }
  & .navbar-brand {
    min-height: 3rem;
  }
}
button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
  &:focus {
    outline: none;
  }
  .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: @hamburgerColor;
    &:nth-child(1) {
      top: 0;
      transition: all .2s;
    }
    &:nth-child(2) {
      top: 8px;
      transition: all .15s;
    }
    &:nth-child(3) {
      top: 8px;
      transition: all .15s;
    }
    &:nth-child(4) {
      top: 16px;
      transition: all .2s;
    }
  }
}
nav.opened .hamburger span {
  &:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
  }
  &:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
  }
  &:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
  }
  &:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
  }
}
.collapsed {
  .dropdown-menu .dropdown-item:before {
    display: none;
  }
  .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
  .btn {
    display: -webkit-flex;
  }
  .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
    &.collapsing,&.show {
      display: block !important;
      .navbar-nav {
        display: block;
        text-align: center;
        .nav-item {
          clear: both;
          & when (@showButtons = false) {
            &:last-child {
              margin-bottom: 1rem;
            }
          }
        }
      }
      .navbar-buttons {
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        text-align: center;
        &:last-child {
          margin-bottom: 1rem;
        }
      }
    }
  }
  @media (min-width: 992px) {
    &:not(.navbar-short) .navbar-collapse when (@showLogo) {
      max-height: ~"calc(100vh - @{logoSize}rem - 1.5rem)";
    }
    &:not(.navbar-short) .navbar-collapse when not (@showLogo) {
      max-height: ~"calc(100vh - 5rem)";
    }
    .dropdown .dropdown-menu {
      overflow: hidden;
    }
  }
  button.navbar-toggler {
    display: block;
  }
  .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .dropdown {
    .dropdown-menu {
      width: 100%;
      text-align: center;
      position: relative;
      opacity: 0;
      display: block;
      height: 0;
      visibility: hidden;
      padding: 0;
      transition-duration: .5s;
      transition-property: opacity,padding,height;
    }
    &.open > .dropdown-menu {
      position: relative;
      opacity: 1;
      height: auto;
      padding: 1.4rem 0;
      visibility: visible;
    }
    .dropdown-submenu {
      left: 0;
      text-align: center;
      width: 100%;
    }
    .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
      margin-top: 0;
      position: inherit;
      right: 0;
      top: 50%;
      display: inline-block;
      width: 0;
      height: 0;
      margin-left: .3em;
      vertical-align: middle;
      content: "";
      border-top: .30em solid;
      border-right: .30em solid transparent;
      border-left: .30em solid transparent;
    }
  }
  .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.nav-link:focus {
  outline: none;
}
.navbar-toggler {
  position: relative;
}
.dropdown-item.active,.dropdown-item:active {
  background: @menuBgColor;
  color: initial;
}
.nav-link:hover, .dropdown-item:hover {
  color: @itemsHoverColor;
}
.widget-title, .widget-icon {
  color: #41351b;
}
.widget-text {
  color: #41351b;
}
@media (max-width: 1280px) {
  .mylogo {
    max-width: 150px;
    height: auto!important;
  }
}
}
