body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  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: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* 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;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@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: #f94d08 !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f94d08 !important;
  border-color: #f94d08 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b03604 !important;
  border-color: #b03604 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b03604 !important;
  border-color: #b03604 !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: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #972e04;
  color: #972e04 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #f94d08;
  border-color: #f94d08;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f94d08 !important;
  border-color: #f94d08 !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: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #f94d08 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #972e04 !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: #72a1ac !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: #b2ccd2;
}
.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: #f94d08;
  border-color: #f94d08;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f94d08;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #feddcf;
}
.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: 'Jost', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #f94d08;
}
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: #f94d08;
  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: #f94d08;
  border-bottom-color: #f94d08;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #f94d08 !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='%23f94d08' %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-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJYuyJ9BOf {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bundenbach-fossil-header-999x409.webp");
}
.cid-rJYuyJ9BOf .mbr-overlay {
  background: #ffffff;
}
.cid-rJYuyJ9BOf .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rJYuyJ9BOf .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rJYuyJ9BOf .mbr-section-title B {
  color: #f95908;
}
.cid-rJYuyJ9BOf .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rJYuyJ9BOf .mbr-section-title FONT {
  color: #ffffff;
}
.cid-rLdHtagaeM {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rLdHtagaeM .mbr-text {
  color: #767676;
}
.cid-qL9guBjeSE {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qL9guBjeSE .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qL9guBjeSE .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-qL9guBjeSE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qL9guBjeSE .inner-container {
    width: 100% !important;
  }
}
.cid-rJZHLTKfWD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJZHLTKfWD .card {
  display: block;
  position: relative;
}
.cid-rJZHLTKfWD .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rJZHLTKfWD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rJZHLTKfWD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJZHLTKfWD .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: #fac769;
}
.cid-rJZHLTKfWD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJZHLTKfWD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rJZHLTKfWD .mbr-card-text {
  margin: 0;
}
.cid-rJZHLTKfWD .mbr-section-title {
  text-align: center;
}
.cid-rJZHLTKfWD .mbr-title {
  color: #767676;
}
.cid-rJZHLTKfWD .mbr-card-text,
.cid-rJZHLTKfWD .mbr-section-btn {
  color: #767676;
}
.cid-rJZHLTKfWD .mbr-section-subtitle {
  text-align: center;
  color: #767676;
}
.cid-u1ablclPkh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1ablclPkh .mbr-text,
.cid-u1ablclPkh blockquote {
  color: #767676;
}
.cid-u1ablclPkh .mbr-text DIV {
  text-align: left;
}
.cid-tdaS2DeBPP {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tdaS2DeBPP .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tdaS2DeBPP .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tdaS2DeBPP .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tdaS2DeBPP .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tdaS2DeBPP .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tdaS2DeBPP .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tdaS2DeBPP .img-item {
    width: 100% !important;
  }
  .cid-tdaS2DeBPP .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tcrhhyH76g {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcrhhyH76g .counter-container {
  color: #767676;
}
.cid-tcrhhyH76g .counter-container ul {
  margin-bottom: 0;
}
.cid-tcrhhyH76g .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tcrhhyH76g .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f95908;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-tcrhjAWT1L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcrhjAWT1L .counter-container {
  color: #767676;
}
.cid-tcrhjAWT1L .counter-container ul {
  margin-bottom: 0;
}
.cid-tcrhjAWT1L .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tcrhjAWT1L .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f95908;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-u1abkf2HUT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1abkf2HUT .mbr-text,
.cid-u1abkf2HUT blockquote {
  color: #767676;
}
.cid-u1abkf2HUT .mbr-text DIV {
  text-align: left;
}
.cid-tdaS8oSCKb {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tdaS8oSCKb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tdaS8oSCKb .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tdaS8oSCKb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tdaS8oSCKb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tdaS8oSCKb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tdaS8oSCKb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tdaS8oSCKb .img-item {
    width: 100% !important;
  }
  .cid-tdaS8oSCKb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tcCO8tUU7U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcCO8tUU7U .counter-container {
  color: #767676;
}
.cid-tcCO8tUU7U .counter-container ul {
  margin-bottom: 0;
}
.cid-tcCO8tUU7U .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tcCO8tUU7U .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f95908;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-tcCNMQb5oV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcCNMQb5oV .mbr-text,
.cid-tcCNMQb5oV blockquote {
  color: #767676;
}
.cid-tcCNMQb5oV .mbr-text DIV {
  text-align: left;
}
.cid-tdaS9WTS57 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tdaS9WTS57 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tdaS9WTS57 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tdaS9WTS57 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tdaS9WTS57 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tdaS9WTS57 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tdaS9WTS57 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tdaS9WTS57 .img-item {
    width: 100% !important;
  }
  .cid-tdaS9WTS57 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tcCNOoRkoV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcCNOoRkoV .counter-container {
  color: #767676;
}
.cid-tcCNOoRkoV .counter-container ul {
  margin-bottom: 0;
}
.cid-tcCNOoRkoV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tcCNOoRkoV .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f95908;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-u1abj78dxD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1abj78dxD .mbr-text,
.cid-u1abj78dxD blockquote {
  color: #767676;
}
.cid-u1abj78dxD .mbr-text DIV {
  text-align: left;
}
.cid-tdb7HQwHNm {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tdb7HQwHNm .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tdb7HQwHNm .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tdb7HQwHNm .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tdb7HQwHNm .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tdb7HQwHNm .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tdb7HQwHNm .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tdb7HQwHNm .img-item {
    width: 100% !important;
  }
  .cid-tdb7HQwHNm .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tdb7LeevxS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdb7LeevxS .counter-container {
  color: #767676;
}
.cid-tdb7LeevxS .counter-container ul {
  margin-bottom: 0;
}
.cid-tdb7LeevxS .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tdb7LeevxS .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f95908;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-tcHZV1dkBQ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcHZV1dkBQ .mbr-text,
.cid-tcHZV1dkBQ blockquote {
  color: #767676;
}
.cid-tcHZV1dkBQ .mbr-text DIV {
  text-align: left;
}
.cid-sTbJAjTs8m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f95908;
}
.cid-sTbJAjTs8m .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sTbJAjTs8m .mbr-section-btn,
  .cid-sTbJAjTs8m .mbr-section-subtitle,
  .cid-sTbJAjTs8m .mbr-section-title {
    text-align: center !important;
  }
}
.cid-qL4rjd3ElP {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qL4rjd3ElP .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qL4rjd3ElP .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-qL4rjd3ElP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qL4rjd3ElP .inner-container {
    width: 100% !important;
  }
}
.cid-qL7CL82U3E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qL7CL82U3E .main {
  flex-direction: row-reverse;
}
.cid-qL7CL82U3E .row-element,
.cid-qL7CL82U3E .image-element {
  padding: 0;
}
.cid-qL7CL82U3E .image-element {
  display: flex;
  justify-content: center;
}
.cid-qL7CL82U3E .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qL7CL82U3E .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qL7CL82U3E .text-content {
    padding: 2rem 1rem;
  }
  .cid-qL7CL82U3E .mbr-title,
  .cid-qL7CL82U3E .mbr-text,
  .cid-qL7CL82U3E .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qL7CL82U3E .mbr-text,
.cid-qL7CL82U3E .mbr-section-btn {
  color: #767676;
}
.cid-qL7CL82U3E .mbr-title {
  color: #767676;
}
.cid-qL7CL82U3E .mbr-section-subtitle {
  color: #767676;
}
.cid-qLaeFB9iGt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLaeFB9iGt .row-element,
.cid-qLaeFB9iGt .image-element {
  padding: 0;
}
.cid-qLaeFB9iGt .image-element {
  display: flex;
  justify-content: center;
}
.cid-qLaeFB9iGt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qLaeFB9iGt .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qLaeFB9iGt .text-content {
    padding: 2rem 1rem;
  }
  .cid-qLaeFB9iGt .mbr-title,
  .cid-qLaeFB9iGt .mbr-text,
  .cid-qLaeFB9iGt .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qLaeFB9iGt .mbr-text,
.cid-qLaeFB9iGt .mbr-section-btn {
  color: #767676;
}
.cid-qLaeFB9iGt .mbr-title {
  color: #767676;
}
.cid-qLaeFB9iGt .mbr-section-subtitle {
  color: #767676;
}
.cid-qL7CfcI7FU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL7CfcI7FU .main {
  flex-direction: row-reverse;
}
.cid-qL7CfcI7FU .row-element,
.cid-qL7CfcI7FU .image-element {
  padding: 0;
}
.cid-qL7CfcI7FU .image-element {
  display: flex;
  justify-content: center;
}
.cid-qL7CfcI7FU .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qL7CfcI7FU .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qL7CfcI7FU .text-content {
    padding: 2rem 1rem;
  }
  .cid-qL7CfcI7FU .mbr-title,
  .cid-qL7CfcI7FU .mbr-text,
  .cid-qL7CfcI7FU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qL7CfcI7FU .mbr-text,
.cid-qL7CfcI7FU .mbr-section-btn {
  color: #767676;
}
.cid-qL7CfcI7FU .mbr-title {
  color: #767676;
}
.cid-qL7CfcI7FU .mbr-section-subtitle {
  color: #767676;
}
.cid-qL9ggJiVnm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qL9ggJiVnm .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qL9ggJiVnm .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-qL9ggJiVnm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qL9ggJiVnm .inner-container {
    width: 100% !important;
  }
}
.cid-qL4FWNbxHf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL4FWNbxHf .mbr-text {
  color: #767676;
}
.cid-rJYoiRTVv6 {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rJYoiRTVv6 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-rJYoiRTVv6 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-rJYoiRTVv6 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rJYoiRTVv6 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rJYoiRTVv6 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rJYoiRTVv6 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rJYoiRTVv6 .img-item {
    width: 100% !important;
  }
  .cid-rJYoiRTVv6 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-u1ZLafn6SK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1ZLafn6SK .mbr-text {
  color: #767676;
}
.cid-u19OzjD5Ip {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u19OzjD5Ip .mbr-section-subtitle {
  color: #767676;
}
.cid-u19OzjD5Ip .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #f95908;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-u19OzjD5Ip .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-u19OzjD5Ip .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-u19OzjD5Ip .mbr-iconfont-social:hover:before {
  background: #f95908;
  transition: all .3s;
  border-color: transparent;
}
.cid-u19OzjD5Ip .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-u19OzjD5Ip .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6oEmyFq0Y {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-bundenbach-crnoids-header-1990x1000.webp");
}
.cid-t6oEmyFq0Y .mbr-overlay {
  background: #879a9f;
}
.cid-t6oEmyFq0Y .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-t6oEmyFq0Y .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-t6oEmyFq0Y .mbr-section-title B {
  color: #f95908;
}
.cid-t6oEmyFq0Y .mbr-section-subtitle B {
  color: #f95908;
}
.cid-t6oEmyFq0Y .mbr-section-title FONT {
  color: #ffffff;
}
.cid-rJZOKSmqLw {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJZOKSmqLw .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rJZOKSmqLw .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-rJZOKSmqLw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rJZOKSmqLw .inner-container {
    width: 100% !important;
  }
}
.cid-tcwqwougtZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwqwougtZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwqwougtZ .mbr-section-title {
  color: #767676;
}
.cid-tcwqE0MzUm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwqE0MzUm .mbr-text,
.cid-tcwqE0MzUm blockquote {
  color: #767676;
}
.cid-tcwqE0MzUm .mbr-text DIV {
  text-align: left;
}
.cid-uPOpMXvKwI {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-uPOpMXvKwI .images-container.container-fluid {
  padding: 0;
}
.cid-uPOpMXvKwI .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-uPOpMXvKwI .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-uPOpMXvKwI .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-uPOpMXvKwI .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-uPOpMXvKwI .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uPOpMXvKwI .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-uPOpMXvKwI .img-item {
    width: 100% !important;
  }
  .cid-uPOpMXvKwI .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-uPOpMXvKwI P {
  color: #767676;
}
.cid-uPOpQcC8pU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uPOpQcC8pU blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uPOpQcC8pU .mbr-text,
.cid-uPOpQcC8pU .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uPOpQcC8pU footer {
  font-style: normal;
}
.cid-uPOpQcC8pU footer P {
  color: #f95908;
}
.cid-tcwvTgcKLQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwvTgcKLQ .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwvTgcKLQ .mbr-section-title {
  color: #767676;
}
.cid-tcwvUWlx50 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwvUWlx50 .mbr-text,
.cid-tcwvUWlx50 blockquote {
  color: #767676;
}
.cid-tcwvUWlx50 .mbr-text DIV {
  text-align: left;
}
.cid-tWfGNQF6mA {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tWfGNQF6mA .images-container.container-fluid {
  padding: 0;
}
.cid-tWfGNQF6mA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tWfGNQF6mA .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tWfGNQF6mA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tWfGNQF6mA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tWfGNQF6mA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tWfGNQF6mA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tWfGNQF6mA .img-item {
    width: 100% !important;
  }
  .cid-tWfGNQF6mA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tWfGNQF6mA P {
  color: #767676;
}
.cid-tWfGQp7PQx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tWfGQp7PQx blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tWfGQp7PQx .mbr-text,
.cid-tWfGQp7PQx .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tWfGQp7PQx footer {
  font-style: normal;
}
.cid-tWfGQp7PQx footer P {
  color: #f95908;
}
.cid-tcwySFfLV8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwySFfLV8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwySFfLV8 .mbr-section-title {
  color: #767676;
}
.cid-tcwyTrk5cw {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwyTrk5cw .mbr-text,
.cid-tcwyTrk5cw blockquote {
  color: #767676;
}
.cid-tcwyTrk5cw .mbr-text DIV {
  text-align: left;
}
.cid-tcwFHe25qF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwFHe25qF blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tcwFHe25qF .mbr-text,
.cid-tcwFHe25qF .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tcwFHe25qF footer {
  font-style: normal;
}
.cid-tcwFHe25qF footer P {
  color: #f95908;
}
.cid-tcwFHe25qF footer SPAN {
  color: #f95908;
}
.cid-tcwFIhYnlD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwFIhYnlD .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwFIhYnlD .mbr-section-title {
  color: #767676;
}
.cid-tcwFIY7uWO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwFIY7uWO .mbr-text,
.cid-tcwFIY7uWO blockquote {
  color: #767676;
}
.cid-tcwFIY7uWO .mbr-text DIV {
  text-align: left;
}
.cid-svGO74JG4u {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-svGO74JG4u .images-container.container-fluid {
  padding: 0;
}
.cid-svGO74JG4u .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-svGO74JG4u .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-svGO74JG4u .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-svGO74JG4u .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-svGO74JG4u .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-svGO74JG4u .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-svGO74JG4u .img-item {
    width: 100% !important;
  }
  .cid-svGO74JG4u .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tx93VtiR4k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx93VtiR4k blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tx93VtiR4k .mbr-text,
.cid-tx93VtiR4k .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tx93VtiR4k footer {
  font-style: normal;
}
.cid-tx93VtiR4k footer P {
  color: #f95908;
}
.cid-tcwJwBbK77 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwJwBbK77 .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwJwBbK77 .mbr-section-title {
  color: #767676;
}
.cid-tcwJymJaf9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwJymJaf9 .mbr-text,
.cid-tcwJymJaf9 blockquote {
  color: #767676;
}
.cid-tcwJymJaf9 .mbr-text DIV {
  text-align: left;
}
.cid-tum1LsIDnk {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tum1LsIDnk .images-container.container-fluid {
  padding: 0;
}
.cid-tum1LsIDnk .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tum1LsIDnk .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tum1LsIDnk .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tum1LsIDnk .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tum1LsIDnk .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tum1LsIDnk .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tum1LsIDnk .img-item {
    width: 100% !important;
  }
  .cid-tum1LsIDnk .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tum1LsIDnk P {
  color: #767676;
}
.cid-tum1NSn4xt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tum1NSn4xt blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tum1NSn4xt .mbr-text,
.cid-tum1NSn4xt .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tum1NSn4xt footer {
  font-style: normal;
}
.cid-tum1NSn4xt footer P {
  color: #f95908;
}
.cid-tum1NSn4xt footer SPAN {
  color: #f95908;
}
.cid-tcwqy9ij9r {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwqy9ij9r .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwqy9ij9r .mbr-section-title {
  color: #767676;
}
.cid-tcwqEJmd7m {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwqEJmd7m .mbr-text,
.cid-tcwqEJmd7m blockquote {
  color: #767676;
}
.cid-tcwqEJmd7m .mbr-text DIV {
  text-align: left;
}
.cid-uPOrQpic4o {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-uPOrQpic4o .images-container.container-fluid {
  padding: 0;
}
.cid-uPOrQpic4o .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-uPOrQpic4o .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-uPOrQpic4o .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-uPOrQpic4o .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-uPOrQpic4o .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uPOrQpic4o .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-uPOrQpic4o .img-item {
    width: 100% !important;
  }
  .cid-uPOrQpic4o .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-uPOrQpic4o P {
  color: #767676;
}
.cid-uPOrRcMbRN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uPOrRcMbRN blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uPOrRcMbRN .mbr-text,
.cid-uPOrRcMbRN .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uPOrRcMbRN footer {
  font-style: normal;
}
.cid-uPOrRcMbRN footer P {
  color: #f95908;
}
.cid-tcwQA3HaMX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwQA3HaMX .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwQA3HaMX .mbr-section-title {
  color: #767676;
}
.cid-tcwQB1xrbT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwQB1xrbT .mbr-text,
.cid-tcwQB1xrbT blockquote {
  color: #767676;
}
.cid-tcwQB1xrbT .mbr-text DIV {
  text-align: left;
}
.cid-t4klAtwlD6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4klAtwlD6 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-t4klAtwlD6 .mbr-text,
.cid-t4klAtwlD6 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-t4klAtwlD6 footer {
  font-style: normal;
}
.cid-t4klAtwlD6 footer P {
  color: #f95908;
}
.cid-tcwWdGq95J {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwWdGq95J .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwWdGq95J .mbr-section-title {
  color: #767676;
}
.cid-tcwWeWncie {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwWeWncie .mbr-text,
.cid-tcwWeWncie blockquote {
  color: #767676;
}
.cid-tcwWeWncie .mbr-text DIV {
  text-align: left;
}
.cid-tQBWjoodwu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tQBWjoodwu blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tQBWjoodwu .mbr-text,
.cid-tQBWjoodwu .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tQBWjoodwu footer {
  font-style: normal;
}
.cid-tQBWjoodwu footer P {
  color: #f95908;
}
.cid-tcwWhYO8eo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwWhYO8eo .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwWhYO8eo .mbr-section-title {
  color: #767676;
}
.cid-tcwWkG1336 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwWkG1336 .mbr-text,
.cid-tcwWkG1336 blockquote {
  color: #767676;
}
.cid-tcwWkG1336 .mbr-text DIV {
  text-align: left;
}
.cid-svGObjGXKk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svGObjGXKk blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-svGObjGXKk .mbr-text,
.cid-svGObjGXKk .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-svGObjGXKk footer {
  font-style: normal;
}
.cid-svGObjGXKk footer P {
  color: #f95908;
}
.cid-svGObjGXKk footer SPAN {
  color: #f95908;
}
.cid-tcwWlRlo9S {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcwWlRlo9S .mbr-section-subtitle {
  color: #767676;
}
.cid-tcwWlRlo9S .mbr-section-title {
  color: #767676;
}
.cid-tcwWn1qG9g {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcwWn1qG9g .mbr-text,
.cid-tcwWn1qG9g blockquote {
  color: #767676;
}
.cid-tcwWn1qG9g .mbr-text DIV {
  text-align: left;
}
.cid-rJZOL4oocJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-rJZOL4oocJ .images-container.container-fluid {
  padding: 0;
}
.cid-rJZOL4oocJ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-rJZOL4oocJ .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-rJZOL4oocJ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rJZOL4oocJ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rJZOL4oocJ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rJZOL4oocJ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rJZOL4oocJ .img-item {
    width: 100% !important;
  }
  .cid-rJZOL4oocJ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-rJZOL6nDqP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJZOL6nDqP blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-rJZOL6nDqP .mbr-text,
.cid-rJZOL6nDqP .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-rJZOL6nDqP footer {
  font-style: normal;
}
.cid-rJZOL6nDqP footer P {
  color: #f95908;
}
.cid-sTicPY5uJH {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sTicPY5uJH .images-container.container-fluid {
  padding: 0;
}
.cid-sTicPY5uJH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sTicPY5uJH .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sTicPY5uJH .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sTicPY5uJH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sTicPY5uJH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sTicPY5uJH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sTicPY5uJH .img-item {
    width: 100% !important;
  }
  .cid-sTicPY5uJH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sTicPY5uJH P {
  color: #767676;
}
.cid-sTicQDMSRT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTicQDMSRT blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sTicQDMSRT .mbr-text,
.cid-sTicQDMSRT .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sTicQDMSRT footer {
  font-style: normal;
}
.cid-sTicQDMSRT footer P {
  color: #f95908;
}
.cid-sTicQDMSRT footer SPAN {
  color: #f95908;
}
.cid-sTnnXE6UpJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTnnXE6UpJ .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTnnXE6UpJ .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-sTnnXE6UpJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTnnXE6UpJ .inner-container {
    width: 100% !important;
  }
}
.cid-tcCoKwWeJh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcCoKwWeJh .mbr-section-subtitle {
  color: #767676;
}
.cid-tcCoKwWeJh .mbr-section-title {
  color: #767676;
}
.cid-tcCFEUIuyj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcCFEUIuyj .mbr-text,
.cid-tcCFEUIuyj blockquote {
  color: #767676;
}
.cid-tcCFEUIuyj .mbr-text DIV {
  text-align: left;
}
.cid-sTns2cdVxu {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sTns2cdVxu .images-container.container-fluid {
  padding: 0;
}
.cid-sTns2cdVxu .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sTns2cdVxu .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sTns2cdVxu .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sTns2cdVxu .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sTns2cdVxu .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sTns2cdVxu .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sTns2cdVxu .img-item {
    width: 100% !important;
  }
  .cid-sTns2cdVxu .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sTns2cdVxu P {
  color: #767676;
}
.cid-tQBYrTWBi2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tQBYrTWBi2 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tQBYrTWBi2 .mbr-text,
.cid-tQBYrTWBi2 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tQBYrTWBi2 footer {
  font-style: normal;
}
.cid-tQBYrTWBi2 footer P {
  color: #f95908;
}
.cid-tcCoJplhHv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcCoJplhHv .mbr-section-subtitle {
  color: #767676;
}
.cid-tcCoJplhHv .mbr-section-title {
  color: #767676;
}
.cid-tcCoODTsC1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcCoODTsC1 .mbr-text,
.cid-tcCoODTsC1 blockquote {
  color: #767676;
}
.cid-tcCoODTsC1 .mbr-text DIV {
  text-align: left;
}
.cid-tUnFIPM3zk {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tUnFIPM3zk .images-container.container-fluid {
  padding: 0;
}
.cid-tUnFIPM3zk .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tUnFIPM3zk .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tUnFIPM3zk .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tUnFIPM3zk .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tUnFIPM3zk .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tUnFIPM3zk .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tUnFIPM3zk .img-item {
    width: 100% !important;
  }
  .cid-tUnFIPM3zk .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tUnFIPM3zk P {
  color: #767676;
}
.cid-tUnFOQ4BEf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tUnFOQ4BEf blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tUnFOQ4BEf .mbr-text,
.cid-tUnFOQ4BEf .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tUnFOQ4BEf footer {
  font-style: normal;
}
.cid-tUnFOQ4BEf footer P {
  color: #f95908;
}
.cid-tUnFOQ4BEf footer SPAN {
  color: #f95908;
}
.cid-sTnq950Cuz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTnq950Cuz .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTnq950Cuz .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-sTnq950Cuz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTnq950Cuz .inner-container {
    width: 100% !important;
  }
}
.cid-tcCoLdsYzM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcCoLdsYzM .mbr-section-subtitle {
  color: #767676;
}
.cid-tcCoLdsYzM .mbr-section-title {
  color: #767676;
}
.cid-tcCoNKYlJD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcCoNKYlJD .mbr-text,
.cid-tcCoNKYlJD blockquote {
  color: #767676;
}
.cid-tcCoNKYlJD .mbr-text DIV {
  text-align: left;
}
.cid-sTnoymOMKU {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sTnoymOMKU .images-container.container-fluid {
  padding: 0;
}
.cid-sTnoymOMKU .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sTnoymOMKU .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sTnoymOMKU .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sTnoymOMKU .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sTnoymOMKU .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sTnoymOMKU .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sTnoymOMKU .img-item {
    width: 100% !important;
  }
  .cid-sTnoymOMKU .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sTnoymOMKU P {
  color: #767676;
}
.cid-sTnoF8LH8q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTnoF8LH8q blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sTnoF8LH8q .mbr-text,
.cid-sTnoF8LH8q .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sTnoF8LH8q footer {
  font-style: normal;
}
.cid-sTnoF8LH8q footer P {
  color: #f95908;
}
.cid-sTnoF8LH8q footer SPAN {
  color: #f95908;
}
.cid-sTntH2WEz6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTntH2WEz6 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTntH2WEz6 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-sTntH2WEz6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTntH2WEz6 .inner-container {
    width: 100% !important;
  }
}
.cid-tcCoLVLfTn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcCoLVLfTn .mbr-section-subtitle {
  color: #767676;
}
.cid-tcCoLVLfTn .mbr-section-title {
  color: #767676;
}
.cid-tcCoMPFKD3 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcCoMPFKD3 .mbr-text,
.cid-tcCoMPFKD3 blockquote {
  color: #767676;
}
.cid-tcCoMPFKD3 .mbr-text DIV {
  text-align: left;
}
.cid-sTntKjXYVI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTntKjXYVI blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sTntKjXYVI .mbr-text,
.cid-sTntKjXYVI .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sTntKjXYVI footer {
  font-style: normal;
}
.cid-sTntKjXYVI footer P {
  color: #f95908;
}
.cid-sTntKjXYVI footer SPAN {
  color: #f95908;
}
.cid-tjytiiH5Kv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjytiiH5Kv .mbr-text,
.cid-tjytiiH5Kv blockquote {
  color: #767676;
}
.cid-tjytiiH5Kv .mbr-text DIV {
  text-align: left;
}
.cid-tjytiiH5Kv .mbr-text {
  color: #ffffff;
}
.cid-sTnC1LQYPO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f95908;
}
.cid-sTnC1LQYPO .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sTnC1LQYPO .mbr-section-btn,
  .cid-sTnC1LQYPO .mbr-section-subtitle,
  .cid-sTnC1LQYPO .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tc83LAI4Kd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc83LAI4Kd .mbr-text,
.cid-tc83LAI4Kd blockquote {
  color: #767676;
}
.cid-tc83LAI4Kd .mbr-text DIV {
  text-align: left;
}
.cid-tcCNn1ty5X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcCNn1ty5X .mbr-text,
.cid-tcCNn1ty5X blockquote {
  color: #767676;
}
.cid-tcCNn1ty5X .mbr-text DIV {
  text-align: left;
}
.cid-tc81jtfGDZ {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-skcZbaUdw1 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-arthropods-bundenbach-header-small-980x501.webp");
}
.cid-skcZbaUdw1 .mbr-overlay {
  background: #ffffff;
}
.cid-skcZbaUdw1 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-skcZbaUdw1 .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-skcZbaUdw1 .mbr-section-title B {
  color: #f95908;
}
.cid-skcZbaUdw1 .mbr-section-subtitle B {
  color: #f95908;
}
.cid-skcZbaUdw1 .mbr-section-title FONT {
  color: #ffffff;
}
.cid-rJZPg71Erk {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJZPg71Erk .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rJZPg71Erk .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-rJZPg71Erk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rJZPg71Erk .inner-container {
    width: 100% !important;
  }
}
.cid-tdbcrEiOHN {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tdbcrEiOHN .mbr-text,
.cid-tdbcrEiOHN blockquote {
  color: #767676;
}
.cid-tdbcrEiOHN .mbr-text DIV {
  text-align: left;
}
.cid-tdbcqDE4c9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbcqDE4c9 .mbr-section-subtitle {
  color: #767676;
}
.cid-tdbcqDE4c9 .mbr-section-title {
  color: #767676;
}
.cid-t7wWEkhfwF {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t7wWEkhfwF .images-container.container-fluid {
  padding: 0;
}
.cid-t7wWEkhfwF .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-t7wWEkhfwF .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-t7wWEkhfwF .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-t7wWEkhfwF .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-t7wWEkhfwF .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-t7wWEkhfwF .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-t7wWEkhfwF .img-item {
    width: 100% !important;
  }
  .cid-t7wWEkhfwF .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-t7wWEkhfwF P {
  color: #767676;
}
.cid-t7wWGM9oze {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t7wWGM9oze blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-t7wWGM9oze .mbr-text,
.cid-t7wWGM9oze .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-t7wWGM9oze footer {
  font-style: normal;
}
.cid-t7wWGM9oze footer P {
  color: #f95908;
}
.cid-sZ64sUishL {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sZ64sUishL .images-container.container-fluid {
  padding: 0;
}
.cid-sZ64sUishL .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sZ64sUishL .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sZ64sUishL .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sZ64sUishL .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sZ64sUishL .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sZ64sUishL .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sZ64sUishL .img-item {
    width: 100% !important;
  }
  .cid-sZ64sUishL .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sZ64sUishL P {
  color: #767676;
}
.cid-sZ64txo6ef {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZ64txo6ef blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sZ64txo6ef .mbr-text,
.cid-sZ64txo6ef .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sZ64txo6ef footer {
  font-style: normal;
}
.cid-sZ64txo6ef footer P {
  color: #f95908;
}
.cid-tdbcuiLvNi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbcuiLvNi .mbr-section-subtitle {
  color: #767676;
}
.cid-tdbcuiLvNi .mbr-section-title {
  color: #767676;
}
.cid-tum2UaEhjh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tum2UaEhjh blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tum2UaEhjh .mbr-text,
.cid-tum2UaEhjh .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tum2UaEhjh footer {
  font-style: normal;
}
.cid-tum2UaEhjh footer P {
  color: #f95908;
}
.cid-tdbcwUW8W9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbcwUW8W9 .mbr-section-subtitle {
  color: #767676;
}
.cid-tdbcwUW8W9 .mbr-section-title {
  color: #767676;
}
.cid-tdbcySB1ao {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbcySB1ao .mbr-text,
.cid-tdbcySB1ao blockquote {
  color: #767676;
}
.cid-tdbcySB1ao .mbr-text DIV {
  text-align: left;
}
.cid-sTnFRnlr0K {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sTnFRnlr0K .images-container.container-fluid {
  padding: 0;
}
.cid-sTnFRnlr0K .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sTnFRnlr0K .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sTnFRnlr0K .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sTnFRnlr0K .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sTnFRnlr0K .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sTnFRnlr0K .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sTnFRnlr0K .img-item {
    width: 100% !important;
  }
  .cid-sTnFRnlr0K .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sTnFRnlr0K P {
  color: #767676;
}
.cid-sTnFSntnRP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTnFSntnRP blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sTnFSntnRP .mbr-text,
.cid-sTnFSntnRP .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sTnFSntnRP footer {
  font-style: normal;
}
.cid-sTnFSntnRP footer P {
  color: #f95908;
}
.cid-sTnFSntnRP footer SPAN {
  color: #f95908;
}
.cid-skcwVz7d7S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-skcwVz7d7S .mbr-text,
.cid-skcwVz7d7S blockquote {
  color: #767676;
}
.cid-skcwVz7d7S .mbr-text DIV {
  text-align: left;
}
.cid-tdbcBgNILE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbcBgNILE .mbr-section-subtitle {
  color: #767676;
}
.cid-tdbcBgNILE .mbr-section-title {
  color: #767676;
}
.cid-tDdlzQYhFR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDdlzQYhFR blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tDdlzQYhFR .mbr-text,
.cid-tDdlzQYhFR .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tDdlzQYhFR footer {
  font-style: normal;
}
.cid-tDdlzQYhFR footer P {
  color: #f95908;
}
.cid-tDdlzQYhFR footer SPAN {
  color: #f95908;
}
.cid-tdbcD02PaY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbcD02PaY .mbr-section-subtitle {
  color: #767676;
}
.cid-tdbcD02PaY .mbr-section-title {
  color: #767676;
}
.cid-tjjqWUR6KW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjjqWUR6KW blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tjjqWUR6KW .mbr-text,
.cid-tjjqWUR6KW .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tjjqWUR6KW footer {
  font-style: normal;
}
.cid-tjjqWUR6KW footer P {
  color: #f95908;
}
.cid-tjjqWUR6KW footer SPAN {
  color: #f95908;
}
.cid-tjytKflIW8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjytKflIW8 .mbr-text,
.cid-tjytKflIW8 blockquote {
  color: #767676;
}
.cid-tjytKflIW8 .mbr-text DIV {
  text-align: left;
}
.cid-tjytKflIW8 .mbr-text {
  color: #ffffff;
}
.cid-sTnC8UcZBi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f95908;
}
.cid-sTnC8UcZBi .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sTnC8UcZBi .mbr-section-btn,
  .cid-sTnC8UcZBi .mbr-section-subtitle,
  .cid-sTnC8UcZBi .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tdbfYp7Z4m {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdbfYp7Z4m .mbr-text,
.cid-tdbfYp7Z4m blockquote {
  color: #767676;
}
.cid-tdbfYp7Z4m .mbr-text DIV {
  text-align: left;
}
.cid-tc8enFpcyz {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6p0O1Zk5y {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-bundenbach-diversa-header-small-980x640.webp");
}
.cid-t6p0O1Zk5y .mbr-overlay {
  background: #ffffff;
}
.cid-t6p0O1Zk5y .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-t6p0O1Zk5y .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-t6p0O1Zk5y .mbr-section-title B {
  color: #f95908;
}
.cid-t6p0O1Zk5y .mbr-section-subtitle B {
  color: #f95908;
}
.cid-t6p0O1Zk5y .mbr-section-title FONT {
  color: #ffffff;
}
.cid-rJZPBgAAmB {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJZPBgAAmB .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rJZPBgAAmB .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-rJZPBgAAmB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rJZPBgAAmB .inner-container {
    width: 100% !important;
  }
}
.cid-tlVgNTbbLO {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tlVgNTbbLO .images-container.container-fluid {
  padding: 0;
}
.cid-tlVgNTbbLO .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tlVgNTbbLO .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tlVgNTbbLO .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tlVgNTbbLO .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tlVgNTbbLO .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tlVgNTbbLO .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tlVgNTbbLO .img-item {
    width: 100% !important;
  }
  .cid-tlVgNTbbLO .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tlVgNTbbLO P {
  color: #767676;
}
.cid-v1jnr529Rl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v1jnr529Rl blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-v1jnr529Rl .mbr-text,
.cid-v1jnr529Rl .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-v1jnr529Rl footer {
  font-style: normal;
}
.cid-v1jnr529Rl footer P {
  color: #f95908;
}
.cid-v1jnr529Rl footer SPAN {
  color: #f95908;
}
.cid-v1jnkoiRYX {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-v1jnkoiRYX .images-container.container-fluid {
  padding: 0;
}
.cid-v1jnkoiRYX .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-v1jnkoiRYX .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v1jnkoiRYX .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v1jnkoiRYX .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v1jnkoiRYX .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v1jnkoiRYX .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v1jnkoiRYX .img-item {
    width: 100% !important;
  }
  .cid-v1jnkoiRYX .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-v1jnkoiRYX P {
  color: #767676;
}
.cid-tlVgONl5XH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlVgONl5XH blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tlVgONl5XH .mbr-text,
.cid-tlVgONl5XH .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tlVgONl5XH footer {
  font-style: normal;
}
.cid-tlVgONl5XH footer P {
  color: #f95908;
}
.cid-tlVgONl5XH footer SPAN {
  color: #f95908;
}
.cid-tg72tzO9EN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tg72tzO9EN .images-container.container-fluid {
  padding: 0;
}
.cid-tg72tzO9EN .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tg72tzO9EN .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tg72tzO9EN .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tg72tzO9EN .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tg72tzO9EN .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tg72tzO9EN .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tg72tzO9EN .img-item {
    width: 100% !important;
  }
  .cid-tg72tzO9EN .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tg72tzO9EN P {
  color: #767676;
}
.cid-tg72uKz76J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tg72uKz76J blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tg72uKz76J .mbr-text,
.cid-tg72uKz76J .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tg72uKz76J footer {
  font-style: normal;
}
.cid-tg72uKz76J footer P {
  color: #f95908;
}
.cid-t6oWZMLcxp {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-t6oWZMLcxp .images-container.container-fluid {
  padding: 0;
}
.cid-t6oWZMLcxp .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-t6oWZMLcxp .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-t6oWZMLcxp .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-t6oWZMLcxp .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-t6oWZMLcxp .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-t6oWZMLcxp .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-t6oWZMLcxp .img-item {
    width: 100% !important;
  }
  .cid-t6oWZMLcxp .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-t6oWZMLcxp P {
  color: #767676;
}
.cid-sZ6eVMfEHP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZ6eVMfEHP blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sZ6eVMfEHP .mbr-text,
.cid-sZ6eVMfEHP .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sZ6eVMfEHP footer {
  font-style: normal;
}
.cid-sZ6eVMfEHP footer P {
  color: #f95908;
}
.cid-t1JB7B635U {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t1JB7B635U .images-container.container-fluid {
  padding: 0;
}
.cid-t1JB7B635U .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-t1JB7B635U .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-t1JB7B635U .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-t1JB7B635U .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-t1JB7B635U .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-t1JB7B635U .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-t1JB7B635U .img-item {
    width: 100% !important;
  }
  .cid-t1JB7B635U .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-t1JB7B635U P {
  color: #767676;
}
.cid-t1JB8EeVhB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t1JB8EeVhB blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-t1JB8EeVhB .mbr-text,
.cid-t1JB8EeVhB .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-t1JB8EeVhB footer {
  font-style: normal;
}
.cid-t1JB8EeVhB footer P {
  color: #f95908;
}
.cid-t1JBb7VASA {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t1JBb7VASA .images-container.container-fluid {
  padding: 0;
}
.cid-t1JBb7VASA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-t1JBb7VASA .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-t1JBb7VASA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-t1JBb7VASA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-t1JBb7VASA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-t1JBb7VASA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-t1JBb7VASA .img-item {
    width: 100% !important;
  }
  .cid-t1JBb7VASA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-t1JBb7VASA P {
  color: #767676;
}
.cid-t1JBc9ivJh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t1JBc9ivJh blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-t1JBc9ivJh .mbr-text,
.cid-t1JBc9ivJh .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-t1JBc9ivJh footer {
  font-style: normal;
}
.cid-t1JBc9ivJh footer P {
  color: #f95908;
}
.cid-tjytZEeGOf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjytZEeGOf .mbr-text,
.cid-tjytZEeGOf blockquote {
  color: #767676;
}
.cid-tjytZEeGOf .mbr-text DIV {
  text-align: left;
}
.cid-tjytZEeGOf .mbr-text {
  color: #ffffff;
}
.cid-sTnKgclEjA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f95908;
}
.cid-sTnKgclEjA .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sTnKgclEjA .mbr-section-btn,
  .cid-sTnKgclEjA .mbr-section-subtitle,
  .cid-sTnKgclEjA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tgczzdcKRK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgczzdcKRK .mbr-text,
.cid-tgczzdcKRK blockquote {
  color: #767676;
}
.cid-tgczzdcKRK .mbr-text DIV {
  text-align: left;
}
.cid-tgczAs6JaJ {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-v1jnpUnKc5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v1jnpUnKc5 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-v1jnpUnKc5 .mbr-text,
.cid-v1jnpUnKc5 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-v1jnpUnKc5 footer {
  font-style: normal;
}
.cid-v1jnpUnKc5 footer P {
  color: #f95908;
}
.cid-v1jnpUnKc5 footer SPAN {
  color: #f95908;
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKEU5DAIzL {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/c-bundenbach-fossilien-crinoid-header-small-986x500.webp");
}
.cid-rKEU5DAIzL .mbr-overlay {
  background: #ffffff;
}
.cid-rKEU5DAIzL .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rKEU5DAIzL .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rKEU5DAIzL .mbr-section-title B {
  color: #f95908;
}
.cid-rKEU5DAIzL .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rKEU5DAIzL .mbr-section-title FONT {
  color: #ffffff;
}
.cid-qLfDegkT1d {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qLfDegkT1d .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qLfDegkT1d .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-qLfDegkT1d .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qLfDegkT1d .inner-container {
    width: 100% !important;
  }
}
.cid-qLfDegZj32 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLfDegZj32 .mbr-text {
  color: #767676;
}
.cid-qLfDehBGWk {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qLfDehBGWk .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qLfDehBGWk .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-qLfDehBGWk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qLfDehBGWk .inner-container {
    width: 100% !important;
  }
}
.cid-qLfDeig8De {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qLfDeig8De .mbr-text {
  color: #767676;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKESC0byQA {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/c-bundenbach-fossilien-crinoid-header-small-986x500.webp");
}
.cid-rKESC0byQA .mbr-overlay {
  background: #ffffff;
}
.cid-rKESC0byQA .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rKESC0byQA .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rKESC0byQA .mbr-section-title B {
  color: #f95908;
}
.cid-rKESC0byQA .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rKESC0byQA .mbr-section-title FONT {
  color: #ffffff;
}
.cid-qLeanNgi9h {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qLeanNgi9h .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qLeanNgi9h .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-qLeanNgi9h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qLeanNgi9h .inner-container {
    width: 100% !important;
  }
}
.cid-qLeanNPRot {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLeanNPRot .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-rLdq62SHlV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rLdq62SHlV .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-rLdq62SHlV .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rLdq62SHlV input::-webkit-input-placeholder {
  color: #000000;
}
.cid-rLdq62SHlV input::-moz-placeholder {
  color: #000000;
}
.cid-rLdq62SHlV textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-rLdq62SHlV textarea::-moz-placeholder {
  color: #000000;
}
.cid-rLdq62SHlV .mbr-section-subtitle {
  color: #767676;
}
.cid-qLeanP7rUS {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qLeanP7rUS .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-qLemrmJZ24 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qLemrmJZ24 .row-element,
.cid-qLemrmJZ24 .image-element {
  padding: 0;
}
.cid-qLemrmJZ24 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qLemrmJZ24 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qLemrmJZ24 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qLemrmJZ24 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qLemrmJZ24 .mbr-title,
  .cid-qLemrmJZ24 .mbr-text,
  .cid-qLemrmJZ24 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qLemrmJZ24 .mbr-text,
.cid-qLemrmJZ24 .mbr-section-btn {
  color: #232323;
}
.cid-qLemrmJZ24 .mbr-title {
  color: #767676;
}
.cid-qLemYad4pW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qLemYad4pW .counter-container {
  color: #767676;
}
.cid-qLemYad4pW .counter-container ul {
  margin-bottom: 0;
}
.cid-qLemYad4pW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-qLemYad4pW .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f95908;
  background: linear-gradient(135deg, #f95908, #ffffff);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-qLeqS5PGR9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qLeqS5PGR9 .mbr-section-subtitle {
  color: #767676;
}
.cid-qLeqS5PGR9 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #f95908;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-qLeqS5PGR9 .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-qLeqS5PGR9 .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-qLeqS5PGR9 .mbr-iconfont-social:hover:before {
  background: #f95908;
  transition: all .3s;
  border-color: transparent;
}
.cid-qLeqS5PGR9 .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-qLeqS5PGR9 .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKETmU46xj {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/c-bundenbach-fossilien-crinoid-header-small-986x500.webp");
}
.cid-rKETmU46xj .mbr-overlay {
  background: #ffffff;
}
.cid-rKETmU46xj .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rKETmU46xj .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rKETmU46xj .mbr-section-title B {
  color: #f95908;
}
.cid-rKETmU46xj .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rKETmU46xj .mbr-section-title FONT {
  color: #ffffff;
}
.cid-qLeetkYAS3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qLeetkYAS3 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qLeetkYAS3 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-qLeetkYAS3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qLeetkYAS3 .inner-container {
    width: 100% !important;
  }
}
.cid-u0Gitdqwlh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0Gitdqwlh .mbr-text {
  color: #767676;
}
.cid-u0Gi0udBxr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u0Gi0udBxr .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-u0Gi0udBxr .btn {
  margin: 0 0 .5rem 0;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-skcXzuLhJ5 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-bundenbach-fossilien-astero-header-800x370.webp");
}
.cid-skcXzuLhJ5 .mbr-overlay {
  background: #ffffff;
}
.cid-skcXzuLhJ5 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-skcXzuLhJ5 .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-skcXzuLhJ5 .mbr-section-title B {
  color: #f95908;
}
.cid-skcXzuLhJ5 .mbr-section-subtitle B {
  color: #f95908;
}
.cid-skcXzuLhJ5 .mbr-section-title FONT {
  color: #ffffff;
}
.cid-r6693xx78t {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r6693xx78t .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-r6693xx78t .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-r6693xx78t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-r6693xx78t .inner-container {
    width: 100% !important;
  }
}
.cid-tcq4T5Jiy8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcq4T5Jiy8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tcq4T5Jiy8 .mbr-section-title {
  color: #767676;
}
.cid-tcq65sXB1b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcq65sXB1b .mbr-text,
.cid-tcq65sXB1b blockquote {
  color: #767676;
}
.cid-tcq65sXB1b .mbr-text DIV {
  text-align: left;
}
.cid-tO97RqkjMm {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tO97RqkjMm .images-container.container-fluid {
  padding: 0;
}
.cid-tO97RqkjMm .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tO97RqkjMm .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tO97RqkjMm .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tO97RqkjMm .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tO97RqkjMm .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tO97RqkjMm .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tO97RqkjMm .img-item {
    width: 100% !important;
  }
  .cid-tO97RqkjMm .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tO97RqkjMm P {
  color: #767676;
}
.cid-tO97TQlKvQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tO97TQlKvQ blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tO97TQlKvQ .mbr-text,
.cid-tO97TQlKvQ .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tO97TQlKvQ footer {
  font-style: normal;
}
.cid-tO97TQlKvQ footer P {
  color: #f95908;
}
.cid-tcqe4064O2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqe4064O2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqe4064O2 .mbr-section-title {
  color: #767676;
}
.cid-tcqe5A5K11 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcqe5A5K11 .mbr-text,
.cid-tcqe5A5K11 blockquote {
  color: #767676;
}
.cid-tcqe5A5K11 .mbr-text DIV {
  text-align: left;
}
.cid-tIQYntWfXd {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tIQYntWfXd .images-container.container-fluid {
  padding: 0;
}
.cid-tIQYntWfXd .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tIQYntWfXd .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tIQYntWfXd .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tIQYntWfXd .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tIQYntWfXd .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tIQYntWfXd .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tIQYntWfXd .img-item {
    width: 100% !important;
  }
  .cid-tIQYntWfXd .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tIQYntWfXd P {
  color: #767676;
}
.cid-tIQYnYDpC2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQYnYDpC2 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tIQYnYDpC2 .mbr-text,
.cid-tIQYnYDpC2 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tIQYnYDpC2 footer {
  font-style: normal;
}
.cid-tIQYnYDpC2 footer P {
  color: #f95908;
}
.cid-sTbYlMYsDb {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sTbYlMYsDb .images-container.container-fluid {
  padding: 0;
}
.cid-sTbYlMYsDb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-sTbYlMYsDb .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sTbYlMYsDb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sTbYlMYsDb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sTbYlMYsDb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sTbYlMYsDb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sTbYlMYsDb .img-item {
    width: 100% !important;
  }
  .cid-sTbYlMYsDb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-sTbYlMYsDb P {
  color: #767676;
}
.cid-r669pvBJHi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r669pvBJHi blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-r669pvBJHi .mbr-text,
.cid-r669pvBJHi .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-r669pvBJHi footer {
  font-style: normal;
}
.cid-r669pvBJHi footer P {
  color: #f95908;
}
.cid-tulTYGEyk2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tulTYGEyk2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tulTYGEyk2 .mbr-section-title {
  color: #767676;
}
.cid-tulWh08bk1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tulWh08bk1 .mbr-text,
.cid-tulWh08bk1 blockquote {
  color: #767676;
}
.cid-tulWh08bk1 .mbr-text DIV {
  text-align: left;
}
.cid-tulU4hcrxg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tulU4hcrxg blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tulU4hcrxg .mbr-text,
.cid-tulU4hcrxg .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tulU4hcrxg footer {
  font-style: normal;
}
.cid-tulU4hcrxg footer P {
  color: #f95908;
}
.cid-tulU4hcrxg footer SPAN {
  color: #f95908;
}
.cid-tcqdabbpcR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqdabbpcR .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqdabbpcR .mbr-section-title {
  color: #767676;
}
.cid-tulVsLSkdQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tulVsLSkdQ .mbr-text,
.cid-tulVsLSkdQ blockquote {
  color: #767676;
}
.cid-tulVsLSkdQ .mbr-text DIV {
  text-align: left;
}
.cid-uCwsnmF1Em {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uCwsnmF1Em blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uCwsnmF1Em .mbr-text,
.cid-uCwsnmF1Em .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uCwsnmF1Em footer {
  font-style: normal;
}
.cid-uCwsnmF1Em footer P {
  color: #f95908;
}
.cid-uCwsnmF1Em footer SPAN {
  color: #f95908;
}
.cid-tcqssKQrvY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqssKQrvY .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqssKQrvY .mbr-section-title {
  color: #767676;
}
.cid-tcqsuo1FvT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcqsuo1FvT .mbr-text,
.cid-tcqsuo1FvT blockquote {
  color: #767676;
}
.cid-tcqsuo1FvT .mbr-text DIV {
  text-align: left;
}
.cid-tDdeNYoyC0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tDdeNYoyC0 .images-container.container-fluid {
  padding: 0;
}
.cid-tDdeNYoyC0 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tDdeNYoyC0 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tDdeNYoyC0 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tDdeNYoyC0 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tDdeNYoyC0 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tDdeNYoyC0 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tDdeNYoyC0 .img-item {
    width: 100% !important;
  }
  .cid-tDdeNYoyC0 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tDdeNYoyC0 P {
  color: #767676;
}
.cid-tDdeQ6skPh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDdeQ6skPh blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tDdeQ6skPh .mbr-text,
.cid-tDdeQ6skPh .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tDdeQ6skPh footer {
  font-style: normal;
}
.cid-tDdeQ6skPh footer P {
  color: #f95908;
}
.cid-tDdeQ6skPh footer SPAN {
  color: #f95908;
}
.cid-tjjd27RhcN {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tjjd27RhcN .images-container.container-fluid {
  padding: 0;
}
.cid-tjjd27RhcN .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tjjd27RhcN .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tjjd27RhcN .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tjjd27RhcN .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tjjd27RhcN .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tjjd27RhcN .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tjjd27RhcN .img-item {
    width: 100% !important;
  }
  .cid-tjjd27RhcN .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tjjd27RhcN P {
  color: #767676;
}
.cid-tjjd2GZny4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjjd2GZny4 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tjjd2GZny4 .mbr-text,
.cid-tjjd2GZny4 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tjjd2GZny4 footer {
  font-style: normal;
}
.cid-tjjd2GZny4 footer P {
  color: #f95908;
}
.cid-tjjd2GZny4 footer SPAN {
  color: #f95908;
}
.cid-t4uN86jryX {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-t4uN86jryX .images-container.container-fluid {
  padding: 0;
}
.cid-t4uN86jryX .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-t4uN86jryX .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-t4uN86jryX .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-t4uN86jryX .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-t4uN86jryX .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-t4uN86jryX .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-t4uN86jryX .img-item {
    width: 100% !important;
  }
  .cid-t4uN86jryX .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-t4uN86jryX P {
  color: #767676;
}
.cid-tc7ksm85DK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ksm85DK blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ksm85DK .mbr-text,
.cid-tc7ksm85DK .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc7ksm85DK footer {
  font-style: normal;
}
.cid-tc7ksm85DK footer P {
  color: #f95908;
}
.cid-tc7ksm85DK footer SPAN {
  color: #f95908;
}
.cid-tcqxfiJsPZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqxfiJsPZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqxfiJsPZ .mbr-section-title {
  color: #767676;
}
.cid-tcqxgogvCj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcqxgogvCj .mbr-text,
.cid-tcqxgogvCj blockquote {
  color: #767676;
}
.cid-tcqxgogvCj .mbr-text DIV {
  text-align: left;
}
.cid-t7e8SZlXts {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t7e8SZlXts .images-container.container-fluid {
  padding: 0;
}
.cid-t7e8SZlXts .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-t7e8SZlXts .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-t7e8SZlXts .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-t7e8SZlXts .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-t7e8SZlXts .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-t7e8SZlXts .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-t7e8SZlXts .img-item {
    width: 100% !important;
  }
  .cid-t7e8SZlXts .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tx8ZscBDyt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx8ZscBDyt blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tx8ZscBDyt .mbr-text,
.cid-tx8ZscBDyt .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tx8ZscBDyt footer {
  font-style: normal;
}
.cid-tx8ZscBDyt footer P {
  color: #f95908;
}
.cid-tx8ZscBDyt footer SPAN {
  color: #f95908;
}
.cid-tcr5zF4ugl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcr5zF4ugl .mbr-section-subtitle {
  color: #767676;
}
.cid-tcr5zF4ugl .mbr-section-title {
  color: #767676;
}
.cid-tcr5B7vReq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcr5B7vReq .mbr-text,
.cid-tcr5B7vReq blockquote {
  color: #767676;
}
.cid-tcr5B7vReq .mbr-text DIV {
  text-align: left;
}
.cid-tg75DmGBoS {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tg75DmGBoS .images-container.container-fluid {
  padding: 0;
}
.cid-tg75DmGBoS .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tg75DmGBoS .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tg75DmGBoS .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tg75DmGBoS .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tg75DmGBoS .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tg75DmGBoS .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tg75DmGBoS .img-item {
    width: 100% !important;
  }
  .cid-tg75DmGBoS .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tg75DmGBoS P {
  color: #767676;
}
.cid-tg75EfBgKd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tg75EfBgKd blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tg75EfBgKd .mbr-text,
.cid-tg75EfBgKd .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tg75EfBgKd footer {
  font-style: normal;
}
.cid-tg75EfBgKd footer P {
  color: #f95908;
}
.cid-tcqzLQKOEX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqzLQKOEX .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqzLQKOEX .mbr-section-title {
  color: #767676;
}
.cid-tcqzMZlwJQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcqzMZlwJQ .mbr-text,
.cid-tcqzMZlwJQ blockquote {
  color: #767676;
}
.cid-tcqzMZlwJQ .mbr-text DIV {
  text-align: left;
}
.cid-tIQX4dpYne {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tIQX4dpYne .images-container.container-fluid {
  padding: 0;
}
.cid-tIQX4dpYne .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tIQX4dpYne .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tIQX4dpYne .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tIQX4dpYne .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tIQX4dpYne .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tIQX4dpYne .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tIQX4dpYne .img-item {
    width: 100% !important;
  }
  .cid-tIQX4dpYne .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tIQX4dpYne P {
  color: #767676;
}
.cid-tIQX6yjt5N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQX6yjt5N blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tIQX6yjt5N .mbr-text,
.cid-tIQX6yjt5N .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tIQX6yjt5N footer {
  font-style: normal;
}
.cid-tIQX6yjt5N footer P {
  color: #f95908;
}
.cid-tcqzOhGXSY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqzOhGXSY .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqzOhGXSY .mbr-section-title {
  color: #767676;
}
.cid-tcr4doOY5T {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcr4doOY5T .mbr-text,
.cid-tcr4doOY5T blockquote {
  color: #767676;
}
.cid-tcr4doOY5T .mbr-text DIV {
  text-align: left;
}
.cid-svCvulR2vX {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-svCvulR2vX .images-container.container-fluid {
  padding: 0;
}
.cid-svCvulR2vX .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-svCvulR2vX .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-svCvulR2vX .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-svCvulR2vX .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-svCvulR2vX .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-svCvulR2vX .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-svCvulR2vX .img-item {
    width: 100% !important;
  }
  .cid-svCvulR2vX .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-svCvulR2vX P {
  color: #767676;
}
.cid-tlV9x3hthF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlV9x3hthF blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tlV9x3hthF .mbr-text,
.cid-tlV9x3hthF .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tlV9x3hthF footer {
  font-style: normal;
}
.cid-tlV9x3hthF footer P {
  color: #f95908;
}
.cid-tcrc9ZRE4C {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcrc9ZRE4C .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tcrc9ZRE4C .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-tcrc9ZRE4C .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tcrc9ZRE4C .inner-container {
    width: 100% !important;
  }
}
.cid-tcqODbIsOA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqODbIsOA .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqODbIsOA .mbr-section-title {
  color: #767676;
}
.cid-tcqOGrxPS4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcqOGrxPS4 .mbr-text,
.cid-tcqOGrxPS4 blockquote {
  color: #767676;
}
.cid-tcqOGrxPS4 .mbr-text DIV {
  text-align: left;
}
.cid-sTcw6N7PCC {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sTcw6N7PCC .images-container.container-fluid {
  padding: 0;
}
.cid-sTcw6N7PCC .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sTcw6N7PCC .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sTcw6N7PCC .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sTcw6N7PCC .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sTcw6N7PCC .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sTcw6N7PCC .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sTcw6N7PCC .img-item {
    width: 100% !important;
  }
  .cid-sTcw6N7PCC .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sTcw6N7PCC P {
  color: #767676;
}
.cid-sTcw7CoBxW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTcw7CoBxW blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sTcw7CoBxW .mbr-text,
.cid-sTcw7CoBxW .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-sTcw7CoBxW footer {
  font-style: normal;
}
.cid-sTcw7CoBxW footer P {
  color: #f95908;
}
.cid-tcqOEnx7v6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcqOEnx7v6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tcqOEnx7v6 .mbr-section-title {
  color: #767676;
}
.cid-tcqOFr1Pdg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcqOFr1Pdg .mbr-text,
.cid-tcqOFr1Pdg blockquote {
  color: #767676;
}
.cid-tcqOFr1Pdg .mbr-text DIV {
  text-align: left;
}
.cid-tlV6Vbdqli {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlV6Vbdqli blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tlV6Vbdqli .mbr-text,
.cid-tlV6Vbdqli .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tlV6Vbdqli footer {
  font-style: normal;
}
.cid-tlV6Vbdqli footer P {
  color: #f95908;
}
.cid-tlV6Vbdqli footer SPAN {
  color: #f95908;
}
.cid-tQBDnqYnTM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tQBDnqYnTM .mbr-section-subtitle {
  color: #767676;
}
.cid-tQBDnqYnTM .mbr-section-title {
  color: #767676;
}
.cid-tQBDpr0sCE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tQBDpr0sCE .mbr-text,
.cid-tQBDpr0sCE blockquote {
  color: #767676;
}
.cid-tQBDpr0sCE .mbr-text DIV {
  text-align: left;
}
.cid-uQzgMJzhKd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uQzgMJzhKd blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uQzgMJzhKd .mbr-text,
.cid-uQzgMJzhKd .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uQzgMJzhKd footer {
  font-style: normal;
}
.cid-uQzgMJzhKd footer P {
  color: #f95908;
}
.cid-uQzgMJzhKd footer SPAN {
  color: #f95908;
}
.cid-tUnoc9q09S {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tUnoc9q09S .mbr-section-subtitle {
  color: #767676;
}
.cid-tUnoc9q09S .mbr-section-title {
  color: #767676;
}
.cid-tUnodSSBBR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUnodSSBBR .mbr-text,
.cid-tUnodSSBBR blockquote {
  color: #767676;
}
.cid-tUnodSSBBR .mbr-text DIV {
  text-align: left;
}
.cid-uQzg5AAMUh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uQzg5AAMUh blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uQzg5AAMUh .mbr-text,
.cid-uQzg5AAMUh .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uQzg5AAMUh footer {
  font-style: normal;
}
.cid-uQzg5AAMUh footer P {
  color: #f95908;
}
.cid-uQzg5AAMUh footer SPAN {
  color: #f95908;
}
.cid-tjytDg9qPI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjytDg9qPI .mbr-text,
.cid-tjytDg9qPI blockquote {
  color: #767676;
}
.cid-tjytDg9qPI .mbr-text DIV {
  text-align: left;
}
.cid-tjytDg9qPI .mbr-text {
  color: #ffffff;
}
.cid-sTbLDVzQdI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f95908;
}
.cid-sTbLDVzQdI .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sTbLDVzQdI .mbr-section-btn,
  .cid-sTbLDVzQdI .mbr-section-subtitle,
  .cid-sTbLDVzQdI .mbr-section-title {
    text-align: center !important;
  }
}
.cid-skbRuFO4YY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-skbRuFO4YY .mbr-text,
.cid-skbRuFO4YY blockquote {
  color: #767676;
}
.cid-skbRuFO4YY .mbr-text DIV {
  text-align: left;
}
.cid-tc7l6hNbRv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc7l6hNbRv .mbr-text,
.cid-tc7l6hNbRv blockquote {
  color: #767676;
}
.cid-tc7l6hNbRv .mbr-text DIV {
  text-align: left;
}
.cid-tc3MjMQoF0 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tb7m5jbMxK {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-bundenbach-fossilien-astero-header-800x370.webp");
}
.cid-tb7m5jbMxK .mbr-overlay {
  background: #ffffff;
}
.cid-tb7m5jbMxK .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-tb7m5jbMxK .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-tb7m5jbMxK .mbr-section-title B {
  color: #f95908;
}
.cid-tb7m5jbMxK .mbr-section-subtitle B {
  color: #f95908;
}
.cid-tb7m5jbMxK .mbr-section-title FONT {
  color: #ffffff;
}
.cid-tb7m5jIfQ6 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tb7m5jIfQ6 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tb7m5jIfQ6 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-tb7m5jIfQ6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tb7m5jIfQ6 .inner-container {
    width: 100% !important;
  }
}
.cid-tx919d81oN {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx919d81oN .mbr-section-subtitle {
  color: #767676;
}
.cid-tx919d81oN .mbr-section-title {
  color: #767676;
}
.cid-tb7m5woNNo {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5woNNo .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5woNNo .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tb7m5woNNo .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tb7m5woNNo .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5woNNo .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5woNNo .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5woNNo .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5woNNo .img-item {
    width: 100% !important;
  }
  .cid-tb7m5woNNo .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tb7m5woNNo P {
  color: #767676;
}
.cid-tb7m5wLI03 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5wLI03 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5wLI03 .mbr-text,
.cid-tb7m5wLI03 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5wLI03 footer {
  font-style: normal;
}
.cid-tb7m5wLI03 footer P {
  color: #f95908;
}
.cid-tb7m5wLI03 footer SPAN {
  color: #f95908;
}
.cid-tXhWJfmzD7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXhWJfmzD7 .mbr-section-subtitle {
  color: #767676;
}
.cid-tXhWJfmzD7 .mbr-section-title {
  color: #767676;
}
.cid-tXhWKJkPhQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tXhWKJkPhQ .images-container.container-fluid {
  padding: 0;
}
.cid-tXhWKJkPhQ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tXhWKJkPhQ .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tXhWKJkPhQ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tXhWKJkPhQ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tXhWKJkPhQ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tXhWKJkPhQ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXhWKJkPhQ .img-item {
    width: 100% !important;
  }
  .cid-tXhWKJkPhQ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tXhWKJkPhQ P {
  color: #767676;
}
.cid-tXhWLFW1t3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXhWLFW1t3 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tXhWLFW1t3 .mbr-text,
.cid-tXhWLFW1t3 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tXhWLFW1t3 footer {
  font-style: normal;
}
.cid-tXhWLFW1t3 footer P {
  color: #f95908;
}
.cid-tXhWLFW1t3 footer SPAN {
  color: #f95908;
}
.cid-tx91aMKug6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx91aMKug6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tx91aMKug6 .mbr-section-title {
  color: #767676;
}
.cid-tb7m5x7G8j {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5x7G8j .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5x7G8j .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tb7m5x7G8j .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tb7m5x7G8j .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5x7G8j .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5x7G8j .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5x7G8j .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5x7G8j .img-item {
    width: 100% !important;
  }
  .cid-tb7m5x7G8j .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tb7m5x7G8j P {
  color: #767676;
}
.cid-tb7m5xtBoT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5xtBoT blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5xtBoT .mbr-text,
.cid-tb7m5xtBoT .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5xtBoT footer {
  font-style: normal;
}
.cid-tb7m5xtBoT footer P {
  color: #f95908;
}
.cid-tb7m5vbKhT {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5vbKhT .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5vbKhT .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tb7m5vbKhT .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tb7m5vbKhT .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5vbKhT .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5vbKhT .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5vbKhT .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5vbKhT .img-item {
    width: 100% !important;
  }
  .cid-tb7m5vbKhT .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tb7m5vbKhT P {
  color: #767676;
}
.cid-tb7m5vwcJ2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5vwcJ2 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5vwcJ2 .mbr-text,
.cid-tb7m5vwcJ2 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5vwcJ2 footer {
  font-style: normal;
}
.cid-tb7m5vwcJ2 footer P {
  color: #f95908;
}
.cid-tb7m5vwcJ2 footer SPAN {
  color: #f95908;
}
.cid-tx91TcZIU9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx91TcZIU9 .mbr-section-subtitle {
  color: #767676;
}
.cid-tx91TcZIU9 .mbr-section-title {
  color: #767676;
}
.cid-tx90oklJV2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tx90oklJV2 .images-container.container-fluid {
  padding: 0;
}
.cid-tx90oklJV2 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tx90oklJV2 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tx90oklJV2 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tx90oklJV2 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tx90oklJV2 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tx90oklJV2 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tx90oklJV2 .img-item {
    width: 100% !important;
  }
  .cid-tx90oklJV2 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tx90oklJV2 P {
  color: #767676;
}
.cid-tx90oSQWQj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx90oSQWQj blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tx90oSQWQj .mbr-text,
.cid-tx90oSQWQj .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tx90oSQWQj footer {
  font-style: normal;
}
.cid-tx90oSQWQj footer P {
  color: #f95908;
}
.cid-tx90oSQWQj footer SPAN {
  color: #f95908;
}
.cid-tb7m5sYFdA {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5sYFdA .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5sYFdA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tb7m5sYFdA .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tb7m5sYFdA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5sYFdA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5sYFdA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5sYFdA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5sYFdA .img-item {
    width: 100% !important;
  }
  .cid-tb7m5sYFdA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tb7m5sYFdA P {
  color: #767676;
}
.cid-tb7m5te2G1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5te2G1 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5te2G1 .mbr-text,
.cid-tb7m5te2G1 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5te2G1 footer {
  font-style: normal;
}
.cid-tb7m5te2G1 footer P {
  color: #f95908;
}
.cid-tb7m5te2G1 footer SPAN {
  color: #f95908;
}
.cid-tx923VfZQF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx923VfZQF .mbr-section-subtitle {
  color: #767676;
}
.cid-tx923VfZQF .mbr-section-title {
  color: #767676;
}
.cid-tx90pNmHPZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tx90pNmHPZ .images-container.container-fluid {
  padding: 0;
}
.cid-tx90pNmHPZ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tx90pNmHPZ .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tx90pNmHPZ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tx90pNmHPZ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tx90pNmHPZ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tx90pNmHPZ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tx90pNmHPZ .img-item {
    width: 100% !important;
  }
  .cid-tx90pNmHPZ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tx90qCFPB7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx90qCFPB7 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tx90qCFPB7 .mbr-text,
.cid-tx90qCFPB7 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tx90qCFPB7 footer {
  font-style: normal;
}
.cid-tx90qCFPB7 footer P {
  color: #f95908;
}
.cid-tx90qCFPB7 footer SPAN {
  color: #f95908;
}
.cid-tx92esVd4s {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx92esVd4s .mbr-section-subtitle {
  color: #767676;
}
.cid-tx92esVd4s .mbr-section-title {
  color: #767676;
}
.cid-tb7m5tuXba {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5tuXba .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5tuXba .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tb7m5tuXba .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tb7m5tuXba .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5tuXba .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5tuXba .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5tuXba .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5tuXba .img-item {
    width: 100% !important;
  }
  .cid-tb7m5tuXba .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tb7m5tuXba P {
  color: #767676;
}
.cid-tb7m5tMXBs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5tMXBs blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5tMXBs .mbr-text,
.cid-tb7m5tMXBs .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5tMXBs footer {
  font-style: normal;
}
.cid-tb7m5tMXBs footer P {
  color: #f95908;
}
.cid-tb7m5tMXBs footer SPAN {
  color: #f95908;
}
.cid-tb7m5zboFg {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5zboFg .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5zboFg .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tb7m5zboFg .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tb7m5zboFg .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5zboFg .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5zboFg .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5zboFg .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5zboFg .img-item {
    width: 100% !important;
  }
  .cid-tb7m5zboFg .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tb7m5zboFg P {
  color: #767676;
}
.cid-tb7m5zxtaE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5zxtaE blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5zxtaE .mbr-text,
.cid-tb7m5zxtaE .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5zxtaE footer {
  font-style: normal;
}
.cid-tb7m5zxtaE footer P {
  color: #f95908;
}
.cid-tx92lvNCmp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx92lvNCmp .mbr-section-subtitle {
  color: #767676;
}
.cid-tx92lvNCmp .mbr-section-title {
  color: #767676;
}
.cid-tb7m5u2xqm {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5u2xqm .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5u2xqm .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tb7m5u2xqm .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tb7m5u2xqm .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5u2xqm .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5u2xqm .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5u2xqm .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5u2xqm .img-item {
    width: 100% !important;
  }
  .cid-tb7m5u2xqm .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tb7m5u2xqm P {
  color: #767676;
}
.cid-tb7m5ujdvY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5ujdvY blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5ujdvY .mbr-text,
.cid-tb7m5ujdvY .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5ujdvY footer {
  font-style: normal;
}
.cid-tb7m5ujdvY footer P {
  color: #f95908;
}
.cid-tb7m5ujdvY footer SPAN {
  color: #f95908;
}
.cid-tx92rLU4g4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx92rLU4g4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tx92rLU4g4 .mbr-section-title {
  color: #767676;
}
.cid-tb7m5vOwHF {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5vOwHF .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5vOwHF .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tb7m5vOwHF .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tb7m5vOwHF .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5vOwHF .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5vOwHF .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5vOwHF .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5vOwHF .img-item {
    width: 100% !important;
  }
  .cid-tb7m5vOwHF .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tb7m5vOwHF P {
  color: #767676;
}
.cid-tb7m5w80qz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5w80qz blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5w80qz .mbr-text,
.cid-tb7m5w80qz .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5w80qz footer {
  font-style: normal;
}
.cid-tb7m5w80qz footer P {
  color: #f95908;
}
.cid-tb7m5xPdwR {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tb7m5xPdwR .images-container.container-fluid {
  padding: 0;
}
.cid-tb7m5xPdwR .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tb7m5xPdwR .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tb7m5xPdwR .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tb7m5xPdwR .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tb7m5xPdwR .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tb7m5xPdwR .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tb7m5xPdwR .img-item {
    width: 100% !important;
  }
  .cid-tb7m5xPdwR .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tb7m5xPdwR P {
  color: #767676;
}
.cid-tb7m5ybfvE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5ybfvE blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tb7m5ybfvE .mbr-text,
.cid-tb7m5ybfvE .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tb7m5ybfvE footer {
  font-style: normal;
}
.cid-tb7m5ybfvE footer P {
  color: #f95908;
}
.cid-tb7m5ybfvE footer SPAN {
  color: #f95908;
}
.cid-tIQOLVu331 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQOLVu331 .mbr-section-subtitle {
  color: #767676;
}
.cid-tIQOLVu331 .mbr-section-title {
  color: #767676;
}
.cid-tIQONbbXkq {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tIQONbbXkq .images-container.container-fluid {
  padding: 0;
}
.cid-tIQONbbXkq .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tIQONbbXkq .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tIQONbbXkq .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tIQONbbXkq .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tIQONbbXkq .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tIQONbbXkq .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tIQONbbXkq .img-item {
    width: 100% !important;
  }
  .cid-tIQONbbXkq .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tIQONbbXkq P {
  color: #767676;
}
.cid-tIQONUM5Ce {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQONUM5Ce blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tIQONUM5Ce .mbr-text,
.cid-tIQONUM5Ce .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tIQONUM5Ce footer {
  font-style: normal;
}
.cid-tIQONUM5Ce footer P {
  color: #f95908;
}
.cid-tIQONUM5Ce footer SPAN {
  color: #f95908;
}
.cid-tWfKoWpjpv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tWfKoWpjpv .mbr-section-subtitle {
  color: #767676;
}
.cid-tWfKoWpjpv .mbr-section-title {
  color: #767676;
}
.cid-tWfKpJp6Mv {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tWfKpJp6Mv .images-container.container-fluid {
  padding: 0;
}
.cid-tWfKpJp6Mv .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tWfKpJp6Mv .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tWfKpJp6Mv .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tWfKpJp6Mv .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tWfKpJp6Mv .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tWfKpJp6Mv .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tWfKpJp6Mv .img-item {
    width: 100% !important;
  }
  .cid-tWfKpJp6Mv .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tWfKpJp6Mv P {
  color: #767676;
}
.cid-tWfKqwDt52 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tWfKqwDt52 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tWfKqwDt52 .mbr-text,
.cid-tWfKqwDt52 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tWfKqwDt52 footer {
  font-style: normal;
}
.cid-tWfKqwDt52 footer P {
  color: #f95908;
}
.cid-tc3LJi25pY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tb7m5snEn4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f95908;
}
.cid-tb7m5snEn4 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tb7m5snEn4 .mbr-section-btn,
  .cid-tb7m5snEn4 .mbr-section-subtitle,
  .cid-tb7m5snEn4 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tc3KlRhQ7o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc3KlRhQ7o .mbr-text,
.cid-tc3KlRhQ7o blockquote {
  color: #767676;
}
.cid-tc3KlRhQ7o .mbr-text DIV {
  text-align: left;
}
.cid-tb7m5ARCXT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tb7m5ARCXT .mbr-section-subtitle {
  color: #767676;
}
.cid-tb7m5ARCXT .mbr-section-title {
  color: #767676;
}
.cid-tb7m5BfXqj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tb7m5BfXqj .mbr-text,
.cid-tb7m5BfXqj blockquote {
  color: #767676;
}
.cid-tb7m5BfXqj .mbr-text DIV {
  text-align: left;
}
.cid-tufrQ1ZhZs {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tufrQ1ZhZs .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tufrQ1ZhZs .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tufrQ1ZhZs .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tufrQ1ZhZs .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tufrQ1ZhZs .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tufrQ1ZhZs .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tufrQ1ZhZs .img-item {
    width: 100% !important;
  }
  .cid-tufrQ1ZhZs .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tufrQ1ZhZs P {
  color: #767676;
}
.cid-tb7m5CmCZU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tb7m5CmCZU .mbr-text,
.cid-tb7m5CmCZU blockquote {
  color: #767676;
}
.cid-tb7m5CmCZU .mbr-text DIV {
  text-align: left;
}
.cid-u0GxlU8mFy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-u0GxlU8mFy .mbr-section-subtitle {
  color: #767676;
}
.cid-u0GxlU8mFy .mbr-section-title {
  color: #767676;
}
.cid-u0GxmFY9GS {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tc7Zxu5Xoh {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-bundenbach-crnoids-header-1000x503.webp");
}
.cid-tc7Zxu5Xoh .mbr-overlay {
  background: #ffffff;
}
.cid-tc7Zxu5Xoh .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-tc7Zxu5Xoh .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-tc7Zxu5Xoh .mbr-section-title B {
  color: #f95908;
}
.cid-tc7Zxu5Xoh .mbr-section-subtitle B {
  color: #f95908;
}
.cid-tc7Zxu5Xoh .mbr-section-title FONT {
  color: #ffffff;
}
.cid-tc7Zxutflu {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tc7Zxutflu .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tc7Zxutflu .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-tc7Zxutflu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tc7Zxutflu .inner-container {
    width: 100% !important;
  }
}
.cid-tx95nzkx2F {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx95nzkx2F .mbr-section-subtitle {
  color: #767676;
}
.cid-tx95nzkx2F .mbr-section-title {
  color: #767676;
}
.cid-tum5RkWExI {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tum5RkWExI .images-container.container-fluid {
  padding: 0;
}
.cid-tum5RkWExI .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tum5RkWExI .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tum5RkWExI .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tum5RkWExI .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tum5RkWExI .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tum5RkWExI .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tum5RkWExI .img-item {
    width: 100% !important;
  }
  .cid-tum5RkWExI .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tum5RkWExI P {
  color: #767676;
}
.cid-tum5SxEtn6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tum5SxEtn6 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tum5SxEtn6 .mbr-text,
.cid-tum5SxEtn6 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tum5SxEtn6 footer {
  font-style: normal;
}
.cid-tum5SxEtn6 footer P {
  color: #f95908;
}
.cid-tum5SxEtn6 footer SPAN {
  color: #f95908;
}
.cid-tc7ZxI1de0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxI1de0 .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxI1de0 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tc7ZxI1de0 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tc7ZxI1de0 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxI1de0 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxI1de0 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxI1de0 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxI1de0 .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxI1de0 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tc7ZxI1de0 P {
  color: #767676;
}
.cid-tc7ZxIlmV8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxIlmV8 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxIlmV8 .mbr-text,
.cid-tc7ZxIlmV8 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc7ZxIlmV8 footer {
  font-style: normal;
}
.cid-tc7ZxIlmV8 footer P {
  color: #f95908;
}
.cid-tc7ZxIlmV8 footer SPAN {
  color: #f95908;
}
.cid-tx96bNEwhT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx96bNEwhT .mbr-section-subtitle {
  color: #767676;
}
.cid-tx96bNEwhT .mbr-section-title {
  color: #767676;
}
.cid-tOwQHAOSUn {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tOwQHAOSUn .images-container.container-fluid {
  padding: 0;
}
.cid-tOwQHAOSUn .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tOwQHAOSUn .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tOwQHAOSUn .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tOwQHAOSUn .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tOwQHAOSUn .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tOwQHAOSUn .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tOwQHAOSUn .img-item {
    width: 100% !important;
  }
  .cid-tOwQHAOSUn .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tOwQJUyvDc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tOwQJUyvDc blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tOwQJUyvDc .mbr-text,
.cid-tOwQJUyvDc .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tOwQJUyvDc footer {
  font-style: normal;
}
.cid-tOwQJUyvDc footer P {
  color: #f95908;
}
.cid-tum5O4zOJj {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tum5O4zOJj .images-container.container-fluid {
  padding: 0;
}
.cid-tum5O4zOJj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tum5O4zOJj .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tum5O4zOJj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tum5O4zOJj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tum5O4zOJj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tum5O4zOJj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tum5O4zOJj .img-item {
    width: 100% !important;
  }
  .cid-tum5O4zOJj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tum5OzcntT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tum5OzcntT blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tum5OzcntT .mbr-text,
.cid-tum5OzcntT .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tum5OzcntT footer {
  font-style: normal;
}
.cid-tum5OzcntT footer P {
  color: #f95908;
}
.cid-tum5OzcntT footer SPAN {
  color: #f95908;
}
.cid-tx96dbu9Yl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx96dbu9Yl .mbr-section-subtitle {
  color: #767676;
}
.cid-tx96dbu9Yl .mbr-section-title {
  color: #767676;
}
.cid-tc7ZxQI7yM {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxQI7yM .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxQI7yM .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxQI7yM .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxQI7yM .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxQI7yM .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxQI7yM .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxQI7yM .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxQI7yM .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxQI7yM .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxR3syk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxR3syk blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxR3syk .mbr-text,
.cid-tc7ZxR3syk .blockquote-quote {
  color: #767676;
}
.cid-tc7ZxR3syk footer {
  font-style: normal;
  color: #f95908;
}
.cid-tx96QFPyqv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx96QFPyqv .mbr-section-subtitle {
  color: #767676;
}
.cid-tx96QFPyqv .mbr-section-title {
  color: #767676;
}
.cid-tx95jiaIsb {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tx95jiaIsb .images-container.container-fluid {
  padding: 0;
}
.cid-tx95jiaIsb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tx95jiaIsb .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tx95jiaIsb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tx95jiaIsb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tx95jiaIsb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tx95jiaIsb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tx95jiaIsb .img-item {
    width: 100% !important;
  }
  .cid-tx95jiaIsb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tx95kbn2OC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx95kbn2OC blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tx95kbn2OC .mbr-text,
.cid-tx95kbn2OC .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tx95kbn2OC footer {
  font-style: normal;
}
.cid-tx95kbn2OC footer P {
  color: #f95908;
}
.cid-tx95kbn2OC footer SPAN {
  color: #f95908;
}
.cid-tc7ZxJmqD9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxJmqD9 .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxJmqD9 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tc7ZxJmqD9 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tc7ZxJmqD9 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxJmqD9 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxJmqD9 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxJmqD9 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxJmqD9 .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxJmqD9 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tc7ZxJmqD9 P {
  color: #767676;
}
.cid-tc7ZxJLeLT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxJLeLT blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxJLeLT .mbr-text,
.cid-tc7ZxJLeLT .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc7ZxJLeLT footer {
  font-style: normal;
}
.cid-tc7ZxJLeLT footer P {
  color: #f95908;
}
.cid-tc7ZxJLeLT footer SPAN {
  color: #f95908;
}
.cid-tx97awiblG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx97awiblG .mbr-section-subtitle {
  color: #767676;
}
.cid-tx97awiblG .mbr-section-title {
  color: #767676;
}
.cid-tc7ZxUel3r {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxUel3r .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxUel3r .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxUel3r .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxUel3r .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxUel3r .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxUel3r .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxUel3r .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxUel3r .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxUel3r .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxUExQA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxUExQA blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxUExQA .mbr-text,
.cid-tc7ZxUExQA .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc7ZxUExQA footer {
  font-style: normal;
}
.cid-tc7ZxUExQA footer P {
  color: #f95908;
}
.cid-tx97yDVfKw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx97yDVfKw .mbr-section-subtitle {
  color: #767676;
}
.cid-tx97yDVfKw .mbr-section-title {
  color: #767676;
}
.cid-tx95h2Fr9r {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tx95h2Fr9r .images-container.container-fluid {
  padding: 0;
}
.cid-tx95h2Fr9r .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tx95h2Fr9r .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tx95h2Fr9r .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tx95h2Fr9r .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tx95h2Fr9r .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tx95h2Fr9r .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tx95h2Fr9r .img-item {
    width: 100% !important;
  }
  .cid-tx95h2Fr9r .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tx95h2Fr9r P {
  color: #767676;
}
.cid-tx95hJueWJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx95hJueWJ blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tx95hJueWJ .mbr-text,
.cid-tx95hJueWJ .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tx95hJueWJ footer {
  font-style: normal;
}
.cid-tx95hJueWJ footer P {
  color: #f95908;
}
.cid-tx95hJueWJ footer SPAN {
  color: #f95908;
}
.cid-thvuLT6emP {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-thvuLT6emP .images-container.container-fluid {
  padding: 0;
}
.cid-thvuLT6emP .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-thvuLT6emP .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-thvuLT6emP .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-thvuLT6emP .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-thvuLT6emP .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-thvuLT6emP .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-thvuLT6emP .img-item {
    width: 100% !important;
  }
  .cid-thvuLT6emP .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-thvuLT6emP P {
  color: #767676;
}
.cid-thvuMFSWF7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thvuMFSWF7 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-thvuMFSWF7 .mbr-text,
.cid-thvuMFSWF7 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-thvuMFSWF7 footer {
  font-style: normal;
}
.cid-thvuMFSWF7 footer P {
  color: #f95908;
}
.cid-tx97Qv7uD9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx97Qv7uD9 .mbr-section-subtitle {
  color: #767676;
}
.cid-tx97Qv7uD9 .mbr-section-title {
  color: #767676;
}
.cid-thvuNW8Vny {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-thvuNW8Vny .images-container.container-fluid {
  padding: 0;
}
.cid-thvuNW8Vny .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-thvuNW8Vny .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-thvuNW8Vny .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-thvuNW8Vny .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-thvuNW8Vny .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-thvuNW8Vny .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-thvuNW8Vny .img-item {
    width: 100% !important;
  }
  .cid-thvuNW8Vny .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-thvuNW8Vny P {
  color: #767676;
}
.cid-thvuOBePmu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thvuOBePmu blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-thvuOBePmu .mbr-text,
.cid-thvuOBePmu .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-thvuOBePmu footer {
  font-style: normal;
}
.cid-thvuOBePmu footer P {
  color: #f95908;
}
.cid-tx98pZeMxF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx98pZeMxF .mbr-section-subtitle {
  color: #767676;
}
.cid-tx98pZeMxF .mbr-section-title {
  color: #767676;
}
.cid-tc7ZxLJqi3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxLJqi3 .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxLJqi3 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxLJqi3 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxLJqi3 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxLJqi3 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxLJqi3 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxLJqi3 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxLJqi3 .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxLJqi3 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxM66Rl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxM66Rl blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxM66Rl .mbr-text,
.cid-tc7ZxM66Rl .blockquote-quote {
  color: #767676;
}
.cid-tc7ZxM66Rl footer {
  font-style: normal;
  color: #f95908;
}
.cid-tc7ZxNjBZ3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxNjBZ3 .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxNjBZ3 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxNjBZ3 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxNjBZ3 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxNjBZ3 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxNjBZ3 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxNjBZ3 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxNjBZ3 .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxNjBZ3 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxNEszf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxNEszf blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxNEszf .mbr-text,
.cid-tc7ZxNEszf .blockquote-quote {
  color: #767676;
}
.cid-tc7ZxNEszf footer {
  font-style: normal;
  color: #f95908;
}
.cid-toWRuNeT0M {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-toWRuNeT0M .images-container.container-fluid {
  padding: 0;
}
.cid-toWRuNeT0M .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-toWRuNeT0M .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-toWRuNeT0M .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-toWRuNeT0M .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-toWRuNeT0M .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-toWRuNeT0M .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-toWRuNeT0M .img-item {
    width: 100% !important;
  }
  .cid-toWRuNeT0M .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-toWRuNeT0M P {
  color: #767676;
}
.cid-toWRvmhAdk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-toWRvmhAdk blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-toWRvmhAdk .mbr-text,
.cid-toWRvmhAdk .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-toWRvmhAdk footer {
  font-style: normal;
}
.cid-toWRvmhAdk footer P {
  color: #f95908;
}
.cid-toWRvmhAdk footer SPAN {
  color: #f95908;
}
.cid-tx98RgFrtC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx98RgFrtC .mbr-section-subtitle {
  color: #767676;
}
.cid-tx98RgFrtC .mbr-section-title {
  color: #767676;
}
.cid-tIQm3npPB5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tIQm3npPB5 .images-container.container-fluid {
  padding: 0;
}
.cid-tIQm3npPB5 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tIQm3npPB5 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tIQm3npPB5 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tIQm3npPB5 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tIQm3npPB5 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tIQm3npPB5 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tIQm3npPB5 .img-item {
    width: 100% !important;
  }
  .cid-tIQm3npPB5 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tIQm4hjpOY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQm4hjpOY blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tIQm4hjpOY .mbr-text,
.cid-tIQm4hjpOY .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tIQm4hjpOY footer {
  font-style: normal;
}
.cid-tIQm4hjpOY footer P {
  color: #f95908;
}
.cid-tIQm4hjpOY footer SPAN {
  color: #f95908;
}
.cid-tc7ZxSPApU {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxSPApU .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxSPApU .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxSPApU .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxSPApU .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxSPApU .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxSPApU .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxSPApU .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxSPApU .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxSPApU .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxTb7LD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxTb7LD blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxTb7LD .mbr-text,
.cid-tc7ZxTb7LD .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc7ZxTb7LD footer {
  font-style: normal;
}
.cid-tc7ZxTb7LD footer P {
  color: #f95908;
}
.cid-tx997f3E2h {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx997f3E2h .mbr-section-subtitle {
  color: #767676;
}
.cid-tx997f3E2h .mbr-section-title {
  color: #767676;
}
.cid-tc7ZxPjxmb {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxPjxmb .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxPjxmb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxPjxmb .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxPjxmb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxPjxmb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxPjxmb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxPjxmb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxPjxmb .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxPjxmb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxPGy88 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxPGy88 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxPGy88 .mbr-text,
.cid-tc7ZxPGy88 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc7ZxPGy88 footer {
  font-style: normal;
}
.cid-tc7ZxPGy88 footer P {
  color: #f95908;
}
.cid-tc7ZxPGy88 footer SPAN {
  color: #f95908;
}
.cid-tx99gdFvZx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx99gdFvZx .mbr-section-subtitle {
  color: #767676;
}
.cid-tx99gdFvZx .mbr-section-title {
  color: #767676;
}
.cid-tc7ZxS5udj {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc7ZxS5udj .images-container.container-fluid {
  padding: 0;
}
.cid-tc7ZxS5udj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc7ZxS5udj .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc7ZxS5udj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc7ZxS5udj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc7ZxS5udj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc7ZxS5udj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc7ZxS5udj .img-item {
    width: 100% !important;
  }
  .cid-tc7ZxS5udj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc7ZxSubHH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc7ZxSubHH blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc7ZxSubHH .mbr-text,
.cid-tc7ZxSubHH .blockquote-quote {
  color: #767676;
}
.cid-tc7ZxSubHH footer {
  font-style: normal;
  color: #f95908;
}
.cid-tc7ZxDgsF1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tc7ZxDgsF1 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tc7ZxDgsF1 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-tc7ZxDgsF1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tc7ZxDgsF1 .inner-container {
    width: 100% !important;
  }
}
.cid-tIQnqshewt {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tIQnqshewt .images-container.container-fluid {
  padding: 0;
}
.cid-tIQnqshewt .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tIQnqshewt .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tIQnqshewt .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tIQnqshewt .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tIQnqshewt .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tIQnqshewt .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tIQnqshewt .img-item {
    width: 100% !important;
  }
  .cid-tIQnqshewt .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tIQnqshewt P {
  color: #767676;
}
.cid-tIQnqW1EW1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQnqW1EW1 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tIQnqW1EW1 .mbr-text,
.cid-tIQnqW1EW1 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tIQnqW1EW1 footer {
  font-style: normal;
}
.cid-tIQnqW1EW1 footer P {
  color: #f95908;
}
.cid-tIQnqW1EW1 footer SPAN {
  color: #f95908;
}
.cid-tjjp0eTNAl {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tjjp0eTNAl .images-container.container-fluid {
  padding: 0;
}
.cid-tjjp0eTNAl .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tjjp0eTNAl .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tjjp0eTNAl .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tjjp0eTNAl .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tjjp0eTNAl .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tjjp0eTNAl .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tjjp0eTNAl .img-item {
    width: 100% !important;
  }
  .cid-tjjp0eTNAl .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tjjp0eTNAl P {
  color: #767676;
}
.cid-tjjp1e9mCF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjjp1e9mCF blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tjjp1e9mCF .mbr-text,
.cid-tjjp1e9mCF .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tjjp1e9mCF footer {
  font-style: normal;
}
.cid-tjjp1e9mCF footer P {
  color: #f95908;
}
.cid-tjjp1e9mCF footer SPAN {
  color: #f95908;
}
.cid-tc8cVdCY33 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tc7ZxGHTMP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f95908;
}
.cid-tc7ZxGHTMP .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tc7ZxGHTMP .mbr-section-btn,
  .cid-tc7ZxGHTMP .mbr-section-subtitle,
  .cid-tc7ZxGHTMP .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tc8cWSemiz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc8cWSemiz .mbr-text,
.cid-tc8cWSemiz blockquote {
  color: #767676;
}
.cid-tc8cWSemiz .mbr-text DIV {
  text-align: left;
}
.cid-tc7ZxWphG3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc7ZxWphG3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tc7ZxWphG3 .mbr-section-title {
  color: #767676;
}
.cid-tc7ZxWO5Mc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc7ZxWO5Mc .mbr-text,
.cid-tc7ZxWO5Mc blockquote {
  color: #767676;
}
.cid-tc7ZxWO5Mc .mbr-text DIV {
  text-align: left;
}
.cid-tc7ZxX96dQ {
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tc7ZxX96dQ .mbr-section-subtitle {
  color: #767676;
}
.cid-tc7ZxX96dQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tc7ZxX96dQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tc7ZxX96dQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tc7ZxX96dQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tc7ZxX96dQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tc7ZxX96dQ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tc7ZxX96dQ .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-tc7ZxX96dQ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tc7ZxX96dQ .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-tc7ZxX96dQ .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-tc7ZxX96dQ ul {
  font-size: 0;
}
.cid-tc7ZxX96dQ .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tc7ZxX96dQ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #f95908 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tc7ZxX96dQ .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tc7ZxX96dQ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tc7ZxX96dQ .mbr-gallery-filter ul li:first-child,
.cid-tc7ZxX96dQ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tc7ZxX96dQ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tc7ZxX96dQ .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-tc7ZxX96dQ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tc7ZxX96dQ .btn.active:after {
  animation: none;
}
.cid-tc7ZxX96dQ .btn:active {
  box-shadow: none !important;
}
.cid-tc7ZxX96dQ .btn:hover {
  background: transparent !important;
}
.cid-tc7ZxX96dQ .btn:hover:before {
  background: transparent !important;
}
.cid-tc7ZxX96dQ .btn:before {
  background-color: transparent !important;
}
.cid-tc7ZxX96dQ .btn:focus {
  box-shadow: none !important;
}
.cid-tc7ZxXDuAv {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tc7ZxXDuAv .mbr-text,
.cid-tc7ZxXDuAv blockquote {
  color: #767676;
}
.cid-tc7ZxXDuAv .mbr-text DIV {
  text-align: left;
}
.cid-u0GxR9yyN7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0GxR9yyN7 .mbr-text,
.cid-u0GxR9yyN7 blockquote {
  color: #767676;
}
.cid-u0GxR9yyN7 .mbr-text DIV {
  text-align: center;
}
.cid-u0GxR9yyN7 .mbr-text {
  color: #f95908;
}
.cid-u0GxRGjLQE {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tc8dhhaen3 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-arthropods-bundenbach-header-small-980x501.webp");
}
.cid-tc8dhhaen3 .mbr-overlay {
  background: #ffffff;
}
.cid-tc8dhhaen3 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-tc8dhhaen3 .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-tc8dhhaen3 .mbr-section-title B {
  color: #f95908;
}
.cid-tc8dhhaen3 .mbr-section-subtitle B {
  color: #f95908;
}
.cid-tc8dhhaen3 .mbr-section-title FONT {
  color: #ffffff;
}
.cid-tc8dhhttuh {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tc8dhhttuh .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tc8dhhttuh .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-tc8dhhttuh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tc8dhhttuh .inner-container {
    width: 100% !important;
  }
}
.cid-txmBOjhlHb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txmBOjhlHb .mbr-section-subtitle {
  color: #767676;
}
.cid-txmBOjhlHb .mbr-section-title {
  color: #767676;
}
.cid-tXXpN0EbkS {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tXXpN0EbkS .images-container.container-fluid {
  padding: 0;
}
.cid-tXXpN0EbkS .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tXXpN0EbkS .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tXXpN0EbkS .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tXXpN0EbkS .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tXXpN0EbkS .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tXXpN0EbkS .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXXpN0EbkS .img-item {
    width: 100% !important;
  }
  .cid-tXXpN0EbkS .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tXXpN0EbkS P {
  color: #767676;
}
.cid-tXXpNEqHLx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXXpNEqHLx blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tXXpNEqHLx .mbr-text,
.cid-tXXpNEqHLx .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tXXpNEqHLx footer {
  font-style: normal;
}
.cid-tXXpNEqHLx footer P {
  color: #f95908;
}
.cid-tlVlNboGfq {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tlVlNboGfq .images-container.container-fluid {
  padding: 0;
}
.cid-tlVlNboGfq .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tlVlNboGfq .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tlVlNboGfq .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tlVlNboGfq .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tlVlNboGfq .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tlVlNboGfq .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tlVlNboGfq .img-item {
    width: 100% !important;
  }
  .cid-tlVlNboGfq .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tlVlNboGfq P {
  color: #767676;
}
.cid-tlVlNUxtji {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlVlNUxtji blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tlVlNUxtji .mbr-text,
.cid-tlVlNUxtji .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tlVlNUxtji footer {
  font-style: normal;
}
.cid-tlVlNUxtji footer P {
  color: #f95908;
}
.cid-thvtmfrhnF {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-thvtmfrhnF .images-container.container-fluid {
  padding: 0;
}
.cid-thvtmfrhnF .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-thvtmfrhnF .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-thvtmfrhnF .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-thvtmfrhnF .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-thvtmfrhnF .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-thvtmfrhnF .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-thvtmfrhnF .img-item {
    width: 100% !important;
  }
  .cid-thvtmfrhnF .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-thvtmfrhnF P {
  color: #767676;
}
.cid-thvtmR68NR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thvtmR68NR blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-thvtmR68NR .mbr-text,
.cid-thvtmR68NR .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-thvtmR68NR footer {
  font-style: normal;
}
.cid-thvtmR68NR footer P {
  color: #f95908;
}
.cid-txmBQJ4jjs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txmBQJ4jjs .mbr-section-subtitle {
  color: #767676;
}
.cid-txmBQJ4jjs .mbr-section-title {
  color: #767676;
}
.cid-tc8dhuOXk5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc8dhuOXk5 .images-container.container-fluid {
  padding: 0;
}
.cid-tc8dhuOXk5 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc8dhuOXk5 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc8dhuOXk5 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc8dhuOXk5 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc8dhuOXk5 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc8dhuOXk5 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc8dhuOXk5 .img-item {
    width: 100% !important;
  }
  .cid-tc8dhuOXk5 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc8dhv9b3g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc8dhv9b3g blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc8dhv9b3g .mbr-text,
.cid-tc8dhv9b3g .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc8dhv9b3g footer {
  font-style: normal;
}
.cid-tc8dhv9b3g footer P {
  color: #f95908;
}
.cid-tIQBDOamkF {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tIQBDOamkF .images-container.container-fluid {
  padding: 0;
}
.cid-tIQBDOamkF .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tIQBDOamkF .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tIQBDOamkF .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tIQBDOamkF .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tIQBDOamkF .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tIQBDOamkF .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tIQBDOamkF .img-item {
    width: 100% !important;
  }
  .cid-tIQBDOamkF .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tIQBDOamkF P {
  color: #767676;
}
.cid-tIQBEPL9hC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIQBEPL9hC blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tIQBEPL9hC .mbr-text,
.cid-tIQBEPL9hC .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tIQBEPL9hC footer {
  font-style: normal;
}
.cid-tIQBEPL9hC footer P {
  color: #f95908;
}
.cid-txmC4DpF9Y {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txmC4DpF9Y .mbr-section-subtitle {
  color: #767676;
}
.cid-txmC4DpF9Y .mbr-section-title {
  color: #767676;
}
.cid-tc8dhriFtt {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc8dhriFtt .images-container.container-fluid {
  padding: 0;
}
.cid-tc8dhriFtt .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc8dhriFtt .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc8dhriFtt .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc8dhriFtt .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc8dhriFtt .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc8dhriFtt .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc8dhriFtt .img-item {
    width: 100% !important;
  }
  .cid-tc8dhriFtt .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc8dhrCU1A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc8dhrCU1A blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc8dhrCU1A .mbr-text,
.cid-tc8dhrCU1A .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc8dhrCU1A footer {
  font-style: normal;
}
.cid-tc8dhrCU1A footer P {
  color: #f95908;
}
.cid-tc8dhrCU1A footer SPAN {
  color: #f95908;
}
.cid-tlVlEBs7jH {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tlVlEBs7jH .images-container.container-fluid {
  padding: 0;
}
.cid-tlVlEBs7jH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tlVlEBs7jH .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tlVlEBs7jH .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tlVlEBs7jH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tlVlEBs7jH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tlVlEBs7jH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tlVlEBs7jH .img-item {
    width: 100% !important;
  }
  .cid-tlVlEBs7jH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tlVlEBs7jH P {
  color: #767676;
}
.cid-tlVlFbezXA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlVlFbezXA blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tlVlFbezXA .mbr-text,
.cid-tlVlFbezXA .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tlVlFbezXA footer {
  font-style: normal;
}
.cid-tlVlFbezXA footer P {
  color: #f95908;
}
.cid-tlVlFbezXA footer SPAN {
  color: #f95908;
}
.cid-tc8dhtkMfe {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc8dhtkMfe .images-container.container-fluid {
  padding: 0;
}
.cid-tc8dhtkMfe .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc8dhtkMfe .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc8dhtkMfe .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc8dhtkMfe .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc8dhtkMfe .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc8dhtkMfe .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc8dhtkMfe .img-item {
    width: 100% !important;
  }
  .cid-tc8dhtkMfe .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc8dhtKOFz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc8dhtKOFz blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc8dhtKOFz .mbr-text,
.cid-tc8dhtKOFz .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc8dhtKOFz footer {
  font-style: normal;
}
.cid-tc8dhtKOFz footer P {
  color: #f95908;
}
.cid-txmEeFD0LH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txmEeFD0LH .mbr-section-subtitle {
  color: #767676;
}
.cid-txmEeFD0LH .mbr-section-title {
  color: #767676;
}
.cid-uqTtZe2ZtG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uqTtZe2ZtG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uqTtZe2ZtG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uqTtZe2ZtG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uqTtZe2ZtG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uqTtZe2ZtG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  background: linear-gradient(to left, #f7f7f7, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uqTtZe2ZtG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uqTtZe2ZtG .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-uqTtZe2ZtG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uqTtZe2ZtG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #f7f7f7 !important;
  background: linear-gradient(to left, #f7f7f7, #45505b) !important;
  opacity: 0.2;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uqTtZXxtq5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uqTtZXxtq5 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uqTtZXxtq5 .mbr-text,
.cid-uqTtZXxtq5 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uqTtZXxtq5 footer {
  font-style: normal;
}
.cid-uqTtZXxtq5 footer P {
  color: #f95908;
}
.cid-uqTtZXxtq5 footer SPAN {
  color: #f95908;
}
.cid-tc8dhrWQxG {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc8dhrWQxG .images-container.container-fluid {
  padding: 0;
}
.cid-tc8dhrWQxG .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tc8dhrWQxG .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tc8dhrWQxG .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc8dhrWQxG .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc8dhrWQxG .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc8dhrWQxG .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc8dhrWQxG .img-item {
    width: 100% !important;
  }
  .cid-tc8dhrWQxG .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tc8dhsggAY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc8dhsggAY blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc8dhsggAY .mbr-text,
.cid-tc8dhsggAY .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc8dhsggAY footer {
  font-style: normal;
}
.cid-tc8dhsggAY footer P {
  color: #f95908;
}
.cid-txmC5H3RAA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txmC5H3RAA .mbr-section-subtitle {
  color: #767676;
}
.cid-txmC5H3RAA .mbr-section-title {
  color: #767676;
}
.cid-txmENkbQaz {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-txmENkbQaz .images-container.container-fluid {
  padding: 0;
}
.cid-txmENkbQaz .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-txmENkbQaz .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-txmENkbQaz .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-txmENkbQaz .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-txmENkbQaz .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-txmENkbQaz .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-txmENkbQaz .img-item {
    width: 100% !important;
  }
  .cid-txmENkbQaz .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-txmENkbQaz P {
  color: #767676;
}
.cid-txmEO3lJul {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txmEO3lJul blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-txmEO3lJul .mbr-text,
.cid-txmEO3lJul .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-txmEO3lJul footer {
  font-style: normal;
}
.cid-txmEO3lJul footer P {
  color: #f95908;
}
.cid-txmEO3lJul footer SPAN {
  color: #f95908;
}
.cid-tc8dhsBnPH {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tc8dhsBnPH .images-container.container-fluid {
  padding: 0;
}
.cid-tc8dhsBnPH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tc8dhsBnPH .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tc8dhsBnPH .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tc8dhsBnPH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tc8dhsBnPH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tc8dhsBnPH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tc8dhsBnPH .img-item {
    width: 100% !important;
  }
  .cid-tc8dhsBnPH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tc8dhsBnPH P {
  color: #767676;
}
.cid-tc8dhsX8Ik {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc8dhsX8Ik blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tc8dhsX8Ik .mbr-text,
.cid-tc8dhsX8Ik .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tc8dhsX8Ik footer {
  font-style: normal;
}
.cid-tc8dhsX8Ik footer P {
  color: #f95908;
}
.cid-tcfqGdhkwm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tc8dhq9Ac6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f95908;
}
.cid-tc8dhq9Ac6 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tc8dhq9Ac6 .mbr-section-btn,
  .cid-tc8dhq9Ac6 .mbr-section-subtitle,
  .cid-tc8dhq9Ac6 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tcfyG36SUP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcfyG36SUP .mbr-text,
.cid-tcfyG36SUP blockquote {
  color: #767676;
}
.cid-tcfyG36SUP .mbr-text DIV {
  text-align: left;
}
.cid-tc8dhwEfZz {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tc8dhwEfZz .mbr-section-subtitle {
  color: #767676;
}
.cid-tc8dhwEfZz .mbr-section-title {
  color: #767676;
}
.cid-tc8dhwZr8i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc8dhwZr8i .mbr-text,
.cid-tc8dhwZr8i blockquote {
  color: #767676;
}
.cid-tc8dhwZr8i .mbr-text DIV {
  text-align: left;
}
.cid-tc8dhxg4mC {
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tc8dhxg4mC .mbr-section-subtitle {
  color: #767676;
}
.cid-tc8dhxg4mC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tc8dhxg4mC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tc8dhxg4mC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tc8dhxg4mC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tc8dhxg4mC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tc8dhxg4mC .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tc8dhxg4mC .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-tc8dhxg4mC .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tc8dhxg4mC .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-tc8dhxg4mC .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-tc8dhxg4mC ul {
  font-size: 0;
}
.cid-tc8dhxg4mC .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tc8dhxg4mC .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #f95908 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tc8dhxg4mC .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tc8dhxg4mC .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tc8dhxg4mC .mbr-gallery-filter ul li:first-child,
.cid-tc8dhxg4mC .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tc8dhxg4mC .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tc8dhxg4mC .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-tc8dhxg4mC .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tc8dhxg4mC .btn.active:after {
  animation: none;
}
.cid-tc8dhxg4mC .btn:active {
  box-shadow: none !important;
}
.cid-tc8dhxg4mC .btn:hover {
  background: transparent !important;
}
.cid-tc8dhxg4mC .btn:hover:before {
  background: transparent !important;
}
.cid-tc8dhxg4mC .btn:before {
  background-color: transparent !important;
}
.cid-tc8dhxg4mC .btn:focus {
  box-shadow: none !important;
}
.cid-tc8dhxHArm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tc8dhxHArm .mbr-text,
.cid-tc8dhxHArm blockquote {
  color: #767676;
}
.cid-tc8dhxHArm .mbr-text DIV {
  text-align: left;
}
.cid-u0Gy3EBVB1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0Gy3EBVB1 .mbr-text,
.cid-u0Gy3EBVB1 blockquote {
  color: #767676;
}
.cid-u0Gy3EBVB1 .mbr-text DIV {
  text-align: center;
}
.cid-u0Gy3EBVB1 .mbr-text {
  color: #f95908;
}
.cid-u0Gy4vbxUc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgcyHacdXm {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/a-bundenbach-diversa-header-small-980x640.webp");
}
.cid-tgcyHacdXm .mbr-overlay {
  background: #ffffff;
}
.cid-tgcyHacdXm .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-tgcyHacdXm .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-tgcyHacdXm .mbr-section-title B {
  color: #f95908;
}
.cid-tgcyHacdXm .mbr-section-subtitle B {
  color: #f95908;
}
.cid-tgcyHacdXm .mbr-section-title FONT {
  color: #ffffff;
}
.cid-tgcyHat5uJ {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgcyHat5uJ .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tgcyHat5uJ .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-tgcyHat5uJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tgcyHat5uJ .inner-container {
    width: 100% !important;
  }
}
.cid-ua1GIXDzwn {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-ua1GIXDzwn .images-container.container-fluid {
  padding: 0;
}
.cid-ua1GIXDzwn .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-ua1GIXDzwn .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-ua1GIXDzwn .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-ua1GIXDzwn .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-ua1GIXDzwn .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-ua1GIXDzwn .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-ua1GIXDzwn .img-item {
    width: 100% !important;
  }
  .cid-ua1GIXDzwn .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-ua1GIXDzwn P {
  color: #767676;
}
.cid-ua1GJFdJeZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ua1GJFdJeZ blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-ua1GJFdJeZ .mbr-text,
.cid-ua1GJFdJeZ .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-ua1GJFdJeZ footer {
  font-style: normal;
}
.cid-ua1GJFdJeZ footer P {
  color: #f95908;
}
.cid-ua1GJFdJeZ footer SPAN {
  color: #f95908;
}
.cid-u5qaBdQyJQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u5qaBdQyJQ .images-container.container-fluid {
  padding: 0;
}
.cid-u5qaBdQyJQ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-u5qaBdQyJQ .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-u5qaBdQyJQ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u5qaBdQyJQ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u5qaBdQyJQ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u5qaBdQyJQ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u5qaBdQyJQ .img-item {
    width: 100% !important;
  }
  .cid-u5qaBdQyJQ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-u5qaBdQyJQ P {
  color: #767676;
}
.cid-u5qaBNkWhA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u5qaBNkWhA blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-u5qaBNkWhA .mbr-text,
.cid-u5qaBNkWhA .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-u5qaBNkWhA footer {
  font-style: normal;
}
.cid-u5qaBNkWhA footer P {
  color: #f95908;
}
.cid-tgcyHfqndY {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHfqndY .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHfqndY .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHfqndY .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHfqndY .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHfqndY .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHfqndY .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHfqndY .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHfqndY .img-item {
    width: 100% !important;
  }
  .cid-tgcyHfqndY .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHfGXZq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHfGXZq blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHfGXZq .mbr-text,
.cid-tgcyHfGXZq .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tgcyHfGXZq footer {
  font-style: normal;
}
.cid-tgcyHfGXZq footer P {
  color: #f95908;
}
.cid-tgcyHfXCCD {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHfXCCD .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHfXCCD .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHfXCCD .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHfXCCD .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHfXCCD .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHfXCCD .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHfXCCD .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHfXCCD .img-item {
    width: 100% !important;
  }
  .cid-tgcyHfXCCD .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHghlh8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHghlh8 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHghlh8 .mbr-text,
.cid-tgcyHghlh8 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tgcyHghlh8 footer {
  font-style: normal;
}
.cid-tgcyHghlh8 footer P {
  color: #f95908;
}
.cid-tgcyHgwzhB {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHgwzhB .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHgwzhB .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHgwzhB .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHgwzhB .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHgwzhB .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHgwzhB .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHgwzhB .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHgwzhB .img-item {
    width: 100% !important;
  }
  .cid-tgcyHgwzhB .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHgM182 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHgM182 blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHgM182 .mbr-text,
.cid-tgcyHgM182 .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tgcyHgM182 footer {
  font-style: normal;
}
.cid-tgcyHgM182 footer P {
  color: #f95908;
}
.cid-tRqEdYuMoo {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tRqEdYuMoo .images-container.container-fluid {
  padding: 0;
}
.cid-tRqEdYuMoo .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tRqEdYuMoo .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tRqEdYuMoo .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tRqEdYuMoo .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tRqEdYuMoo .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tRqEdYuMoo .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tRqEdYuMoo .img-item {
    width: 100% !important;
  }
  .cid-tRqEdYuMoo .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tRqEdYuMoo P {
  color: #767676;
}
.cid-tRqEfd9V7E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tRqEfd9V7E blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tRqEfd9V7E .mbr-text,
.cid-tRqEfd9V7E .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-tRqEfd9V7E footer {
  font-style: normal;
}
.cid-tRqEfd9V7E footer P {
  color: #f95908;
}
.cid-tRqEfd9V7E footer SPAN {
  color: #f95908;
}
.cid-tgcyHh1TAM {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHh1TAM .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHh1TAM .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHh1TAM .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHh1TAM .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHh1TAM .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHh1TAM .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHh1TAM .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHh1TAM .img-item {
    width: 100% !important;
  }
  .cid-tgcyHh1TAM .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHhjW4X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHhjW4X blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHhjW4X .mbr-text,
.cid-tgcyHhjW4X .blockquote-quote {
  color: #767676;
}
.cid-tgcyHhjW4X footer {
  font-style: normal;
  color: #f95908;
}
.cid-tgcyHhz6Pt {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHhz6Pt .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHhz6Pt .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHhz6Pt .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHhz6Pt .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHhz6Pt .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHhz6Pt .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHhz6Pt .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHhz6Pt .img-item {
    width: 100% !important;
  }
  .cid-tgcyHhz6Pt .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHhTnpY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHhTnpY blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHhTnpY .mbr-text,
.cid-tgcyHhTnpY .blockquote-quote {
  color: #767676;
}
.cid-tgcyHhTnpY footer {
  font-style: normal;
  color: #f95908;
}
.cid-tgcyHi8bvn {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHi8bvn .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHi8bvn .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHi8bvn .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHi8bvn .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHi8bvn .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHi8bvn .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHi8bvn .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHi8bvn .img-item {
    width: 100% !important;
  }
  .cid-tgcyHi8bvn .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHiq4Se {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHiq4Se blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHiq4Se .mbr-text,
.cid-tgcyHiq4Se .blockquote-quote {
  color: #767676;
}
.cid-tgcyHiq4Se footer {
  font-style: normal;
  color: #f95908;
}
.cid-tgcyHiFTKS {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHiFTKS .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHiFTKS .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHiFTKS .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHiFTKS .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHiFTKS .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHiFTKS .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHiFTKS .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHiFTKS .img-item {
    width: 100% !important;
  }
  .cid-tgcyHiFTKS .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHj5XBj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHj5XBj blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHj5XBj .mbr-text,
.cid-tgcyHj5XBj .blockquote-quote {
  color: #767676;
}
.cid-tgcyHj5XBj footer {
  font-style: normal;
  color: #f95908;
}
.cid-tgcyHjn2T8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHjn2T8 .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHjn2T8 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHjn2T8 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHjn2T8 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHjn2T8 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHjn2T8 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHjn2T8 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHjn2T8 .img-item {
    width: 100% !important;
  }
  .cid-tgcyHjn2T8 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHjGOLi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHjGOLi blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHjGOLi .mbr-text,
.cid-tgcyHjGOLi .blockquote-quote {
  color: #767676;
}
.cid-tgcyHjGOLi footer {
  font-style: normal;
  color: #f95908;
}
.cid-tgcyHjW4bU {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tgcyHjW4bU .images-container.container-fluid {
  padding: 0;
}
.cid-tgcyHjW4bU .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tgcyHjW4bU .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgcyHjW4bU .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tgcyHjW4bU .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tgcyHjW4bU .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tgcyHjW4bU .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgcyHjW4bU .img-item {
    width: 100% !important;
  }
  .cid-tgcyHjW4bU .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tgcyHkfLgv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgcyHkfLgv blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-tgcyHkfLgv .mbr-text,
.cid-tgcyHkfLgv .blockquote-quote {
  color: #767676;
}
.cid-tgcyHkfLgv footer {
  font-style: normal;
  color: #f95908;
}
.cid-uQzlgRbbva {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-uQzlgRbbva .images-container.container-fluid {
  padding: 0;
}
.cid-uQzlgRbbva .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-uQzlgRbbva .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-uQzlgRbbva .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-uQzlgRbbva .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-uQzlgRbbva .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uQzlgRbbva .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-uQzlgRbbva .img-item {
    width: 100% !important;
  }
  .cid-uQzlgRbbva .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-uQzlgRbbva P {
  color: #767676;
}
.cid-uQzlhChwnD {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-uQzlhChwnD .images-container.container-fluid {
  padding: 0;
}
.cid-uQzlhChwnD .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-uQzlhChwnD .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-uQzlhChwnD .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-uQzlhChwnD .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-uQzlhChwnD .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uQzlhChwnD .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-uQzlhChwnD .img-item {
    width: 100% !important;
  }
  .cid-uQzlhChwnD .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-uQzlhChwnD P {
  color: #767676;
}
.cid-uQzlifp2LM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uQzlifp2LM blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uQzlifp2LM .mbr-text,
.cid-uQzlifp2LM .blockquote-quote {
  color: #767676;
  text-align: left;
}
.cid-uQzlifp2LM footer {
  font-style: normal;
}
.cid-uQzlifp2LM footer P {
  color: #f95908;
}
.cid-tgcyHeTqSh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f95908;
}
.cid-tgcyHeTqSh .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tgcyHeTqSh .mbr-section-btn,
  .cid-tgcyHeTqSh .mbr-section-subtitle,
  .cid-tgcyHeTqSh .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tgczVfdx3Q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u0Gyez6lpB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0Gyez6lpB .mbr-text,
.cid-u0Gyez6lpB blockquote {
  color: #767676;
}
.cid-u0Gyez6lpB .mbr-text DIV {
  text-align: center;
}
.cid-u0Gyez6lpB .mbr-text {
  color: #f95908;
}
.cid-u0Gyft6GHT {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Ghu0dUkY {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/c-bundenbach-fossilien-crinoid-header-small-986x500.webp");
}
.cid-u0Ghu0dUkY .mbr-overlay {
  background: #ffffff;
}
.cid-u0Ghu0dUkY .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-u0Ghu0dUkY .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-u0Ghu0dUkY .mbr-section-title B {
  color: #f95908;
}
.cid-u0Ghu0dUkY .mbr-section-subtitle B {
  color: #f95908;
}
.cid-u0Ghu0dUkY .mbr-section-title FONT {
  color: #ffffff;
}
.cid-u0Ghu0uNkR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u0Ghu0uNkR .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0Ghu0uNkR .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u0Ghu0uNkR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0Ghu0uNkR .inner-container {
    width: 100% !important;
  }
}
.cid-u0Gj0xGxnB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0Gj0xGxnB .mbr-text {
  color: #767676;
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
.cid-u21UoYAM67 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .nav-item,
.cid-u21UoYAM67 .nav-link,
.cid-u21UoYAM67 .navbar-caption {
  font-weight: normal;
}
.cid-u21UoYAM67 .nav-item:focus,
.cid-u21UoYAM67 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u21UoYAM67 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u21UoYAM67 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u21UoYAM67 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u21UoYAM67 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u21UoYAM67 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u21UoYAM67 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u21UoYAM67 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-u21UoYAM67 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u21UoYAM67 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u21UoYAM67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u21UoYAM67 .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-u21UoYAM67 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u21UoYAM67 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u21UoYAM67 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u21UoYAM67 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u21UoYAM67 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u21UoYAM67 .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-u21UoYAM67 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u21UoYAM67 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u21UoYAM67 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u21UoYAM67 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u21UoYAM67 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u21UoYAM67 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u21UoYAM67 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u21UoYAM67 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u21UoYAM67 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u21UoYAM67 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u21UoYAM67 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u21UoYAM67 .dropdown-item.active,
.cid-u21UoYAM67 .dropdown-item:active {
  background-color: transparent;
}
.cid-u21UoYAM67 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u21UoYAM67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u21UoYAM67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u21UoYAM67 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u21UoYAM67 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u21UoYAM67 .navbar-buttons {
  text-align: center;
}
.cid-u21UoYAM67 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u21UoYAM67 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u21UoYAM67 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u21UoYAM67 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u21UoYAM67 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-u21UoYAM67 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-u21UoYAM67 .soc-item {
  margin: .5rem .3rem;
}
.cid-u21UoYAM67 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link,
.cid-u21UoYAM67 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-u21UoYAM67 a.nav-link .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-u21UoYAM67 a.nav-link:hover .mbr-iconfont-btn,
.cid-u21UoYAM67 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-u21UoYAM67 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u21UoYAM67 .navbar {
    height: 77px;
  }
  .cid-u21UoYAM67 .navbar.opened {
    height: auto;
  }
  .cid-u21UoYAM67 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0GsTOlJDm {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bundenbach-fossil-header-999x409.webp");
}
.cid-u0GsTOlJDm .mbr-overlay {
  background: #ffffff;
}
.cid-u0GsTOlJDm .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-u0GsTOlJDm .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-u0GsTOlJDm .mbr-section-title B {
  color: #f95908;
}
.cid-u0GsTOlJDm .mbr-section-subtitle B {
  color: #f95908;
}
.cid-u0GsTOlJDm .mbr-section-title FONT {
  color: #ffffff;
}
.cid-u0GsTOFpCa {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u0GsTOFpCa .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0GsTOFpCa .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #f95908;
}
.cid-u0GsTOFpCa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0GsTOFpCa .inner-container {
    width: 100% !important;
  }
}
.cid-u0GsTYqkMd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0GsTYqkMd .mbr-text {
  color: #767676;
}
.cid-u0GsTYMHSK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0GsTYMHSK .mbr-text,
.cid-u0GsTYMHSK blockquote {
  color: #767676;
}
.cid-u0GsTYMHSK .mbr-text DIV {
  text-align: left;
}
.cid-u0GsTZ6nA8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0GsTZ6nA8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-u0GsTZ6nA8 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-u0GsTZ6nA8 .mbr-text {
  color: #767676;
}
.cid-u0GsTZsXTh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0GsTZsXTh .mbr-text,
.cid-u0GsTZsXTh blockquote {
  color: #767676;
}
.cid-u0GsTZsXTh .mbr-text DIV {
  text-align: left;
}
.cid-u0GsTZQih3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-u0GsTZQih3 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-u0GsTZQih3 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-u0GsTZQih3 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u0GsTZQih3 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u0GsTZQih3 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u0GsTZQih3 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u0GsTZQih3 .img-item {
    width: 100% !important;
  }
  .cid-u0GsTZQih3 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-u0GsU0hEJ5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0GsU0hEJ5 .mbr-text,
.cid-u0GsU0hEJ5 blockquote {
  color: #767676;
}
.cid-u0GsU0hEJ5 .mbr-text DIV {
  text-align: left;
}
.cid-u0GsU0C50X {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-u0GsU0C50X .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-u0GsU0C50X .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-u0GsU0C50X .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u0GsU0C50X .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u0GsU0C50X .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u0GsU0C50X .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u0GsU0C50X .img-item {
    width: 100% !important;
  }
  .cid-u0GsU0C50X .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-u0GsU119ZJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0GsU119ZJ .mbr-text,
.cid-u0GsU119ZJ blockquote {
  color: #767676;
}
.cid-u0GsU119ZJ .mbr-text DIV {
  text-align: left;
}
.cid-u0GsU1lNS6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0GsU1lNS6 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-u0GsU1lNS6 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-u0GsU1lNS6 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-u0GsU1GkGF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0GsU1GkGF .mbr-text,
.cid-u0GsU1GkGF blockquote {
  color: #767676;
}
.cid-u0GsU23Tgv {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u0GsU23Tgv .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-u0GsU23Tgv .video-block {
    width: 100% !important;
  }
}
.cid-u0GsU2xlX9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0GsU2xlX9 .mbr-text,
.cid-u0GsU2xlX9 blockquote {
  color: #767676;
}
.cid-u0GsU2RlSt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0GsU2RlSt .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-u0GsU2RlSt .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-u0GsU2RlSt .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-u0GsU3dubK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0GsU3dubK .mbr-text,
.cid-u0GsU3dubK blockquote {
  color: #767676;
}
.cid-u0GsU3ym9O {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0GsU3ym9O .mbr-section-subtitle {
  color: #767676;
}
.cid-u0GsU3ym9O .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-u0GsU3ym9O .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-u0GsU3ym9O .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u0GsU3ym9O .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-u0GsU3ym9O .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-u0GsU3ym9O .card-wrapper .card-img .mbr-section-btn {
  display: flex;
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  margin: auto;
  left: 0;
  justify-content: center;
  align-items: center;
}
.cid-u0GsU3ym9O .card-wrapper .card-img img {
  width: 100%;
  height: 100%;
}
.cid-u0GsU3ym9O .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-u0GsU3ym9O .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-u0GsU3ym9O .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-u0GsU3ym9O .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u0GsU3ym9O .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-u0GsU3ym9O .popup-btn .mbr-section-btn {
  height: 100%;
  display: flex !important;
  opacity: 0;
}
.cid-u0GsU3ym9O .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-u0GsU3ym9O .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-u0GsU3ym9O .card-title {
  color: #465052;
  text-align: center;
}
.cid-u0GsU3ym9O .mbr-section-title {
  color: #465052;
}
.cid-u0GsU3ym9O .mbr-section-title B {
  color: #ff7c00;
}
.cid-u0GsU4aLwd {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u0GsU4aLwd .mbr-section-subtitle {
  color: #f95908;
}
.cid-u0GsU4aLwd .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #f95908;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-u0GsU4aLwd .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-u0GsU4aLwd .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-u0GsU4aLwd .mbr-iconfont-social:hover:before {
  background: #f95908;
  transition: all .3s;
  border-color: transparent;
}
.cid-u0GsU4aLwd .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-u0GsU4aLwd .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-u3lf9He8zP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u3lf9He8zP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3lf9He8zP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3lf9He8zP .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-u3lf9He8zP a {
  position: relative;
  width: fit-content;
}
.cid-u3lf9He8zP a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-u3lf9He8zP a:hover:before {
  width: 0;
}
.cid-u3lf9He8zP .copyright {
  color: #767676;
}
.cid-u3lf9He8zP .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u3lf9He8zP .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-u3lf9He8zP .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3lf9He8zP .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3lf9He8zP .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-u3lf9He8zP p {
    text-align: center;
  }
}
