body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'open_sans_regular';
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'open_sans_regular';
  font-size: 2rem;
}
.display-4 {
  font-family: 'open_sans_regular';
  font-size: 1rem;
}
.display-5 {
  font-family: 'open_sans_regular';
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'open_sans_regular';
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0fa3ce !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0fa3ce !important;
  border-color: #0fa3ce !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0a6b87 !important;
  border-color: #0a6b87 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a6b87 !important;
  border-color: #0a6b87 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger: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-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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #08586f;
  color: #08586f !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #0fa3ce;
  border-color: #0fa3ce;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0fa3ce !important;
  border-color: #0fa3ce !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !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: #0fa3ce !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #08586f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0fa3ce;
  border-color: #0fa3ce;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0fa3ce;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b0e9f9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.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: 'open_sans_regular';
  font-size: 1rem;
}
blockquote {
  border-color: #0fa3ce;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.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 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0fa3ce;
  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: #0fa3ce;
  border-bottom-color: #0fa3ce;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #0fa3ce !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: #ca4336 !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='%230fa3ce' %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-qP6hPFl1pB {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/bg-geweih1.png");
}
.cid-qP6hPFl1pB .mbr-section-title {
  text-align: center;
}
.cid-qP6hPFl1pB .mbr-section-subtitle {
  text-align: center;
}
.cid-qOUDBU4f5M .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;
  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-qOUDBU4f5M .nav-item,
.cid-qOUDBU4f5M .nav-link,
.cid-qOUDBU4f5M .navbar-caption {
  font-weight: normal;
}
.cid-qOUDBU4f5M .nav-item:focus,
.cid-qOUDBU4f5M .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOUDBU4f5M .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOUDBU4f5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOUDBU4f5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOUDBU4f5M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-qOUDBU4f5M .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-qOUDBU4f5M .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOUDBU4f5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOUDBU4f5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOUDBU4f5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qOUDBU4f5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOUDBU4f5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOUDBU4f5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOUDBU4f5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qOUDBU4f5M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOUDBU4f5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOUDBU4f5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOUDBU4f5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOUDBU4f5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOUDBU4f5M .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-qOUDBU4f5M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOUDBU4f5M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOUDBU4f5M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOUDBU4f5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOUDBU4f5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOUDBU4f5M .dropdown-item.active,
.cid-qOUDBU4f5M .dropdown-item:active {
  background-color: transparent;
}
.cid-qOUDBU4f5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOUDBU4f5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOUDBU4f5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOUDBU4f5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-qOUDBU4f5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOUDBU4f5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOUDBU4f5M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOUDBU4f5M .navbar-buttons {
  text-align: center;
}
.cid-qOUDBU4f5M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOUDBU4f5M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOUDBU4f5M a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOUDBU4f5M .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qOUDBU4f5M .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOUDBU4f5M .soc-item {
  margin: .5rem .3rem;
}
.cid-qOUDBU4f5M .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOUDBU4f5M .navbar {
    height: 77px;
  }
  .cid-qOUDBU4f5M .navbar.opened {
    height: auto;
  }
  .cid-qOUDBU4f5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qP6i3V2PZ3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qP6i3V2PZ3 .mbr-text {
  color: #232323;
}
.cid-qP783maUwR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qP783maUwR *:focus {
  outline: none;
}
.cid-qP783maUwR .input-wrap {
  padding-bottom: 1rem;
}
.cid-qP783maUwR .form-control,
.cid-qP783maUwR .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-qP783maUwR .form-control:focus,
.cid-qP783maUwR .field:focus {
  outline: none;
}
.cid-qP783maUwR input::-webkit-input-placeholder {
  color: #232323;
}
.cid-qP783maUwR input::-moz-placeholder {
  color: #232323;
}
.cid-qP783maUwR textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-qP783maUwR textarea::-moz-placeholder {
  color: #232323;
}
.cid-qP783maUwR .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-qP783maUwR .soc-item:hover {
  opacity: .5;
}
.cid-qP783maUwR .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-qP783maUwR .days-column,
.cid-qP783maUwR .hours-column {
  display: inline-block;
}
.cid-qP783maUwR .days-column span,
.cid-qP783maUwR .hours-column span {
  display: block;
}
.cid-qP783maUwR .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-qP783maUwR .days-column {
    padding-right: 0 !important;
  }
  .cid-qP783maUwR .hours-column {
    max-width: 50% !important;
  }
  .cid-qP783maUwR .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-qP783maUwR .follow-title,
.cid-qP783maUwR .social-list {
  text-align: center;
}
.cid-qP783maUwR .form-title,
.cid-qP783maUwR .btn-row {
  color: #232323;
}
.cid-qP783maUwR .opening-hours-title,
.cid-qP783maUwR .opening-hours {
  color: #232323;
}
.cid-qP783maUwR .contacts-title,
.cid-qP783maUwR .contacts-block {
  color: #232323;
}
.cid-qP783maUwR .address-title,
.cid-qP783maUwR .address-block {
  color: #232323;
}
.cid-qP0ZQwQOan {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qP0ZQwQOan .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qP0ZQwQOan .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qP0ZQwQOan .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qP0ZQwQOan .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qP0ZQwQOan .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qP0ZQwQOan .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-qP0ZQwQOan .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qP0ZQwQOan .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qP0ZQwQOan .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qP0ZQwQOan .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qP6kjnXbOr {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/bg-geweih1.png");
}
.cid-qP6kjnXbOr .mbr-section-title {
  text-align: center;
}
.cid-qP6kjnXbOr .mbr-section-subtitle {
  text-align: center;
}
.cid-qP6kjpgFOb .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;
  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-qP6kjpgFOb .nav-item,
.cid-qP6kjpgFOb .nav-link,
.cid-qP6kjpgFOb .navbar-caption {
  font-weight: normal;
}
.cid-qP6kjpgFOb .nav-item:focus,
.cid-qP6kjpgFOb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qP6kjpgFOb .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qP6kjpgFOb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qP6kjpgFOb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qP6kjpgFOb .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qP6kjpgFOb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qP6kjpgFOb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qP6kjpgFOb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qP6kjpgFOb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qP6kjpgFOb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qP6kjpgFOb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-qP6kjpgFOb .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-qP6kjpgFOb .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qP6kjpgFOb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qP6kjpgFOb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qP6kjpgFOb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qP6kjpgFOb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qP6kjpgFOb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qP6kjpgFOb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qP6kjpgFOb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qP6kjpgFOb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qP6kjpgFOb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qP6kjpgFOb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qP6kjpgFOb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qP6kjpgFOb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qP6kjpgFOb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qP6kjpgFOb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qP6kjpgFOb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qP6kjpgFOb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qP6kjpgFOb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qP6kjpgFOb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qP6kjpgFOb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qP6kjpgFOb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qP6kjpgFOb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qP6kjpgFOb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qP6kjpgFOb .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-qP6kjpgFOb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qP6kjpgFOb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qP6kjpgFOb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qP6kjpgFOb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qP6kjpgFOb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qP6kjpgFOb .dropdown-item.active,
.cid-qP6kjpgFOb .dropdown-item:active {
  background-color: transparent;
}
.cid-qP6kjpgFOb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qP6kjpgFOb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qP6kjpgFOb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qP6kjpgFOb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-qP6kjpgFOb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qP6kjpgFOb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qP6kjpgFOb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qP6kjpgFOb .navbar-buttons {
  text-align: center;
}
.cid-qP6kjpgFOb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qP6kjpgFOb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qP6kjpgFOb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qP6kjpgFOb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qP6kjpgFOb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qP6kjpgFOb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qP6kjpgFOb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qP6kjpgFOb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qP6kjpgFOb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qP6kjpgFOb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qP6kjpgFOb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qP6kjpgFOb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qP6kjpgFOb .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qP6kjpgFOb .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qP6kjpgFOb .soc-item {
  margin: .5rem .3rem;
}
.cid-qP6kjpgFOb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qP6kjpgFOb .navbar {
    height: 77px;
  }
  .cid-qP6kjpgFOb .navbar.opened {
    height: auto;
  }
  .cid-qP6kjpgFOb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qP6kjqp6Jd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qP6kjqp6Jd .mbr-text {
  color: #232323;
}
.cid-qP787tnvaP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qP787tnvaP *:focus {
  outline: none;
}
.cid-qP787tnvaP .input-wrap {
  padding-bottom: 1rem;
}
.cid-qP787tnvaP .form-control,
.cid-qP787tnvaP .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-qP787tnvaP .form-control:focus,
.cid-qP787tnvaP .field:focus {
  outline: none;
}
.cid-qP787tnvaP input::-webkit-input-placeholder {
  color: #232323;
}
.cid-qP787tnvaP input::-moz-placeholder {
  color: #232323;
}
.cid-qP787tnvaP textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-qP787tnvaP textarea::-moz-placeholder {
  color: #232323;
}
.cid-qP787tnvaP .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-qP787tnvaP .soc-item:hover {
  opacity: .5;
}
.cid-qP787tnvaP .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-qP787tnvaP .days-column,
.cid-qP787tnvaP .hours-column {
  display: inline-block;
}
.cid-qP787tnvaP .days-column span,
.cid-qP787tnvaP .hours-column span {
  display: block;
}
.cid-qP787tnvaP .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-qP787tnvaP .days-column {
    padding-right: 0 !important;
  }
  .cid-qP787tnvaP .hours-column {
    max-width: 50% !important;
  }
  .cid-qP787tnvaP .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-qP787tnvaP .follow-title,
.cid-qP787tnvaP .social-list {
  text-align: center;
}
.cid-qP787tnvaP .form-title,
.cid-qP787tnvaP .btn-row {
  color: #232323;
}
.cid-qP787tnvaP .opening-hours-title,
.cid-qP787tnvaP .opening-hours {
  color: #232323;
}
.cid-qP787tnvaP .contacts-title,
.cid-qP787tnvaP .contacts-block {
  color: #232323;
}
.cid-qP787tnvaP .address-title,
.cid-qP787tnvaP .address-block {
  color: #232323;
}
.cid-qP6kjqW1x6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qP6kjqW1x6 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qP6kjqW1x6 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qP6kjqW1x6 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qP6kjqW1x6 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qP6kjqW1x6 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qP6kjqW1x6 .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-qP6kjqW1x6 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qP6kjqW1x6 .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qP6kjqW1x6 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qP6kjqW1x6 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qPsXG504fU {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/bg-geweih1.png");
}
.cid-qPsXG504fU .mbr-section-title {
  text-align: center;
}
.cid-qPsXG504fU .mbr-section-subtitle {
  text-align: center;
}
.cid-qPsXG5VrHP .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;
  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-qPsXG5VrHP .nav-item,
.cid-qPsXG5VrHP .nav-link,
.cid-qPsXG5VrHP .navbar-caption {
  font-weight: normal;
}
.cid-qPsXG5VrHP .nav-item:focus,
.cid-qPsXG5VrHP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qPsXG5VrHP .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qPsXG5VrHP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qPsXG5VrHP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qPsXG5VrHP .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qPsXG5VrHP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qPsXG5VrHP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qPsXG5VrHP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qPsXG5VrHP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qPsXG5VrHP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qPsXG5VrHP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-qPsXG5VrHP .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-qPsXG5VrHP .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qPsXG5VrHP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qPsXG5VrHP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qPsXG5VrHP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qPsXG5VrHP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qPsXG5VrHP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qPsXG5VrHP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qPsXG5VrHP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qPsXG5VrHP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qPsXG5VrHP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qPsXG5VrHP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qPsXG5VrHP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qPsXG5VrHP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qPsXG5VrHP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qPsXG5VrHP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qPsXG5VrHP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qPsXG5VrHP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qPsXG5VrHP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qPsXG5VrHP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qPsXG5VrHP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qPsXG5VrHP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qPsXG5VrHP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qPsXG5VrHP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qPsXG5VrHP .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-qPsXG5VrHP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qPsXG5VrHP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qPsXG5VrHP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qPsXG5VrHP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qPsXG5VrHP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qPsXG5VrHP .dropdown-item.active,
.cid-qPsXG5VrHP .dropdown-item:active {
  background-color: transparent;
}
.cid-qPsXG5VrHP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qPsXG5VrHP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qPsXG5VrHP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qPsXG5VrHP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-qPsXG5VrHP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qPsXG5VrHP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qPsXG5VrHP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qPsXG5VrHP .navbar-buttons {
  text-align: center;
}
.cid-qPsXG5VrHP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qPsXG5VrHP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qPsXG5VrHP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qPsXG5VrHP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qPsXG5VrHP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qPsXG5VrHP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qPsXG5VrHP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qPsXG5VrHP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qPsXG5VrHP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qPsXG5VrHP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qPsXG5VrHP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qPsXG5VrHP a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qPsXG5VrHP .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qPsXG5VrHP .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qPsXG5VrHP .soc-item {
  margin: .5rem .3rem;
}
.cid-qPsXG5VrHP .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qPsXG5VrHP .navbar {
    height: 77px;
  }
  .cid-qPsXG5VrHP .navbar.opened {
    height: auto;
  }
  .cid-qPsXG5VrHP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qPsXG6Ndl0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qPsXG6Ndl0 .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-qPsXG7ntjS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qPsXG7ntjS *:focus {
  outline: none;
}
.cid-qPsXG7ntjS .input-wrap {
  padding-bottom: 1rem;
}
.cid-qPsXG7ntjS .form-control,
.cid-qPsXG7ntjS .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-qPsXG7ntjS .form-control:focus,
.cid-qPsXG7ntjS .field:focus {
  outline: none;
}
.cid-qPsXG7ntjS input::-webkit-input-placeholder {
  color: #232323;
}
.cid-qPsXG7ntjS input::-moz-placeholder {
  color: #232323;
}
.cid-qPsXG7ntjS textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-qPsXG7ntjS textarea::-moz-placeholder {
  color: #232323;
}
.cid-qPsXG7ntjS .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-qPsXG7ntjS .soc-item:hover {
  opacity: .5;
}
.cid-qPsXG7ntjS .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-qPsXG7ntjS .days-column,
.cid-qPsXG7ntjS .hours-column {
  display: inline-block;
}
.cid-qPsXG7ntjS .days-column span,
.cid-qPsXG7ntjS .hours-column span {
  display: block;
}
.cid-qPsXG7ntjS .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-qPsXG7ntjS .days-column {
    padding-right: 0 !important;
  }
  .cid-qPsXG7ntjS .hours-column {
    max-width: 50% !important;
  }
  .cid-qPsXG7ntjS .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-qPsXG7ntjS .follow-title,
.cid-qPsXG7ntjS .social-list {
  text-align: center;
}
.cid-qPsXG7ntjS .form-title,
.cid-qPsXG7ntjS .btn-row {
  color: #232323;
}
.cid-qPsXG7ntjS .opening-hours-title,
.cid-qPsXG7ntjS .opening-hours {
  color: #232323;
}
.cid-qPsXG7ntjS .contacts-title,
.cid-qPsXG7ntjS .contacts-block {
  color: #232323;
}
.cid-qPsXG7ntjS .address-title,
.cid-qPsXG7ntjS .address-block {
  color: #232323;
}
.cid-qPsXG8T5zF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qPsXG8T5zF .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qPsXG8T5zF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qPsXG8T5zF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qPsXG8T5zF .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qPsXG8T5zF .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qPsXG8T5zF .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-qPsXG8T5zF .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qPsXG8T5zF .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qPsXG8T5zF .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qPsXG8T5zF .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qOUDBU4f5M .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;
  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-qOUDBU4f5M .nav-item,
.cid-qOUDBU4f5M .nav-link,
.cid-qOUDBU4f5M .navbar-caption {
  font-weight: normal;
}
.cid-qOUDBU4f5M .nav-item:focus,
.cid-qOUDBU4f5M .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOUDBU4f5M .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOUDBU4f5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOUDBU4f5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOUDBU4f5M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-qOUDBU4f5M .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-qOUDBU4f5M .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOUDBU4f5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOUDBU4f5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOUDBU4f5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qOUDBU4f5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOUDBU4f5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOUDBU4f5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOUDBU4f5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qOUDBU4f5M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOUDBU4f5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOUDBU4f5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOUDBU4f5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOUDBU4f5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOUDBU4f5M .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-qOUDBU4f5M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOUDBU4f5M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOUDBU4f5M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOUDBU4f5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOUDBU4f5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOUDBU4f5M .dropdown-item.active,
.cid-qOUDBU4f5M .dropdown-item:active {
  background-color: transparent;
}
.cid-qOUDBU4f5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOUDBU4f5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOUDBU4f5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOUDBU4f5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-qOUDBU4f5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOUDBU4f5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOUDBU4f5M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOUDBU4f5M .navbar-buttons {
  text-align: center;
}
.cid-qOUDBU4f5M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOUDBU4f5M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOUDBU4f5M a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOUDBU4f5M .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qOUDBU4f5M .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOUDBU4f5M .soc-item {
  margin: .5rem .3rem;
}
.cid-qOUDBU4f5M .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOUDBU4f5M .navbar {
    height: 77px;
  }
  .cid-qOUDBU4f5M .navbar.opened {
    height: auto;
  }
  .cid-qOUDBU4f5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qP11Uo8t2b {
  overflow: hidden !important;
}
.cid-qP11Uo8t2b .container-fluid {
  padding: 0 3rem;
}
.cid-qP11Uo8t2b .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qP11Uo8t2b .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s9f3X5AXhg {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-s9f3X5AXhg .card {
  display: block;
  position: relative;
}
.cid-s9f3X5AXhg .card .card-wrapper {
  background: #efefef;
  height: 1%;
}
.cid-s9f3X5AXhg .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-s9f3X5AXhg .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s9f3X5AXhg .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #e96188;
}
.cid-s9f3X5AXhg .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-s9f3X5AXhg .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-s9f3X5AXhg .mbr-card-text {
  margin: 0;
}
.cid-s9f3X5AXhg .mbr-section-title {
  text-align: center;
}
.cid-rJ7PJVOuVK {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJ7PJVOuVK .mbr-section-subtitle {
  color: #767676;
}
#custom-html-1d .my-image {
  width: 1000 px;
}
#custom-html-1d .my-text {
  font-size: 4 rem;
  font-family: Open Sans;
  color: #232323 ;
  line-height: 24px;
}
.cid-rJ7PONs8rE {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJ7PONs8rE .mbr-section-subtitle {
  color: #767676;
}
.cid-s9qUn2Fqpu {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9qUn2Fqpu .card {
  display: block;
  position: relative;
}
.cid-s9qUn2Fqpu .card .card-wrapper {
  background: #333f48;
  height: 1%;
}
.cid-s9qUn2Fqpu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-s9qUn2Fqpu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s9qUn2Fqpu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #e96188;
}
.cid-s9qUn2Fqpu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-s9qUn2Fqpu .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-s9qUn2Fqpu .mbr-card-text {
  margin: 0;
}
.cid-s9qUn2Fqpu .mbr-section-title {
  text-align: center;
}
.cid-s9qUn2Fqpu .mbr-title {
  color: #ffffff;
}
.cid-qOUPNpYT3x {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/rocket-bg.jpg");
}
.cid-qOUPNpYT3x .mbr-section-title {
  text-align: center;
}
.cid-qOUPNpYT3x .mbr-section-subtitle {
  text-align: center;
}
.cid-s9f82doXcq {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s9f82doXcq .main {
  flex-direction: row-reverse;
}
.cid-s9f82doXcq .row-element,
.cid-s9f82doXcq .image-element {
  padding: 0;
}
.cid-s9f82doXcq .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9f82doXcq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9f82doXcq .text-content {
  padding: 3rem;
}
.cid-s9f82doXcq .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9f82doXcq .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9f82doXcq .mbr-title,
  .cid-s9f82doXcq .underline,
  .cid-s9f82doXcq .mbr-text,
  .cid-s9f82doXcq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9f82doXcq .mbr-text,
.cid-s9f82doXcq .mbr-section-btn {
  text-align: left;
}
.cid-s9f82doXcq .mbr-title {
  text-align: left;
}
.cid-qOUFibteKU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qOUFibteKU .row-element,
.cid-qOUFibteKU .image-element {
  padding: 0;
}
.cid-qOUFibteKU .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOUFibteKU .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOUFibteKU .text-content {
  padding: 3rem;
}
.cid-qOUFibteKU .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qOUFibteKU .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOUFibteKU .mbr-title,
  .cid-qOUFibteKU .underline,
  .cid-qOUFibteKU .mbr-text,
  .cid-qOUFibteKU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOUFibteKU .mbr-text,
.cid-qOUFibteKU .mbr-section-btn {
  text-align: left;
}
.cid-qOUFibteKU .mbr-title {
  text-align: left;
}
.cid-qOUFjCsJGg {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-qOUFjCsJGg .main {
  flex-direction: row-reverse;
}
.cid-qOUFjCsJGg .row-element,
.cid-qOUFjCsJGg .image-element {
  padding: 0;
}
.cid-qOUFjCsJGg .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOUFjCsJGg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOUFjCsJGg .text-content {
  padding: 3rem;
}
.cid-qOUFjCsJGg .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qOUFjCsJGg .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOUFjCsJGg .mbr-title,
  .cid-qOUFjCsJGg .underline,
  .cid-qOUFjCsJGg .mbr-text,
  .cid-qOUFjCsJGg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOUFjCsJGg .mbr-text,
.cid-qOUFjCsJGg .mbr-section-btn {
  text-align: right;
}
.cid-qOUFjCsJGg .mbr-title {
  text-align: right;
}
.cid-s9f2h46jW8 {
  padding-top: 105px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s9f2h46jW8 .mbr-section-subtitle {
  color: #767676;
}
.cid-s9f2h46jW8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s9f2h46jW8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s9f2h46jW8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s9f2h46jW8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s9f2h46jW8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #59585d, #59585d);
}
.cid-s9f2h46jW8 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s9f2h46jW8 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9f2h46jW8 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s9f2h46jW8 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9f2h46jW8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s9f2h46jW8 ul {
  font-size: 0;
}
.cid-s9f2h46jW8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-s9f2h46jW8 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-s9f2h46jW8 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-s9f2h46jW8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s9f2h46jW8 .mbr-gallery-filter ul li:first-child,
.cid-s9f2h46jW8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s9f2h46jW8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s9f2h46jW8 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-s9f2h46jW8 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-s9f2h46jW8 .btn.active:after {
  animation: none;
}
.cid-s9f2h46jW8 .btn:active {
  box-shadow: none !important;
}
.cid-s9f2h46jW8 .btn:hover {
  background: transparent !important;
}
.cid-s9f2h46jW8 .btn:hover:before {
  background: transparent !important;
}
.cid-s9f2h46jW8 .btn:before {
  background-color: transparent !important;
}
.cid-s9f2h46jW8 .btn:focus {
  box-shadow: none !important;
}
.cid-qP0Ubdyh4x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qP0Ubdyh4x .mbr-section-subtitle {
  color: #767676;
}
.cid-qP0Ubdyh4x .mbr-section-title SPAN {
  color: #232323;
}
.cid-qP0TT8levu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qP0TT8levu .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-qP0TT8levu .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-qP0TT8levu .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-qP0TT8levu .wrap-img {
  padding-bottom: 1rem;
}
.cid-qP0TT8levu .wrap-img img {
  max-width: 100%;
}
.cid-qP0TT8levu .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qP5Hhp7OMw {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qP5Hhp7OMw .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-qP5Hhp7OMw .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-qP5Hhp7OMw .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-qP5Hhp7OMw .wrap-img {
  padding-bottom: 1rem;
}
.cid-qP5Hhp7OMw .wrap-img img {
  max-width: 100%;
}
.cid-qP5Hhp7OMw .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qP10a6Och1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qP10a6Och1 .google-map {
  height: 25rem;
  position: relative;
}
.cid-qP10a6Och1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qP10a6Och1 .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-qP10a6Och1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qP10a6Och1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-qP0ZfwAsz9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qP0ZfwAsz9 *:focus {
  outline: none;
}
.cid-qP0ZfwAsz9 .input-wrap {
  padding-bottom: 1rem;
}
.cid-qP0ZfwAsz9 .form-control,
.cid-qP0ZfwAsz9 .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-qP0ZfwAsz9 .form-control:focus,
.cid-qP0ZfwAsz9 .field:focus {
  outline: none;
}
.cid-qP0ZfwAsz9 input::-webkit-input-placeholder {
  color: #232323;
}
.cid-qP0ZfwAsz9 input::-moz-placeholder {
  color: #232323;
}
.cid-qP0ZfwAsz9 textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-qP0ZfwAsz9 textarea::-moz-placeholder {
  color: #232323;
}
.cid-qP0ZfwAsz9 .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-qP0ZfwAsz9 .soc-item:hover {
  opacity: .5;
}
.cid-qP0ZfwAsz9 .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-qP0ZfwAsz9 .days-column,
.cid-qP0ZfwAsz9 .hours-column {
  display: inline-block;
}
.cid-qP0ZfwAsz9 .days-column span,
.cid-qP0ZfwAsz9 .hours-column span {
  display: block;
}
.cid-qP0ZfwAsz9 .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-qP0ZfwAsz9 .days-column {
    padding-right: 0 !important;
  }
  .cid-qP0ZfwAsz9 .hours-column {
    max-width: 50% !important;
  }
  .cid-qP0ZfwAsz9 .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-qP0ZfwAsz9 .follow-title,
.cid-qP0ZfwAsz9 .social-list {
  text-align: center;
}
.cid-qP0ZfwAsz9 .form-title,
.cid-qP0ZfwAsz9 .btn-row {
  color: #232323;
}
.cid-qP0ZfwAsz9 .opening-hours-title,
.cid-qP0ZfwAsz9 .opening-hours {
  color: #232323;
}
.cid-qP0ZfwAsz9 .contacts-title,
.cid-qP0ZfwAsz9 .contacts-block {
  color: #232323;
}
.cid-qP0ZfwAsz9 .address-title,
.cid-qP0ZfwAsz9 .address-block {
  color: #232323;
}
.cid-qP0ZQwQOan {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qP0ZQwQOan .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qP0ZQwQOan .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qP0ZQwQOan .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qP0ZQwQOan .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qP0ZQwQOan .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qP0ZQwQOan .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-qP0ZQwQOan .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qP0ZQwQOan .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qP0ZQwQOan .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qP0ZQwQOan .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qOUDBU4f5M .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;
  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-qOUDBU4f5M .nav-item,
.cid-qOUDBU4f5M .nav-link,
.cid-qOUDBU4f5M .navbar-caption {
  font-weight: normal;
}
.cid-qOUDBU4f5M .nav-item:focus,
.cid-qOUDBU4f5M .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOUDBU4f5M .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOUDBU4f5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOUDBU4f5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOUDBU4f5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOUDBU4f5M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-qOUDBU4f5M .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-qOUDBU4f5M .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOUDBU4f5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOUDBU4f5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOUDBU4f5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qOUDBU4f5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOUDBU4f5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOUDBU4f5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOUDBU4f5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOUDBU4f5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qOUDBU4f5M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOUDBU4f5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOUDBU4f5M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOUDBU4f5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOUDBU4f5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOUDBU4f5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOUDBU4f5M .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-qOUDBU4f5M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOUDBU4f5M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOUDBU4f5M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOUDBU4f5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOUDBU4f5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOUDBU4f5M .dropdown-item.active,
.cid-qOUDBU4f5M .dropdown-item:active {
  background-color: transparent;
}
.cid-qOUDBU4f5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOUDBU4f5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOUDBU4f5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOUDBU4f5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-qOUDBU4f5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOUDBU4f5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOUDBU4f5M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOUDBU4f5M .navbar-buttons {
  text-align: center;
}
.cid-qOUDBU4f5M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOUDBU4f5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOUDBU4f5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOUDBU4f5M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOUDBU4f5M a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOUDBU4f5M .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qOUDBU4f5M .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOUDBU4f5M .soc-item {
  margin: .5rem .3rem;
}
.cid-qOUDBU4f5M .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOUDBU4f5M .navbar {
    height: 77px;
  }
  .cid-qOUDBU4f5M .navbar.opened {
    height: auto;
  }
  .cid-qOUDBU4f5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9qT5ZeHC1 {
  background-image: url("../../../assets/images/siebtraeger.-hg.jpg");
  overflow: hidden !important;
}
.cid-s9qT5ZeHC1 .container-fluid {
  padding: 0 3rem;
}
.cid-s9qT5ZeHC1 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-s9qT5ZeHC1 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s9konmdiO3 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s9konmdiO3 .row-element,
.cid-s9konmdiO3 .image-element {
  padding: 0;
}
.cid-s9konmdiO3 .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9konmdiO3 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9konmdiO3 .text-content {
  padding: 3rem;
}
.cid-s9konmdiO3 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9konmdiO3 .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9konmdiO3 .mbr-title,
  .cid-s9konmdiO3 .underline,
  .cid-s9konmdiO3 .mbr-text,
  .cid-s9konmdiO3 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9konmdiO3 .mbr-text,
.cid-s9konmdiO3 .mbr-section-btn {
  text-align: left;
}
.cid-s9konmdiO3 .mbr-title {
  text-align: left;
}
.cid-s9fHQw7EMZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-s9fHQw7EMZ .main {
  flex-direction: row-reverse;
}
.cid-s9fHQw7EMZ .row-element,
.cid-s9fHQw7EMZ .image-element {
  padding: 0;
}
.cid-s9fHQw7EMZ .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9fHQw7EMZ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9fHQw7EMZ .text-content {
  padding: 3rem;
}
.cid-s9fHQw7EMZ .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9fHQw7EMZ .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9fHQw7EMZ .mbr-title,
  .cid-s9fHQw7EMZ .underline,
  .cid-s9fHQw7EMZ .mbr-text,
  .cid-s9fHQw7EMZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9fHQw7EMZ .mbr-text,
.cid-s9fHQw7EMZ .mbr-section-btn {
  text-align: left;
}
.cid-s9fHQw7EMZ .mbr-title {
  text-align: left;
}
.cid-s9fHFWFuNy {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9fHFWFuNy .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9fHFWFuNy .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9fHFWFuNy .panel-group {
  width: 100%;
}
.cid-s9fHFWFuNy .panel-text,
.cid-s9fHFWFuNy .mbr-section-subtitle {
  color: #767676;
}
.cid-s9fHFWFuNy .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9fHFWFuNy .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9fHFWFuNy .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9fHFWFuNy .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9fHFWFuNy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9fHFWFuNy .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9fHFWFuNy .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9fHFWFuNy .card .panel-body {
  background: #ffffff;
}
.cid-s9fHFWFuNy .header-text,
.cid-s9fHFWFuNy .sign {
  color: #ffffff;
}
.cid-s9fHFWFuNy .panel-text {
  color: #232323;
}
.cid-s9kLBTAAzm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9kLBTAAzm .main {
  flex-direction: row-reverse;
}
.cid-s9kLBTAAzm .row-element,
.cid-s9kLBTAAzm .image-element {
  padding: 0;
}
.cid-s9kLBTAAzm .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kLBTAAzm .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kLBTAAzm .text-content {
  padding: 3rem;
}
.cid-s9kLBTAAzm .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kLBTAAzm .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kLBTAAzm .mbr-title,
  .cid-s9kLBTAAzm .underline,
  .cid-s9kLBTAAzm .mbr-text,
  .cid-s9kLBTAAzm .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kLBTAAzm .mbr-text,
.cid-s9kLBTAAzm .mbr-section-btn {
  text-align: left;
}
.cid-s9kLBTAAzm .mbr-title {
  text-align: left;
}
.cid-s9kLCxne1K {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s9kLCxne1K .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kLCxne1K .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kLCxne1K .panel-group {
  width: 100%;
}
.cid-s9kLCxne1K .panel-text,
.cid-s9kLCxne1K .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kLCxne1K .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kLCxne1K .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kLCxne1K .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kLCxne1K .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kLCxne1K .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kLCxne1K .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kLCxne1K .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kLCxne1K .card .panel-body {
  background: #efefef;
}
.cid-s9kLCxne1K .header-text,
.cid-s9kLCxne1K .sign {
  color: #ffffff;
}
.cid-s9kLCxne1K .panel-text {
  color: #232323;
}
.cid-s9kMwcPI61 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-s9kMwcPI61 .main {
  flex-direction: row-reverse;
}
.cid-s9kMwcPI61 .row-element,
.cid-s9kMwcPI61 .image-element {
  padding: 0;
}
.cid-s9kMwcPI61 .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kMwcPI61 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kMwcPI61 .text-content {
  padding: 3rem;
}
.cid-s9kMwcPI61 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kMwcPI61 .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kMwcPI61 .mbr-title,
  .cid-s9kMwcPI61 .underline,
  .cid-s9kMwcPI61 .mbr-text,
  .cid-s9kMwcPI61 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kMwcPI61 .mbr-text,
.cid-s9kMwcPI61 .mbr-section-btn {
  text-align: left;
}
.cid-s9kMwcPI61 .mbr-title {
  text-align: left;
}
.cid-s9kMwIonHx {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9kMwIonHx .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kMwIonHx .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kMwIonHx .panel-group {
  width: 100%;
}
.cid-s9kMwIonHx .panel-text,
.cid-s9kMwIonHx .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kMwIonHx .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kMwIonHx .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kMwIonHx .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kMwIonHx .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kMwIonHx .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kMwIonHx .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kMwIonHx .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kMwIonHx .card .panel-body {
  background: #ffffff;
}
.cid-s9kMwIonHx .header-text,
.cid-s9kMwIonHx .sign {
  color: #ffffff;
}
.cid-s9kMwIonHx .panel-text {
  color: #232323;
}
.cid-s9kNk6DXAt {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9kNk6DXAt .main {
  flex-direction: row-reverse;
}
.cid-s9kNk6DXAt .row-element,
.cid-s9kNk6DXAt .image-element {
  padding: 0;
}
.cid-s9kNk6DXAt .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kNk6DXAt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kNk6DXAt .text-content {
  padding: 3rem;
}
.cid-s9kNk6DXAt .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kNk6DXAt .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kNk6DXAt .mbr-title,
  .cid-s9kNk6DXAt .underline,
  .cid-s9kNk6DXAt .mbr-text,
  .cid-s9kNk6DXAt .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kNk6DXAt .mbr-text,
.cid-s9kNk6DXAt .mbr-section-btn {
  text-align: left;
}
.cid-s9kNk6DXAt .mbr-title {
  text-align: left;
}
.cid-s9kNkCJgda {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s9kNkCJgda .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kNkCJgda .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kNkCJgda .panel-group {
  width: 100%;
}
.cid-s9kNkCJgda .panel-text,
.cid-s9kNkCJgda .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kNkCJgda .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kNkCJgda .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kNkCJgda .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kNkCJgda .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kNkCJgda .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kNkCJgda .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kNkCJgda .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kNkCJgda .card .panel-body {
  background: #efefef;
}
.cid-s9kNkCJgda .header-text,
.cid-s9kNkCJgda .sign {
  color: #ffffff;
}
.cid-s9kNkCJgda .panel-text {
  color: #232323;
}
.cid-s9kOgbfq8I {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-s9kOgbfq8I .main {
  flex-direction: row-reverse;
}
.cid-s9kOgbfq8I .row-element,
.cid-s9kOgbfq8I .image-element {
  padding: 0;
}
.cid-s9kOgbfq8I .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kOgbfq8I .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kOgbfq8I .text-content {
  padding: 3rem;
}
.cid-s9kOgbfq8I .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kOgbfq8I .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kOgbfq8I .mbr-title,
  .cid-s9kOgbfq8I .underline,
  .cid-s9kOgbfq8I .mbr-text,
  .cid-s9kOgbfq8I .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kOgbfq8I .mbr-text,
.cid-s9kOgbfq8I .mbr-section-btn {
  text-align: left;
}
.cid-s9kOgbfq8I .mbr-title {
  text-align: left;
}
.cid-s9kOgGAwvi {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9kOgGAwvi .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kOgGAwvi .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kOgGAwvi .panel-group {
  width: 100%;
}
.cid-s9kOgGAwvi .panel-text,
.cid-s9kOgGAwvi .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kOgGAwvi .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kOgGAwvi .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kOgGAwvi .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kOgGAwvi .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kOgGAwvi .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kOgGAwvi .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kOgGAwvi .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kOgGAwvi .card .panel-body {
  background: #ffffff;
}
.cid-s9kOgGAwvi .header-text,
.cid-s9kOgGAwvi .sign {
  color: #ffffff;
}
.cid-s9kOgGAwvi .panel-text {
  color: #232323;
}
.cid-s9kOYXIBVW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9kOYXIBVW .main {
  flex-direction: row-reverse;
}
.cid-s9kOYXIBVW .row-element,
.cid-s9kOYXIBVW .image-element {
  padding: 0;
}
.cid-s9kOYXIBVW .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kOYXIBVW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kOYXIBVW .text-content {
  padding: 3rem;
}
.cid-s9kOYXIBVW .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kOYXIBVW .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kOYXIBVW .mbr-title,
  .cid-s9kOYXIBVW .underline,
  .cid-s9kOYXIBVW .mbr-text,
  .cid-s9kOYXIBVW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kOYXIBVW .mbr-text,
.cid-s9kOYXIBVW .mbr-section-btn {
  text-align: left;
}
.cid-s9kOYXIBVW .mbr-title {
  text-align: left;
}
.cid-s9kOZtv8CU {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s9kOZtv8CU .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kOZtv8CU .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kOZtv8CU .panel-group {
  width: 100%;
}
.cid-s9kOZtv8CU .panel-text,
.cid-s9kOZtv8CU .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kOZtv8CU .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kOZtv8CU .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kOZtv8CU .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kOZtv8CU .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kOZtv8CU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kOZtv8CU .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kOZtv8CU .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kOZtv8CU .card .panel-body {
  background: #efefef;
}
.cid-s9kOZtv8CU .header-text,
.cid-s9kOZtv8CU .sign {
  color: #ffffff;
}
.cid-s9kOZtv8CU .panel-text {
  color: #232323;
}
.cid-s9kPMOkiwP {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-s9kPMOkiwP .main {
  flex-direction: row-reverse;
}
.cid-s9kPMOkiwP .row-element,
.cid-s9kPMOkiwP .image-element {
  padding: 0;
}
.cid-s9kPMOkiwP .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kPMOkiwP .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kPMOkiwP .text-content {
  padding: 3rem;
}
.cid-s9kPMOkiwP .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kPMOkiwP .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kPMOkiwP .mbr-title,
  .cid-s9kPMOkiwP .underline,
  .cid-s9kPMOkiwP .mbr-text,
  .cid-s9kPMOkiwP .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kPMOkiwP .mbr-text,
.cid-s9kPMOkiwP .mbr-section-btn {
  text-align: left;
}
.cid-s9kPMOkiwP .mbr-title {
  text-align: left;
}
.cid-s9kPNi7rSK {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9kPNi7rSK .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kPNi7rSK .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kPNi7rSK .panel-group {
  width: 100%;
}
.cid-s9kPNi7rSK .panel-text,
.cid-s9kPNi7rSK .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kPNi7rSK .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kPNi7rSK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kPNi7rSK .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kPNi7rSK .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kPNi7rSK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kPNi7rSK .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kPNi7rSK .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kPNi7rSK .card .panel-body {
  background: #ffffff;
}
.cid-s9kPNi7rSK .header-text,
.cid-s9kPNi7rSK .sign {
  color: #ffffff;
}
.cid-s9kPNi7rSK .panel-text {
  color: #232323;
}
.cid-s9kQxFMP5U {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s9kQxFMP5U .main {
  flex-direction: row-reverse;
}
.cid-s9kQxFMP5U .row-element,
.cid-s9kQxFMP5U .image-element {
  padding: 0;
}
.cid-s9kQxFMP5U .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kQxFMP5U .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kQxFMP5U .text-content {
  padding: 3rem;
}
.cid-s9kQxFMP5U .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kQxFMP5U .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kQxFMP5U .mbr-title,
  .cid-s9kQxFMP5U .underline,
  .cid-s9kQxFMP5U .mbr-text,
  .cid-s9kQxFMP5U .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kQxFMP5U .mbr-text,
.cid-s9kQxFMP5U .mbr-section-btn {
  text-align: left;
}
.cid-s9kQxFMP5U .mbr-title {
  text-align: left;
}
.cid-s9kQybio4P {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s9kQybio4P .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s9kQybio4P .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s9kQybio4P .panel-group {
  width: 100%;
}
.cid-s9kQybio4P .panel-text,
.cid-s9kQybio4P .mbr-section-subtitle {
  color: #767676;
}
.cid-s9kQybio4P .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s9kQybio4P .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s9kQybio4P .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #333f48;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s9kQybio4P .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s9kQybio4P .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9kQybio4P .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s9kQybio4P .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9kQybio4P .card .panel-body {
  background: #efefef;
}
.cid-s9kQybio4P .header-text,
.cid-s9kQybio4P .sign {
  color: #ffffff;
}
.cid-s9kQybio4P .panel-text {
  color: #232323;
}
.cid-s9kRlbx7Xr {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9kRlbx7Xr .main {
  flex-direction: row-reverse;
}
.cid-s9kRlbx7Xr .row-element,
.cid-s9kRlbx7Xr .image-element {
  padding: 0;
}
.cid-s9kRlbx7Xr .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kRlbx7Xr .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kRlbx7Xr .text-content {
  padding: 3rem;
}
.cid-s9kRlbx7Xr .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kRlbx7Xr .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kRlbx7Xr .mbr-title,
  .cid-s9kRlbx7Xr .underline,
  .cid-s9kRlbx7Xr .mbr-text,
  .cid-s9kRlbx7Xr .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kRlbx7Xr .mbr-text,
.cid-s9kRlbx7Xr .mbr-section-btn {
  text-align: left;
}
.cid-s9kRlbx7Xr .mbr-title {
  text-align: left;
}
.cid-qP0ZQwQOan {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qP0ZQwQOan .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qP0ZQwQOan .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qP0ZQwQOan .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qP0ZQwQOan .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qP0ZQwQOan .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qP0ZQwQOan .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-qP0ZQwQOan .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qP0ZQwQOan .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qP0ZQwQOan .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qP0ZQwQOan .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-s9kS6KZFXk .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;
  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-s9kS6KZFXk .nav-item,
.cid-s9kS6KZFXk .nav-link,
.cid-s9kS6KZFXk .navbar-caption {
  font-weight: normal;
}
.cid-s9kS6KZFXk .nav-item:focus,
.cid-s9kS6KZFXk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s9kS6KZFXk .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s9kS6KZFXk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9kS6KZFXk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9kS6KZFXk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s9kS6KZFXk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s9kS6KZFXk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9kS6KZFXk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-s9kS6KZFXk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9kS6KZFXk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9kS6KZFXk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-s9kS6KZFXk .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-s9kS6KZFXk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s9kS6KZFXk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9kS6KZFXk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9kS6KZFXk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s9kS6KZFXk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s9kS6KZFXk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9kS6KZFXk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9kS6KZFXk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9kS6KZFXk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9kS6KZFXk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9kS6KZFXk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9kS6KZFXk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9kS6KZFXk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9kS6KZFXk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s9kS6KZFXk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9kS6KZFXk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9kS6KZFXk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9kS6KZFXk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9kS6KZFXk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9kS6KZFXk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9kS6KZFXk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s9kS6KZFXk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s9kS6KZFXk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9kS6KZFXk .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-s9kS6KZFXk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9kS6KZFXk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9kS6KZFXk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9kS6KZFXk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9kS6KZFXk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9kS6KZFXk .dropdown-item.active,
.cid-s9kS6KZFXk .dropdown-item:active {
  background-color: transparent;
}
.cid-s9kS6KZFXk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9kS6KZFXk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9kS6KZFXk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9kS6KZFXk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-s9kS6KZFXk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9kS6KZFXk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9kS6KZFXk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s9kS6KZFXk .navbar-buttons {
  text-align: center;
}
.cid-s9kS6KZFXk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s9kS6KZFXk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9kS6KZFXk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9kS6KZFXk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9kS6KZFXk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9kS6KZFXk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9kS6KZFXk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9kS6KZFXk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9kS6KZFXk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9kS6KZFXk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9kS6KZFXk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9kS6KZFXk a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s9kS6KZFXk .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s9kS6KZFXk .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s9kS6KZFXk .soc-item {
  margin: .5rem .3rem;
}
.cid-s9kS6KZFXk .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9kS6KZFXk .navbar {
    height: 77px;
  }
  .cid-s9kS6KZFXk .navbar.opened {
    height: auto;
  }
  .cid-s9kS6KZFXk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9qTKJsii2 {
  background-image: url("../../../assets/images/dummy-1200.jpg");
  overflow: hidden !important;
}
.cid-s9qTKJsii2 .container-fluid {
  padding: 0 3rem;
}
.cid-s9qTKJsii2 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-s9qTKJsii2 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s9kS6V3Nez {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9kS6V3Nez .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s9kS6V3Nez .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s9kS6V3Nez .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s9kS6V3Nez .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s9kS6V3Nez .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s9kS6V3Nez .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-s9kS6V3Nez .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s9kS6V3Nez .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s9kS6V3Nez .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s9kS6V3Nez .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-s9kSXWdQeG .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;
  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-s9kSXWdQeG .nav-item,
.cid-s9kSXWdQeG .nav-link,
.cid-s9kSXWdQeG .navbar-caption {
  font-weight: normal;
}
.cid-s9kSXWdQeG .nav-item:focus,
.cid-s9kSXWdQeG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s9kSXWdQeG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s9kSXWdQeG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9kSXWdQeG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9kSXWdQeG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s9kSXWdQeG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s9kSXWdQeG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9kSXWdQeG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-s9kSXWdQeG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9kSXWdQeG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9kSXWdQeG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-s9kSXWdQeG .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-s9kSXWdQeG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s9kSXWdQeG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9kSXWdQeG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9kSXWdQeG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s9kSXWdQeG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s9kSXWdQeG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9kSXWdQeG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9kSXWdQeG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9kSXWdQeG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9kSXWdQeG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9kSXWdQeG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9kSXWdQeG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9kSXWdQeG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9kSXWdQeG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s9kSXWdQeG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9kSXWdQeG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9kSXWdQeG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9kSXWdQeG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9kSXWdQeG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9kSXWdQeG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9kSXWdQeG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s9kSXWdQeG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s9kSXWdQeG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9kSXWdQeG .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-s9kSXWdQeG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9kSXWdQeG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9kSXWdQeG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9kSXWdQeG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9kSXWdQeG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9kSXWdQeG .dropdown-item.active,
.cid-s9kSXWdQeG .dropdown-item:active {
  background-color: transparent;
}
.cid-s9kSXWdQeG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9kSXWdQeG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9kSXWdQeG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9kSXWdQeG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-s9kSXWdQeG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9kSXWdQeG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9kSXWdQeG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s9kSXWdQeG .navbar-buttons {
  text-align: center;
}
.cid-s9kSXWdQeG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s9kSXWdQeG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9kSXWdQeG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9kSXWdQeG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9kSXWdQeG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9kSXWdQeG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9kSXWdQeG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9kSXWdQeG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9kSXWdQeG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9kSXWdQeG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9kSXWdQeG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9kSXWdQeG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s9kSXWdQeG .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s9kSXWdQeG .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s9kSXWdQeG .soc-item {
  margin: .5rem .3rem;
}
.cid-s9kSXWdQeG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9kSXWdQeG .navbar {
    height: 77px;
  }
  .cid-s9kSXWdQeG .navbar.opened {
    height: auto;
  }
  .cid-s9kSXWdQeG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9qOJmprH5 {
  background-image: url("../../../assets/images/barista-hg.jpg");
  overflow: hidden !important;
}
.cid-s9qOJmprH5 .container-fluid {
  padding: 0 3rem;
}
.cid-s9qOJmprH5 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-s9qOJmprH5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s9kSXXiTZH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9kSXXiTZH .row-element,
.cid-s9kSXXiTZH .image-element {
  padding: 0;
}
.cid-s9kSXXiTZH .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kSXXiTZH .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kSXXiTZH .text-content {
  padding: 3rem;
}
.cid-s9kSXXiTZH .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kSXXiTZH .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kSXXiTZH .mbr-title,
  .cid-s9kSXXiTZH .underline,
  .cid-s9kSXXiTZH .mbr-text,
  .cid-s9kSXXiTZH .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kSXXiTZH .mbr-text,
.cid-s9kSXXiTZH .mbr-section-btn {
  text-align: left;
}
.cid-s9kSXXiTZH .mbr-title {
  text-align: left;
}
.cid-s9kUkSFVBi {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-s9kUkSFVBi .main {
  flex-direction: row-reverse;
}
.cid-s9kUkSFVBi .row-element,
.cid-s9kUkSFVBi .image-element {
  padding: 0;
}
.cid-s9kUkSFVBi .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9kUkSFVBi .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kUkSFVBi .text-content {
  padding: 3rem;
}
.cid-s9kUkSFVBi .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9kUkSFVBi .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9kUkSFVBi .mbr-title,
  .cid-s9kUkSFVBi .underline,
  .cid-s9kUkSFVBi .mbr-text,
  .cid-s9kUkSFVBi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9kUkSFVBi .mbr-text,
.cid-s9kUkSFVBi .mbr-section-btn {
  text-align: left;
}
.cid-s9kUkSFVBi .mbr-title {
  text-align: left;
}
.cid-s9SXOjJ4Ap {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-s9SXOjJ4Ap .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s9kVbZNpip {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9kVbZNpip .card .card-img img {
  transition: all .5s;
}
.cid-s9kVbZNpip .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-s9kVbZNpip .form1 {
  background: #333f48;
  padding: 2rem;
  height: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9kVbZNpip .form-group {
  margin-bottom: 1rem;
}
.cid-s9kVbZNpip .form-control {
  border: none;
  padding: 1rem;
  background: #546069;
  color: #ffffff;
  width: 100%;
}
.cid-s9kVbZNpip .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-s9kVbZNpip .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-s9kVbZNpip .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-s9kVbZNpip .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-s9kVbZNpip textarea.form-control {
  min-height: 172px;
}
.cid-s9kVbZNpip .input-group-btn {
  width: 100%;
}
.cid-s9kVbZNpip .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-s9kVbZNpip .items-column {
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s9kVbZNpip .first-row {
  -webkit-flex: 1 1 40%;
  flex: 1 1 40%;
  max-height: 40%;
}
.cid-s9kVbZNpip .second-row {
  -webkit-flex: 1 1 60%;
  flex: 1 1 60%;
  max-height: 60%;
}
.cid-s9kVbZNpip .card {
  height: 100%;
}
.cid-s9kVbZNpip .card .card-wrapper {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  flex: 1;
}
.cid-s9kVbZNpip .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
  overflow: hidden;
  border-radius: 0;
}
.cid-s9kVbZNpip .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9kVbZNpip .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  letter-spacing: 2px;
  padding: 1rem 2rem;
}
.cid-s9kVbZNpip .caption .mbr-text {
  margin: 0;
}
.cid-s9kVbZNpip .first-card {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-s9kVbZNpip .form1 {
    padding: 1.5rem;
  }
  .cid-s9kVbZNpip .second-card {
    padding-bottom: 2rem;
  }
  .cid-s9kVbZNpip .first-row,
  .cid-s9kVbZNpip .second-row,
  .cid-s9kVbZNpip .card-img {
    -webkit-flex-basis: auto !important;
    flex-basis: auto !important;
  }
  .cid-s9kVbZNpip .card-img img {
    min-height: 0 !important;
  }
}
@media (max-width: 767px), (max-width: 991px) {
  .cid-s9kVbZNpip .items-column {
    padding-top: 2rem;
  }
}
.cid-s9kSXXD5Sk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9kSXXD5Sk .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s9kSXXD5Sk .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s9kSXXD5Sk .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s9kSXXD5Sk .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s9kSXXD5Sk .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s9kSXXD5Sk .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-s9kSXXD5Sk .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s9kSXXD5Sk .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s9kSXXD5Sk .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s9kSXXD5Sk .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-s9qQP6gNdk .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;
  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-s9qQP6gNdk .nav-item,
.cid-s9qQP6gNdk .nav-link,
.cid-s9qQP6gNdk .navbar-caption {
  font-weight: normal;
}
.cid-s9qQP6gNdk .nav-item:focus,
.cid-s9qQP6gNdk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s9qQP6gNdk .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s9qQP6gNdk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9qQP6gNdk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9qQP6gNdk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s9qQP6gNdk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s9qQP6gNdk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9qQP6gNdk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-s9qQP6gNdk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9qQP6gNdk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9qQP6gNdk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333f48;
  background: none;
}
.cid-s9qQP6gNdk .navbar.opened {
  transition: all .3s;
  background: #333f48 !important;
}
.cid-s9qQP6gNdk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s9qQP6gNdk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9qQP6gNdk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9qQP6gNdk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s9qQP6gNdk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s9qQP6gNdk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9qQP6gNdk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9qQP6gNdk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9qQP6gNdk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9qQP6gNdk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9qQP6gNdk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9qQP6gNdk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9qQP6gNdk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9qQP6gNdk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s9qQP6gNdk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9qQP6gNdk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9qQP6gNdk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9qQP6gNdk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9qQP6gNdk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9qQP6gNdk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9qQP6gNdk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s9qQP6gNdk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s9qQP6gNdk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9qQP6gNdk .navbar.navbar-short {
  background: #333f48 !important;
  min-height: 60px;
}
.cid-s9qQP6gNdk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9qQP6gNdk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9qQP6gNdk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9qQP6gNdk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9qQP6gNdk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9qQP6gNdk .dropdown-item.active,
.cid-s9qQP6gNdk .dropdown-item:active {
  background-color: transparent;
}
.cid-s9qQP6gNdk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9qQP6gNdk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9qQP6gNdk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9qQP6gNdk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #333f48;
}
.cid-s9qQP6gNdk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9qQP6gNdk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9qQP6gNdk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s9qQP6gNdk .navbar-buttons {
  text-align: center;
}
.cid-s9qQP6gNdk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s9qQP6gNdk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9qQP6gNdk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9qQP6gNdk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9qQP6gNdk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9qQP6gNdk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9qQP6gNdk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9qQP6gNdk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9qQP6gNdk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9qQP6gNdk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9qQP6gNdk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9qQP6gNdk a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s9qQP6gNdk .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s9qQP6gNdk .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s9qQP6gNdk .soc-item {
  margin: .5rem .3rem;
}
.cid-s9qQP6gNdk .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9qQP6gNdk .navbar {
    height: 77px;
  }
  .cid-s9qQP6gNdk .navbar.opened {
    height: auto;
  }
  .cid-s9qQP6gNdk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9qQP72vXm {
  background-image: url("../../../assets/images/kaffeegenuss-hg.jpg");
  overflow: hidden !important;
}
.cid-s9qQP72vXm .container-fluid {
  padding: 0 3rem;
}
.cid-s9qQP72vXm .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-s9qQP72vXm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s9qQP7QZ4T {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-s9qQP7QZ4T .row-element,
.cid-s9qQP7QZ4T .image-element {
  padding: 0;
}
.cid-s9qQP7QZ4T .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9qQP7QZ4T .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9qQP7QZ4T .text-content {
  padding: 3rem;
}
.cid-s9qQP7QZ4T .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9qQP7QZ4T .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9qQP7QZ4T .mbr-title,
  .cid-s9qQP7QZ4T .underline,
  .cid-s9qQP7QZ4T .mbr-text,
  .cid-s9qQP7QZ4T .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9qQP7QZ4T .mbr-text,
.cid-s9qQP7QZ4T .mbr-section-btn {
  text-align: left;
}
.cid-s9qQP7QZ4T .mbr-title {
  text-align: left;
}
.cid-s9qQP89bTu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-s9qQP89bTu .main {
  flex-direction: row-reverse;
}
.cid-s9qQP89bTu .row-element,
.cid-s9qQP89bTu .image-element {
  padding: 0;
}
.cid-s9qQP89bTu .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9qQP89bTu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9qQP89bTu .text-content {
  padding: 3rem;
}
.cid-s9qQP89bTu .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9qQP89bTu .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9qQP89bTu .mbr-title,
  .cid-s9qQP89bTu .underline,
  .cid-s9qQP89bTu .mbr-text,
  .cid-s9qQP89bTu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9qQP89bTu .mbr-text,
.cid-s9qQP89bTu .mbr-section-btn {
  text-align: left;
}
.cid-s9qQP89bTu .mbr-title {
  text-align: left;
}
.cid-s9qS3PIQNv {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9qS3PIQNv .row-element,
.cid-s9qS3PIQNv .image-element {
  padding: 0;
}
.cid-s9qS3PIQNv .image-element {
  display: flex;
  justify-content: center;
}
.cid-s9qS3PIQNv .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s9qS3PIQNv .text-content {
  padding: 3rem;
}
.cid-s9qS3PIQNv .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-s9qS3PIQNv .text-content {
    padding: 2rem 1rem;
  }
  .cid-s9qS3PIQNv .mbr-title,
  .cid-s9qS3PIQNv .underline,
  .cid-s9qS3PIQNv .mbr-text,
  .cid-s9qS3PIQNv .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s9qS3PIQNv .mbr-text,
.cid-s9qS3PIQNv .mbr-section-btn {
  text-align: left;
}
.cid-s9qS3PIQNv .mbr-title {
  text-align: left;
}
.cid-s9qQP9zt36 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9qQP9zt36 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s9qQP9zt36 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s9qQP9zt36 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s9qQP9zt36 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s9qQP9zt36 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #333f48;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s9qQP9zt36 .icon-transition span:hover {
  background-color: #4e606f;
}
.cid-s9qQP9zt36 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s9qQP9zt36 .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s9qQP9zt36 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s9qQP9zt36 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
