body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.9rem;
}
.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: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #f95908 !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f95908 !important;
  border-color: #f95908 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b03e04 !important;
  border-color: #b03e04 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b03e04 !important;
  border-color: #b03e04 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #973504;
  color: #973504 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #f95908;
  border-color: #f95908;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f95908 !important;
  border-color: #f95908 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f95908 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #973504 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f95908;
  border-color: #f95908;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f95908;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fedfcf;
}
.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_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #f95908;
}
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: #f95908;
  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: #f95908;
  border-bottom-color: #f95908;
}
.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: #f95908 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%23f95908' %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-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLyQT7fAdm {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/00-fossiland-header-small-900x600.webp");
}
.cid-rLyQT7fAdm .mbr-overlay {
  background: #ffffff;
}
.cid-rLyQT7fAdm .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: left;
}
.cid-rLyQT7fAdm .mbr-section-subtitle {
  color: #f95908;
}
.cid-rLyQT7fAdm .mbr-section-title B {
  color: #f95908;
}
.cid-rLyQT7fAdm .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLyQT7fAdm .mbr-text,
.cid-rLyQT7fAdm .mbr-section-btn {
  color: #767676;
}
.cid-qL4rjd3ElP {
  padding-top: 60px;
  padding-bottom: 30px;
  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: #767676;
}
.cid-qL4rjd3ElP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qL4rjd3ElP .inner-container {
    width: 100% !important;
  }
}
.cid-uQ6nhVwXLW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uQ6nhVwXLW .mbr-text {
  color: #767676;
}
.cid-uQ6ngYrX5F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uQ6ngYrX5F .mbr-text {
  color: #767676;
}
.cid-qL7CL82U3E {
  padding-top: 15px;
  padding-bottom: 0px;
  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: 15px;
  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-t7CefQY1Zv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t7CefQY1Zv .card {
  display: block;
  position: relative;
}
.cid-t7CefQY1Zv .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-t7CefQY1Zv .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-t7CefQY1Zv .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t7CefQY1Zv .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: #f95908;
}
.cid-t7CefQY1Zv .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t7CefQY1Zv .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-t7CefQY1Zv .mbr-card-text {
  margin: 0;
}
.cid-t7CefQY1Zv .mbr-section-title {
  text-align: center;
  color: #767676;
}
.cid-t7CefQY1Zv .mbr-title {
  color: #767676;
}
.cid-t7CefQY1Zv .img-text {
  color: #ffffff;
}
.cid-qL7Ca9aaUK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL7Ca9aaUK .main {
  flex-direction: row-reverse;
}
.cid-qL7Ca9aaUK .row-element,
.cid-qL7Ca9aaUK .image-element {
  padding: 0;
}
.cid-qL7Ca9aaUK .image-element {
  display: flex;
  justify-content: center;
}
.cid-qL7Ca9aaUK .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qL7Ca9aaUK .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qL7Ca9aaUK .text-content {
    padding: 2rem 1rem;
  }
  .cid-qL7Ca9aaUK .mbr-title,
  .cid-qL7Ca9aaUK .underline,
  .cid-qL7Ca9aaUK .mbr-text,
  .cid-qL7Ca9aaUK .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qL7Ca9aaUK .mbr-text,
.cid-qL7Ca9aaUK .mbr-section-btn {
  color: #767676;
}
.cid-qL7Ca9aaUK .mbr-section-subtitle {
  color: #767676;
}
.cid-qL7Ca9aaUK .mbr-title {
  color: #767676;
}
.cid-qL7CfcI7FU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.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-uIDjiXsDIs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIDjiXsDIs .main {
  flex-direction: row-reverse;
}
.cid-uIDjiXsDIs .row-element,
.cid-uIDjiXsDIs .image-element {
  padding: 0;
}
.cid-uIDjiXsDIs .image-element {
  display: flex;
  justify-content: center;
}
.cid-uIDjiXsDIs .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uIDjiXsDIs .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uIDjiXsDIs .text-content {
    padding: 2rem 1rem;
  }
  .cid-uIDjiXsDIs .mbr-title,
  .cid-uIDjiXsDIs .mbr-text,
  .cid-uIDjiXsDIs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uIDjiXsDIs .mbr-text,
.cid-uIDjiXsDIs .mbr-section-btn {
  color: #767676;
}
.cid-uIDjiXsDIs .mbr-title {
  color: #767676;
}
.cid-uV5btQTZ9e {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uV5btQTZ9e .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uV5btQTZ9e .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-uV5btQTZ9e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uV5btQTZ9e .inner-container {
    width: 100% !important;
  }
}
.cid-qL4DNWA7gi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qL4DNWA7gi .row-element,
.cid-qL4DNWA7gi .image-element {
  padding: 0;
}
.cid-qL4DNWA7gi .image-element {
  display: flex;
  justify-content: center;
}
.cid-qL4DNWA7gi .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qL4DNWA7gi .text-content {
  padding: 3rem;
}
.cid-qL4DNWA7gi .mbr-section-subtitle {
  color: #b2ccd2;
}
@media (max-width: 767px) {
  .cid-qL4DNWA7gi .text-content {
    padding: 2rem 1rem;
  }
  .cid-qL4DNWA7gi .mbr-title,
  .cid-qL4DNWA7gi .mbr-text,
  .cid-qL4DNWA7gi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qL4DNWA7gi .mbr-title {
  color: #767676;
  text-align: left;
}
.cid-qL4DNWA7gi .mbr-text,
.cid-qL4DNWA7gi .mbr-section-btn {
  text-align: left;
  color: #767676;
}
.cid-qL4zlbIL1H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL4zlbIL1H .row-element,
.cid-qL4zlbIL1H .image-element {
  padding: 0;
}
.cid-qL4zlbIL1H .image-element {
  display: flex;
  justify-content: center;
}
.cid-qL4zlbIL1H .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qL4zlbIL1H .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qL4zlbIL1H .text-content {
    padding: 2rem 1rem;
  }
  .cid-qL4zlbIL1H .mbr-title,
  .cid-qL4zlbIL1H .mbr-text,
  .cid-qL4zlbIL1H .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qL4zlbIL1H .mbr-text,
.cid-qL4zlbIL1H .mbr-section-btn {
  color: #767676;
}
.cid-qL4zlbIL1H .mbr-title {
  color: #767676;
}
.cid-sksvyfXDiy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sksvyfXDiy .main {
  flex-direction: row-reverse;
}
.cid-sksvyfXDiy .row-element,
.cid-sksvyfXDiy .image-element {
  padding: 0;
}
.cid-sksvyfXDiy .image-element {
  display: flex;
  justify-content: center;
}
.cid-sksvyfXDiy .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sksvyfXDiy .text-content {
  padding: 3rem;
}
.cid-sksvyfXDiy .mbr-section-subtitle {
  color: #b2ccd2;
}
@media (max-width: 767px) {
  .cid-sksvyfXDiy .text-content {
    padding: 2rem 1rem;
  }
  .cid-sksvyfXDiy .mbr-title,
  .cid-sksvyfXDiy .mbr-text,
  .cid-sksvyfXDiy .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sksvyfXDiy .mbr-title {
  color: #767676;
  text-align: left;
}
.cid-sksvyfXDiy .mbr-text,
.cid-sksvyfXDiy .mbr-section-btn {
  text-align: left;
  color: #767676;
}
.cid-u0vXJcrRGj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0vXJcrRGj .mbr-section-subtitle {
  color: #767676;
}
.cid-u0vXJcrRGj ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0vXJcrRGj ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-u0vXJcrRGj ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-u0vXJcrRGj ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-u0vXJcrRGj .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-u0vXJcrRGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0vXJcrRGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0vXJcrRGj .mbr-section-title {
  color: #767676;
}
.cid-tLpEFNbBNm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLpEFNbBNm .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-utJ3VYLhIe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-utJ3VYLhIe .mbr-section-subtitle {
  color: #767676;
}
.cid-utJ3VYLhIe ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utJ3VYLhIe ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-utJ3VYLhIe ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-utJ3VYLhIe ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-utJ3VYLhIe .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-utJ3VYLhIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJ3VYLhIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJ3VYLhIe .mbr-section-title {
  color: #767676;
}
.cid-u0vUUfyfCi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0vUUfyfCi .mbr-section-subtitle {
  color: #767676;
}
.cid-u0vUUfyfCi ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0vUUfyfCi ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-u0vUUfyfCi ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-u0vUUfyfCi ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-u0vUUfyfCi .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-u0vUUfyfCi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0vUUfyfCi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0vUUfyfCi .mbr-section-title {
  color: #767676;
}
.cid-qL4FWNbxHf {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qL4FWNbxHf .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qL9UMCf5ue {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fossilien-begutachtung-header-961x500.webp");
}
.cid-qL9UMCf5ue .mbr-overlay {
  background: #ffffff;
}
.cid-qL9UMCf5ue .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-qL9UMCf5ue .mbr-section-subtitle {
  color: #f95908;
}
.cid-qL9UMCf5ue .mbr-section-title B {
  color: #f95908;
}
.cid-qL9UMCf5ue .mbr-section-subtitle B {
  color: #f95908;
}
.cid-qL9UMCf5ue .mbr-text,
.cid-qL9UMCf5ue .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-t7Cr4WB0S8 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7Cr4WB0S8 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t7Cr4WB0S8 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-t7Cr4WB0S8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t7Cr4WB0S8 .inner-container {
    width: 100% !important;
  }
}
.cid-sjIk9BYaJh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjIk9BYaJh .mbr-text {
  color: #767676;
}
.cid-sjIkaL3Gu6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjIkaL3Gu6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjIkaL3Gu6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjIkaL3Gu6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjIkaL3Gu6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjIkaL3Gu6 .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-sjIkaL3Gu6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjIkaL3Gu6 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sjIkaL3Gu6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjIkaL3Gu6 .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-qLa0FCWOE8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLa0FCWOE8 .mbr-text {
  color: #767676;
}
.cid-qL9UMGN8G9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL9UMGN8G9 .row-element,
.cid-qL9UMGN8G9 .image-element {
  padding: 0;
}
.cid-qL9UMGN8G9 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qL9UMGN8G9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qL9UMGN8G9 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qL9UMGN8G9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qL9UMGN8G9 .mbr-title,
  .cid-qL9UMGN8G9 .mbr-text,
  .cid-qL9UMGN8G9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qL9UMGN8G9 .mbr-text,
.cid-qL9UMGN8G9 .mbr-section-btn {
  color: #767676;
}
.cid-qL9UMGN8G9 .mbr-title {
  color: #767676;
}
.cid-sjxL6nsce2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjxL6nsce2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sjxL6nsce2 .mbr-section-title {
  color: #767676;
}
.cid-qL9UMPJBQM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL9UMPJBQM .mbr-text {
  color: #767676;
}
.cid-sjOiiCXIa6 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjOiiCXIa6 .counter-container {
  color: #767676;
}
.cid-sjOiiCXIa6 .counter-container ul {
  margin-bottom: 0;
}
.cid-sjOiiCXIa6 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sjOiiCXIa6 .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%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-sjOiiCXIa6 .mbr-text {
  color: #767676;
}
.cid-qL9YhFwL3k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qL9YhFwL3k .mbr-text {
  color: #767676;
}
.cid-sjJ2OLxZYJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjJ2OLxZYJ .mbr-section-subtitle {
  color: #767676;
}
.cid-sjJ2OLxZYJ .mbr-section-title {
  color: #767676;
}
.cid-sjJ2WUwwf2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjJ2WUwwf2 .mbr-text {
  color: #767676;
}
.cid-sjOiBIulyV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjOiBIulyV .counter-container {
  color: #767676;
}
.cid-sjOiBIulyV .counter-container ul {
  margin-bottom: 0;
}
.cid-sjOiBIulyV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sjOiBIulyV .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%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
}
.cid-sjJ40WRzii {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjJ40WRzii .mbr-text {
  color: #767676;
}
.cid-sjxLBuSgtP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjxLBuSgtP .mbr-section-subtitle {
  color: #767676;
}
.cid-sjxLBuSgtP .mbr-section-title {
  color: #767676;
}
.cid-sjxLSgYgnG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjxLSgYgnG .mbr-text {
  color: #767676;
}
.cid-qL9ZT0vWKD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qL9ZT0vWKD .mbr-text {
  color: #767676;
}
.cid-uIDlEsXgZ8 {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 45px;
}
.cid-uIDlEsXgZ8 .image-block {
  margin: auto;
}
.cid-uIDlEsXgZ8 figcaption {
  position: relative;
}
.cid-uIDlEsXgZ8 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uIDlEsXgZ8 .image-block {
    width: 100% !important;
  }
}
.cid-uIDJeU9Hrm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIDJeU9Hrm .mbr-section-subtitle {
  color: #767676;
}
.cid-uIDJeU9Hrm ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIDJeU9Hrm ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-uIDJeU9Hrm ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-uIDJeU9Hrm ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-uIDJeU9Hrm .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-uIDJeU9Hrm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIDJeU9Hrm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIDJeU9Hrm .mbr-section-title {
  color: #767676;
}
.cid-uIDJfPIpeg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uIDJfPIpeg .mbr-section-subtitle {
  color: #767676;
}
.cid-uIDJfPIpeg ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIDJfPIpeg ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-uIDJfPIpeg ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-uIDJfPIpeg ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-uIDJfPIpeg .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-uIDJfPIpeg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIDJfPIpeg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIDJfPIpeg .mbr-section-title {
  color: #767676;
}
.cid-sjUXehBfvT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjUXehBfvT .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sjUXehBfvT .carousel-item.active,
.cid-sjUXehBfvT .carousel-item-next,
.cid-sjUXehBfvT .carousel-item-prev {
  display: flex;
}
.cid-sjUXehBfvT .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-sjUXehBfvT .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #f95908;
  opacity: .9;
}
.cid-sjUXehBfvT .carousel-controls a:hover span {
  opacity: 1;
}
.cid-sjUXehBfvT .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #efefef;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-sjUXehBfvT .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sjUXehBfvT .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sjUXehBfvT .user_text {
  color: #767676;
}
.cid-sjUXehBfvT .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-sjUXehBfvT .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-sjUXehBfvT .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sjUXehBfvT .mbr-section-title {
  color: #767676;
}
.cid-sjUXehBfvT .user_name {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLyR9fP8XG {
  padding-top: 105px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/00-fossiland-header-1500x1000.webp");
}
.cid-rLyR9fP8XG .mbr-overlay {
  background: #ffffff;
}
.cid-rLyR9fP8XG .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rLyR9fP8XG .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rLyR9fP8XG .mbr-section-title B {
  color: #f95908;
}
.cid-rLyR9fP8XG .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLyR9fP8XG .mbr-text,
.cid-rLyR9fP8XG .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-t7CrT4LUab {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7CrT4LUab .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t7CrT4LUab .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-t7CrT4LUab .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t7CrT4LUab .inner-container {
    width: 100% !important;
  }
}
.cid-qLavsRNYbw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qLavsRNYbw .mbr-text {
  color: #767676;
}
.cid-sjJGuUUdKV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjJGuUUdKV .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  line-height: 1.6;
}
.cid-sjJGuUUdKV .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-sjJGuUUdKV .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sjJGuUUdKV .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-sjJGuUUdKV .card-overlay {
  display: none;
  background: #ffffff;
}
@media (min-width: 768px) {
  .cid-sjJGuUUdKV .image-element:hover .card-overlay {
    opacity: 0.4;
    border-bottom-right-radius: 7rem;
  }
  .cid-sjJGuUUdKV .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-sjJGuUUdKV .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-sjJGuUUdKV .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-sjJGuUUdKV .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sjJGuUUdKV .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sjJGuUUdKV .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sjJGuUUdKV .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sjJGuUUdKV .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-sjJGuUUdKV .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-sjJGuUUdKV .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-sjJGuUUdKV .card-title,
  .cid-sjJGuUUdKV .underline,
  .cid-sjJGuUUdKV .mbr-text,
  .cid-sjJGuUUdKV .mbr-section-btn,
  .cid-sjJGuUUdKV .mbr-section-subtitle,
  .cid-sjJGuUUdKV .mbr-section-title {
    text-align: center !important;
  }
  .cid-sjJGuUUdKV .wrapper {
    background-color: #ffffff;
  }
}
.cid-sjJGuUUdKV .mbr-section-title {
  text-align: left;
}
.cid-sjJGuUUdKV .mbr-section-title,
.cid-sjJGuUUdKV .underline {
  color: #767676;
  text-align: center;
}
.cid-sjJFPnXjOP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjJFPnXjOP .mbr-section-subtitle {
  color: #767676;
}
.cid-sjJFPnXjOP .mbr-section-title {
  color: #767676;
}
.cid-sjJG8qkKUw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjJG8qkKUw .mbr-text {
  color: #767676;
}
.cid-sjyhJqaqJf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjyhJqaqJf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjyhJqaqJf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjyhJqaqJf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjyhJqaqJf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjyhJqaqJf .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-sjyhJqaqJf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjyhJqaqJf .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sjyhJqaqJf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjyhJqaqJf .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-sjPXEQgTqL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjPXEQgTqL .mbr-text {
  color: #767676;
}
.cid-sjJUxHlqe6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjJUxHlqe6 .mbr-text {
  color: #767676;
}
.cid-sjNtSOTpVR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjNtSOTpVR .counter-container {
  color: #767676;
}
.cid-sjNtSOTpVR .counter-container ul {
  margin-bottom: 0;
}
.cid-sjNtSOTpVR .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sjNtSOTpVR .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%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-sjIePqggue {
  padding-top: 15px;
  padding-bottom: 30px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sjIePqggue .mbr-section-subtitle {
  color: #767676;
}
.cid-sjIePqggue .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjIePqggue .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjIePqggue .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjIePqggue .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjIePqggue .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-sjIePqggue .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sjIePqggue .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-sjIePqggue .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sjIePqggue .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-sjIePqggue .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-sjIePqggue ul {
  font-size: 0;
}
.cid-sjIePqggue .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sjIePqggue .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #ffffff !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sjIePqggue .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sjIePqggue .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sjIePqggue .mbr-gallery-filter ul li:first-child,
.cid-sjIePqggue .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sjIePqggue .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sjIePqggue .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sjIePqggue .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sjIePqggue .btn.active:after {
  animation: none;
}
.cid-sjIePqggue .btn:active {
  box-shadow: none !important;
}
.cid-sjIePqggue .btn:hover {
  background: transparent !important;
}
.cid-sjIePqggue .btn:hover:before {
  background: transparent !important;
}
.cid-sjIePqggue .btn:before {
  background-color: transparent !important;
}
.cid-sjIePqggue .btn:focus {
  box-shadow: none !important;
}
.cid-sjK0wPLlx9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjK0wPLlx9 .mbr-section-subtitle {
  color: #767676;
}
.cid-sjK0wPLlx9 .mbr-section-title {
  color: #767676;
}
.cid-qLavsTiq19 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLavsTiq19 .mbr-text {
  color: #767676;
}
.cid-sjUX5qGZlU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjUX5qGZlU .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sjUX5qGZlU .carousel-item.active,
.cid-sjUX5qGZlU .carousel-item-next,
.cid-sjUX5qGZlU .carousel-item-prev {
  display: flex;
}
.cid-sjUX5qGZlU .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-sjUX5qGZlU .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #f95908;
  opacity: .9;
}
.cid-sjUX5qGZlU .carousel-controls a:hover span {
  opacity: 1;
}
.cid-sjUX5qGZlU .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #efefef;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-sjUX5qGZlU .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sjUX5qGZlU .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sjUX5qGZlU .user_text {
  color: #767676;
}
.cid-sjUX5qGZlU .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-sjUX5qGZlU .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-sjUX5qGZlU .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sjUX5qGZlU .mbr-section-title {
  color: #767676;
}
.cid-sjUX5qGZlU .user_name {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLyRuZ86QH {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/fossilien-vermittlung-messe-header-860x387.webp");
}
.cid-rLyRuZ86QH .mbr-overlay {
  background: #ffffff;
}
.cid-rLyRuZ86QH .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rLyRuZ86QH .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rLyRuZ86QH .mbr-section-title B {
  color: #f95908;
}
.cid-rLyRuZ86QH .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLyRuZ86QH .mbr-text,
.cid-rLyRuZ86QH .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-t7CrqFWXeO {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7CrqFWXeO .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t7CrqFWXeO .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-t7CrqFWXeO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t7CrqFWXeO .inner-container {
    width: 100% !important;
  }
}
.cid-sjIhXK4srh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjIhXK4srh .mbr-text {
  color: #767676;
}
.cid-sjIhZ4X8gM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjIhZ4X8gM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjIhZ4X8gM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjIhZ4X8gM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjIhZ4X8gM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjIhZ4X8gM .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-sjIhZ4X8gM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjIhZ4X8gM .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sjIhZ4X8gM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjIhZ4X8gM .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-sjIi3lELgS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjIi3lELgS .mbr-text {
  color: #767676;
}
.cid-sjOwP3kS7W {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjOwP3kS7W .counter-container {
  color: #767676;
}
.cid-sjOwP3kS7W .counter-container ul {
  margin-bottom: 0;
}
.cid-sjOwP3kS7W .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sjOwP3kS7W .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%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-sjOwDmpU95 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjOwDmpU95 .mbr-section-subtitle {
  color: #767676;
}
.cid-sjOwDmpU95 .mbr-section-title {
  color: #767676;
}
.cid-qLaj8hrbL6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qLaj8hrbL6 .row-element,
.cid-qLaj8hrbL6 .image-element {
  padding: 0;
}
.cid-qLaj8hrbL6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qLaj8hrbL6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qLaj8hrbL6 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qLaj8hrbL6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qLaj8hrbL6 .mbr-title,
  .cid-qLaj8hrbL6 .underline,
  .cid-qLaj8hrbL6 .mbr-text,
  .cid-qLaj8hrbL6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qLaj8hrbL6 .mbr-text,
.cid-qLaj8hrbL6 .mbr-section-btn {
  color: #767676;
}
.cid-qLaj8hrbL6 .mbr-section-subtitle {
  color: #232323;
}
.cid-qLaj8hrbL6 .mbr-title {
  color: #767676;
}
.cid-qLaqE0NCA5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLaqE0NCA5 .mbr-text {
  color: #767676;
}
.cid-sjONrFph8Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjONrFph8Y .main {
  flex-direction: row-reverse;
}
.cid-sjONrFph8Y .row-element,
.cid-sjONrFph8Y .image-element {
  padding: 0;
}
.cid-sjONrFph8Y .image-element {
  display: flex;
  justify-content: center;
}
.cid-sjONrFph8Y .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sjONrFph8Y .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-sjONrFph8Y .text-content {
    padding: 2rem 1rem;
  }
  .cid-sjONrFph8Y .mbr-title,
  .cid-sjONrFph8Y .underline,
  .cid-sjONrFph8Y .mbr-text,
  .cid-sjONrFph8Y .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sjONrFph8Y .mbr-text,
.cid-sjONrFph8Y .mbr-section-btn {
  color: #767676;
}
.cid-sjONrFph8Y .mbr-section-subtitle {
  color: #767676;
}
.cid-sjONrFph8Y .mbr-title {
  color: #767676;
}
.cid-qLarn2wLPd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLarn2wLPd .mbr-text {
  color: #767676;
}
.cid-tLpJIvvefw {
  padding-top: 15px;
  padding-bottom: 30px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tLpJIvvefw .mbr-section-subtitle {
  color: #767676;
}
.cid-tLpJIvvefw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLpJIvvefw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLpJIvvefw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLpJIvvefw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLpJIvvefw .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-tLpJIvvefw .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLpJIvvefw .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-tLpJIvvefw .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLpJIvvefw .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-tLpJIvvefw .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-tLpJIvvefw ul {
  font-size: 0;
}
.cid-tLpJIvvefw .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tLpJIvvefw .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #ffffff !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLpJIvvefw .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLpJIvvefw .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLpJIvvefw .mbr-gallery-filter ul li:first-child,
.cid-tLpJIvvefw .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLpJIvvefw .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLpJIvvefw .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tLpJIvvefw .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLpJIvvefw .btn.active:after {
  animation: none;
}
.cid-tLpJIvvefw .btn:active {
  box-shadow: none !important;
}
.cid-tLpJIvvefw .btn:hover {
  background: transparent !important;
}
.cid-tLpJIvvefw .btn:hover:before {
  background: transparent !important;
}
.cid-tLpJIvvefw .btn:before {
  background-color: transparent !important;
}
.cid-tLpJIvvefw .btn:focus {
  box-shadow: none !important;
}
.cid-tLpJv2MV9X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLpJv2MV9X .mbr-text {
  color: #767676;
}
.cid-sjOVmzCAHx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjOVmzCAHx .row-element,
.cid-sjOVmzCAHx .image-element {
  padding: 0;
}
.cid-sjOVmzCAHx .image-element {
  display: flex;
  justify-content: center;
}
.cid-sjOVmzCAHx .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sjOVmzCAHx .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-sjOVmzCAHx .text-content {
    padding: 2rem 1rem;
  }
  .cid-sjOVmzCAHx .mbr-title,
  .cid-sjOVmzCAHx .underline,
  .cid-sjOVmzCAHx .mbr-text,
  .cid-sjOVmzCAHx .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sjOVmzCAHx .mbr-text,
.cid-sjOVmzCAHx .mbr-section-btn {
  color: #767676;
}
.cid-sjOVmzCAHx .mbr-section-subtitle {
  color: #767676;
}
.cid-sjOVmzCAHx .mbr-title {
  color: #767676;
}
.cid-qLas4lIC0c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLas4lIC0c .mbr-text {
  color: #767676;
}
.cid-sjP5GsZosT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjP5GsZosT .counter-container {
  color: #767676;
}
.cid-sjP5GsZosT .counter-container ul {
  margin-bottom: 0;
}
.cid-sjP5GsZosT .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sjP5GsZosT .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%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-sjP7j1bHRJ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjP7j1bHRJ .main {
  flex-direction: row-reverse;
}
.cid-sjP7j1bHRJ .row-element,
.cid-sjP7j1bHRJ .image-element {
  padding: 0;
}
.cid-sjP7j1bHRJ .image-element {
  display: flex;
  justify-content: center;
}
.cid-sjP7j1bHRJ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sjP7j1bHRJ .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-sjP7j1bHRJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-sjP7j1bHRJ .mbr-title,
  .cid-sjP7j1bHRJ .underline,
  .cid-sjP7j1bHRJ .mbr-text,
  .cid-sjP7j1bHRJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sjP7j1bHRJ .mbr-text,
.cid-sjP7j1bHRJ .mbr-section-btn {
  color: #767676;
}
.cid-sjP7j1bHRJ .mbr-section-subtitle {
  color: #767676;
}
.cid-sjP7j1bHRJ .mbr-title {
  color: #767676;
}
.cid-sjPboeJARY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjPboeJARY .mbr-text {
  color: #767676;
}
.cid-sjPeKMusPk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjPeKMusPk .mbr-section-subtitle {
  color: #767676;
}
.cid-sjPeKMusPk .mbr-section-title {
  color: #767676;
}
.cid-sjU9jzvVKT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjU9jzvVKT .mbr-text {
  color: #767676;
}
.cid-qLabtyam69 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qLabtyam69 .mbr-text {
  color: #767676;
}
.cid-sjTQhkmTCf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjTQhkmTCf .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sjTQhkmTCf .carousel-item.active,
.cid-sjTQhkmTCf .carousel-item-next,
.cid-sjTQhkmTCf .carousel-item-prev {
  display: flex;
}
.cid-sjTQhkmTCf .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-sjTQhkmTCf .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #f95908;
  opacity: .9;
}
.cid-sjTQhkmTCf .carousel-controls a:hover span {
  opacity: 1;
}
.cid-sjTQhkmTCf .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #efefef;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-sjTQhkmTCf .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sjTQhkmTCf .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sjTQhkmTCf .user_text {
  color: #767676;
}
.cid-sjTQhkmTCf .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-sjTQhkmTCf .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-sjTQhkmTCf .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sjTQhkmTCf .mbr-section-title {
  color: #767676;
}
.cid-sjTQhkmTCf .user_name {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLySfweO10 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fossilien-praeparation-header-910x500.webp");
}
.cid-rLySfweO10 .mbr-overlay {
  background: #ffffff;
}
.cid-rLySfweO10 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rLySfweO10 .mbr-section-subtitle {
  color: #f95908;
}
.cid-rLySfweO10 .mbr-section-title B {
  color: #f95908;
}
.cid-rLySfweO10 .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLySfweO10 .mbr-text,
.cid-rLySfweO10 .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-qLa3sAtubQ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qLa3sAtubQ .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qLa3sAtubQ .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-qLa3sAtubQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qLa3sAtubQ .inner-container {
    width: 100% !important;
  }
}
.cid-qLa3sB7Vrp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qLa3sB7Vrp .mbr-text {
  color: #767676;
}
.cid-qLa42UrKQK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLa42UrKQK .row-element,
.cid-qLa42UrKQK .image-element {
  padding: 0;
}
.cid-qLa42UrKQK .image-element {
  display: flex;
  justify-content: center;
}
.cid-qLa42UrKQK .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qLa42UrKQK .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qLa42UrKQK .text-content {
    padding: 2rem 1rem;
  }
  .cid-qLa42UrKQK .mbr-title,
  .cid-qLa42UrKQK .mbr-text,
  .cid-qLa42UrKQK .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qLa42UrKQK .mbr-text,
.cid-qLa42UrKQK .mbr-section-btn {
  color: #767676;
}
.cid-qLa42UrKQK .mbr-title {
  color: #767676;
}
.cid-qLa3sCASUX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLa3sCASUX .mbr-text {
  color: #767676;
}
.cid-qLa3sDcegX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qLa3sDcegX .counter-container {
  color: #767676;
}
.cid-qLa3sDcegX .counter-container ul {
  margin-bottom: 0;
}
.cid-qLa3sDcegX .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-qLa3sDcegX .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-qLa3sDcegX .mbr-text UL {
  color: #767676;
}
.cid-qLa3sDcegX .mbr-text {
  color: #767676;
}
.cid-qLa3sDNs51 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLa3sDNs51 .mbr-text {
  color: #767676;
}
.cid-qLa96vdgd9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLa96vdgd9 .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qLa96vdgd9 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-qLa96vdgd9 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-qLa96vdgd9 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qLa96vdgd9 .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: #ca4336;
}
.cid-qLa96vdgd9 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qLa96vdgd9 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-qLa96vdgd9 .mbr-card-text {
  margin: 0;
}
.cid-qLa96vdgd9 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-utJew0x7WU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-utJew0x7WU .mbr-text {
  color: #767676;
}
.cid-utJfckNgMx {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-utJfckNgMx .container-fluid {
  padding: 0 3rem;
}
.cid-utJfckNgMx .image-block {
  position: relative;
  margin: auto;
}
.cid-utJfckNgMx .image-block img {
  width: 100%;
}
.cid-utJfckNgMx .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-utJfckNgMx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-utJfckNgMx .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-utJfckNgMx .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIyAz6nifr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIyAz6nifr .mbr-text {
  color: #767676;
}
.cid-uIyBwlovcZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIyBwlovcZ .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uIyBwlovcZ .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-uIyBwlovcZ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uIyBwlovcZ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uIyBwlovcZ .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: #ca4336;
}
.cid-uIyBwlovcZ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uIyBwlovcZ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uIyBwlovcZ .mbr-card-text {
  margin: 0;
}
.cid-uIyBwlovcZ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uIyBxfGdWL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIyBxfGdWL .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uIyBxfGdWL .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-uIyBxfGdWL .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uIyBxfGdWL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uIyBxfGdWL .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: #ca4336;
}
.cid-uIyBxfGdWL .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uIyBxfGdWL .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uIyBxfGdWL .mbr-card-text {
  margin: 0;
}
.cid-uIyBxfGdWL .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-utJjL79Fbg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-utJjL79Fbg .mbr-text {
  color: #767676;
}
.cid-qLa3sF1TaX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qLa3sF1TaX .mbr-text {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLyWu5v1T7 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/00-fossiland-header-1500x1000.webp");
}
.cid-rLyWu5v1T7 .mbr-overlay {
  background: #ffffff;
}
.cid-rLyWu5v1T7 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rLyWu5v1T7 .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rLyWu5v1T7 .mbr-section-title B {
  color: #f95908;
}
.cid-rLyWu5v1T7 .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLyWu5v1T7 .mbr-text,
.cid-rLyWu5v1T7 .mbr-section-btn {
  color: #767676;
}
.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-qLeetlup6W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qLeetlup6W .mbr-text {
  color: #767676;
}
.cid-u0BYPu5jwg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u0BYPu5jwg .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-u0BYPu5jwg .btn {
  margin: 0 0 .5rem 0;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLyWRCEZpk {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/00-fossiland-header-1500x1000.webp");
}
.cid-rLyWRCEZpk .mbr-overlay {
  background: #ffffff;
}
.cid-rLyWRCEZpk .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rLyWRCEZpk .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rLyWRCEZpk .mbr-section-title B {
  color: #f95908;
}
.cid-rLyWRCEZpk .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLyWRCEZpk .mbr-text,
.cid-rLyWRCEZpk .mbr-section-btn {
  color: #f95908;
  text-align: left;
}
.cid-qLfDegkT1d {
  padding-top: 60px;
  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: 30px;
  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: 0px;
  background-color: #ffffff;
}
.cid-qLfDeig8De .mbr-text {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLyW7v0SDZ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/00-fossiland-header-1500x1000.webp");
}
.cid-rLyW7v0SDZ .mbr-overlay {
  background: #ffffff;
}
.cid-rLyW7v0SDZ .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-rLyW7v0SDZ .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-rLyW7v0SDZ .mbr-section-title B {
  color: #f95908;
}
.cid-rLyW7v0SDZ .mbr-section-subtitle B {
  color: #f95908;
}
.cid-rLyW7v0SDZ .mbr-text,
.cid-rLyW7v0SDZ .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-qLeanNgi9h {
  padding-top: 60px;
  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-qLefahkgV4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qLefahkgV4 .form-control {
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-qLefahkgV4 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-qLefahkgV4 input::-webkit-input-placeholder {
  color: #767676;
}
.cid-qLefahkgV4 input::-moz-placeholder {
  color: #767676;
}
.cid-qLefahkgV4 textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-qLefahkgV4 textarea::-moz-placeholder {
  color: #767676;
}
.cid-qLefahkgV4 .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: 0px;
  padding-bottom: 30px;
  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: #767676;
}
.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-tLpVN2MHfp {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 60px;
}
.cid-tLpVN2MHfp .image-block {
  margin: auto;
}
.cid-tLpVN2MHfp figcaption {
  position: relative;
}
.cid-tLpVN2MHfp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLpVN2MHfp .image-block {
    width: 100% !important;
  }
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0BYi55pyR {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/00-fossiland-header-1500x1000.webp");
}
.cid-u0BYi55pyR .mbr-overlay {
  background: #ffffff;
}
.cid-u0BYi55pyR .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-u0BYi55pyR .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-u0BYi55pyR .mbr-section-title B {
  color: #f95908;
}
.cid-u0BYi55pyR .mbr-section-subtitle B {
  color: #f95908;
}
.cid-u0BYi55pyR .mbr-text,
.cid-u0BYi55pyR .mbr-section-btn {
  color: #767676;
}
.cid-u0BYi5Rssn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u0BYi5Rssn .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0BYi5Rssn .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u0BYi5Rssn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0BYi5Rssn .inner-container {
    width: 100% !important;
  }
}
.cid-u0BYi68syo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u0BYi68syo .mbr-text {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3eCdYNtke {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fossilien-versicherung-1000x562.webp");
}
.cid-u3eCdYNtke .mbr-overlay {
  background: #ffffff;
}
.cid-u3eCdYNtke .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-u3eCdYNtke .mbr-section-subtitle {
  color: #f95908;
}
.cid-u3eCdYNtke .mbr-section-title B {
  color: #f95908;
}
.cid-u3eCdYNtke .mbr-section-subtitle B {
  color: #f95908;
}
.cid-u3eCdYNtke .mbr-text,
.cid-u3eCdYNtke .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-u3eCdZ2bQ4 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3eCdZ2bQ4 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u3eCdZ2bQ4 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u3eCdZ2bQ4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u3eCdZ2bQ4 .inner-container {
    width: 100% !important;
  }
}
.cid-u3eCdZ9cLW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3eCdZ9cLW .mbr-text {
  color: #767676;
}
.cid-u3eSXXXin9 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3eSXXXin9 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u3eSXXXin9 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u3eSXXXin9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u3eSXXXin9 .inner-container {
    width: 100% !important;
  }
}
.cid-u3eRScTtqA {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-u3eRScTtqA .images-container.container-fluid {
  padding: 0;
}
.cid-u3eRScTtqA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-u3eRScTtqA .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-u3eRScTtqA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u3eRScTtqA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u3eRScTtqA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u3eRScTtqA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u3eRScTtqA .img-item {
    width: 100% !important;
  }
  .cid-u3eRScTtqA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-u3eCdZywDB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3eCdZywDB .mbr-text {
  color: #767676;
}
.cid-u3eUMmNlT9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3eUMmNlT9 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u3eUMmNlT9 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u3eUMmNlT9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u3eUMmNlT9 .inner-container {
    width: 100% !important;
  }
}
.cid-u3eCe0gBGh {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3eCe0gBGh .mbr-text {
  color: #767676;
}
.cid-u3eCe07rK4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u3eCe07rK4 .counter-container {
  color: #767676;
}
.cid-u3eCe07rK4 .counter-container ul {
  margin-bottom: 0;
}
.cid-u3eCe07rK4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-u3eCe07rK4 .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%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u3eCe07rK4 .mbr-text {
  color: #767676;
}
.cid-u3eCe1pDFS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3eCe1pDFS .mbr-text {
  color: #767676;
}
.cid-u3f0RZjFI3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3f0RZjFI3 .counter-container {
  color: #767676;
}
.cid-u3f0RZjFI3 .counter-container ul {
  margin-bottom: 0;
}
.cid-u3f0RZjFI3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-u3f0RZjFI3 .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%;
}
.cid-u3f0RZjFI3 .mbr-text {
  color: #767676;
}
.cid-u3eCe0PZT7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-u3eCe0PZT7 .mbr-text {
  color: #767676;
}
.cid-u3f47Sj1gJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u3f47Sj1gJ .mbr-text {
  color: #767676;
}
.cid-u3eZpa0Mfw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3eZpa0Mfw .mbr-text {
  color: #767676;
}
.cid-u3f31lGZjT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3f31lGZjT .counter-container {
  color: #767676;
}
.cid-u3f31lGZjT .counter-container ul {
  margin-bottom: 0;
}
.cid-u3f31lGZjT .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-u3f31lGZjT .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%;
}
.cid-u3f31lGZjT .mbr-text {
  color: #767676;
}
.cid-u3eCe0xhZ5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3eCe0xhZ5 .mbr-text {
  color: #767676;
}
.cid-u3f33X6HMi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3f33X6HMi .mbr-text {
  color: #767676;
}
.cid-u3eCe0F6Cz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3eCe0F6Cz .counter-container {
  color: #767676;
}
.cid-u3eCe0F6Cz .counter-container ul {
  margin-bottom: 0;
}
.cid-u3eCe0F6Cz .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-u3eCe1Aoh3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u3eCe1Aoh3 .mbr-text {
  color: #767676;
}
.cid-u3f9ymUwyY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u3f9ymUwyY .mbr-text {
  color: #767676;
}
.cid-u3fa90gXj2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3fa90gXj2 .mbr-text {
  color: #767676;
}
.cid-u3fliVHNkJ {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u3fliVHNkJ .container-fluid {
  padding: 0 3rem;
}
.cid-u3fliVHNkJ .image-block {
  position: relative;
  margin: auto;
}
.cid-u3fliVHNkJ .image-block img {
  width: 100%;
}
.cid-u3fliVHNkJ .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-u3fliVHNkJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u3fliVHNkJ .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-u3fliVHNkJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u3flGhOnqj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3flGhOnqj .mbr-text {
  color: #767676;
}
.cid-u3foU8QezO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3foU8QezO .mbr-text {
  color: #767676;
}
.cid-u3ftHmIRRE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u3ftHmIRRE .mbr-text {
  color: #767676;
}
.cid-u3ftZvPE5f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3ftZvPE5f .mbr-text {
  color: #767676;
}
.cid-uIDKoI6BZE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIDKoI6BZE .mbr-section-subtitle {
  color: #767676;
}
.cid-uIDKoI6BZE ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIDKoI6BZE ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-uIDKoI6BZE ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-uIDKoI6BZE ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-uIDKoI6BZE .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-uIDKoI6BZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIDKoI6BZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIDKoI6BZE .mbr-section-title {
  color: #767676;
}
.cid-uIDKpt54tE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uIDKpt54tE .mbr-section-subtitle {
  color: #767676;
}
.cid-uIDKpt54tE ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIDKpt54tE ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-uIDKpt54tE ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-uIDKpt54tE ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-uIDKpt54tE .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-uIDKpt54tE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIDKpt54tE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIDKpt54tE .mbr-section-title {
  color: #767676;
}
.cid-u3eCe2dvP6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u3eCe2dvP6 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3eCe2dvP6 .carousel-item.active,
.cid-u3eCe2dvP6 .carousel-item-next,
.cid-u3eCe2dvP6 .carousel-item-prev {
  display: flex;
}
.cid-u3eCe2dvP6 .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-u3eCe2dvP6 .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #f95908;
  opacity: .9;
}
.cid-u3eCe2dvP6 .carousel-controls a:hover span {
  opacity: 1;
}
.cid-u3eCe2dvP6 .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #efefef;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-u3eCe2dvP6 .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-u3eCe2dvP6 .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-u3eCe2dvP6 .user_text {
  color: #767676;
}
.cid-u3eCe2dvP6 .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-u3eCe2dvP6 .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-u3eCe2dvP6 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-u3eCe2dvP6 .mbr-section-title {
  color: #767676;
}
.cid-u3eCe2dvP6 .user_name {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1r13VvODr {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/holzmaden-ankauf-ichthyosaurier-header-1181x400.webp");
}
.cid-u1r13VvODr .mbr-overlay {
  background: #ffffff;
}
.cid-u1r13VvODr .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-u1r13VvODr .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-u1r13VvODr .mbr-section-title B {
  color: #f95908;
}
.cid-u1r13VvODr .mbr-section-subtitle B {
  color: #f95908;
}
.cid-u1r13VvODr .mbr-text,
.cid-u1r13VvODr .mbr-section-btn {
  color: #ffffff;
}
.cid-u1r13VIZrO {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u1r13VIZrO .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u1r13VIZrO .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u1r13VIZrO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u1r13VIZrO .inner-container {
    width: 100% !important;
  }
}
.cid-u1r13VQ5U4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1r13VQ5U4 .mbr-text {
  color: #767676;
}
.cid-u1rCDiLpQL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1rCDiLpQL .card {
  display: block;
  position: relative;
}
.cid-u1rCDiLpQL .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-u1rCDiLpQL .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-u1rCDiLpQL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-u1rCDiLpQL .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: #f95908;
}
.cid-u1rCDiLpQL .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-u1rCDiLpQL .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-u1rCDiLpQL .mbr-card-text {
  margin: 0;
}
.cid-u1rCDiLpQL .mbr-section-title {
  text-align: center;
}
.cid-u1rCDiLpQL .mbr-title {
  color: #f95908;
}
.cid-u1rCDiLpQL .mbr-card-text,
.cid-u1rCDiLpQL .mbr-section-btn {
  color: #767676;
}
.cid-u1sgMf8cJ2 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u1sgMf8cJ2 .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u1sgMf8cJ2 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u1sgMf8cJ2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u1sgMf8cJ2 .inner-container {
    width: 100% !important;
  }
}
.cid-u1sghkHcCF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1sghkHcCF .counter-container {
  color: #767676;
}
.cid-u1sghkHcCF .counter-container ul {
  margin-bottom: 0;
}
.cid-u1sghkHcCF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1sghkHcCF .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sp0absoz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sp0absoz .mbr-text,
.cid-u1sp0absoz blockquote {
  color: #767676;
}
.cid-u1sp0absoz .mbr-text DIV {
  text-align: left;
}
.cid-u1shMZqMkA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1shMZqMkA .counter-container {
  color: #767676;
}
.cid-u1shMZqMkA .counter-container ul {
  margin-bottom: 0;
}
.cid-u1shMZqMkA .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1shMZqMkA .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sp2znW2l {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sp2znW2l .mbr-text,
.cid-u1sp2znW2l blockquote {
  color: #767676;
}
.cid-u1sp2znW2l .mbr-text DIV {
  text-align: left;
}
.cid-u1shNFnyuE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1shNFnyuE .counter-container {
  color: #767676;
}
.cid-u1shNFnyuE .counter-container ul {
  margin-bottom: 0;
}
.cid-u1shNFnyuE .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1shNFnyuE .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sp3erL2K {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sp3erL2K .mbr-text,
.cid-u1sp3erL2K blockquote {
  color: #767676;
}
.cid-u1sp3erL2K .mbr-text DIV {
  text-align: left;
}
.cid-u1shOdrM7K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1shOdrM7K .counter-container {
  color: #767676;
}
.cid-u1shOdrM7K .counter-container ul {
  margin-bottom: 0;
}
.cid-u1shOdrM7K .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1shOdrM7K .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sp3JhctG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sp3JhctG .mbr-text,
.cid-u1sp3JhctG blockquote {
  color: #767676;
}
.cid-u1sp3JhctG .mbr-text DIV {
  text-align: left;
}
.cid-u1shOI9R9w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1shOI9R9w .counter-container {
  color: #767676;
}
.cid-u1shOI9R9w .counter-container ul {
  margin-bottom: 0;
}
.cid-u1shOI9R9w .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1shOI9R9w .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sp4cEuBX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sp4cEuBX .mbr-text,
.cid-u1sp4cEuBX blockquote {
  color: #767676;
}
.cid-u1sp4cEuBX .mbr-text DIV {
  text-align: left;
}
.cid-u1r13WA694 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1r13WA694 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1r13WA694 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1r13WA694 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1r13WA694 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1r13WA694 .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-u1r13WA694 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1r13WA694 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-u1r13WA694 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1r13WA694 .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-u1r13XN8Ud {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1r13XN8Ud .mbr-text {
  color: #767676;
}
.cid-u1r13XYkda {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1r13XYkda .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1r13XYkda .carousel-item.active,
.cid-u1r13XYkda .carousel-item-next,
.cid-u1r13XYkda .carousel-item-prev {
  display: flex;
}
.cid-u1r13XYkda .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-u1r13XYkda .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #f95908;
  opacity: .9;
}
.cid-u1r13XYkda .carousel-controls a:hover span {
  opacity: 1;
}
.cid-u1r13XYkda .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #efefef;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-u1r13XYkda .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-u1r13XYkda .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-u1r13XYkda .user_text {
  color: #767676;
}
.cid-u1r13XYkda .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-u1r13XYkda .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-u1r13XYkda .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-u1r13XYkda .mbr-section-title {
  color: #767676;
}
.cid-u1r13XYkda .user_name {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1sCeLn6B2 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ankauf-bundenbach-header-1040x450.webp");
}
.cid-u1sCeLn6B2 .mbr-overlay {
  background: #ffffff;
}
.cid-u1sCeLn6B2 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-u1sCeLn6B2 .mbr-section-subtitle {
  color: #f95908;
  text-align: left;
}
.cid-u1sCeLn6B2 .mbr-section-title B {
  color: #f95908;
}
.cid-u1sCeLn6B2 .mbr-section-subtitle B {
  color: #f95908;
}
.cid-u1sCeLn6B2 .mbr-text,
.cid-u1sCeLn6B2 .mbr-section-btn {
  color: #ffffff;
}
.cid-u1sCeLAdOp {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u1sCeLAdOp .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u1sCeLAdOp .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u1sCeLAdOp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u1sCeLAdOp .inner-container {
    width: 100% !important;
  }
}
.cid-u1sCeLH887 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sCeLH887 .mbr-text {
  color: #767676;
}
.cid-u1sHqp1awF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sHqp1awF .card {
  display: block;
  position: relative;
}
.cid-u1sHqp1awF .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-u1sHqp1awF .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-u1sHqp1awF .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-u1sHqp1awF .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: #f95908;
}
.cid-u1sHqp1awF .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-u1sHqp1awF .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-u1sHqp1awF .mbr-card-text {
  margin: 0;
}
.cid-u1sHqp1awF .mbr-section-title {
  text-align: center;
}
.cid-u1sHqp1awF .mbr-title {
  color: #149dcc;
}
.cid-u1sHqp1awF .mbr-card-text,
.cid-u1sHqp1awF .mbr-section-btn {
  color: #767676;
}
.cid-u1sCeM7okY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u1sCeM7okY .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u1sCeM7okY .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-u1sCeM7okY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u1sCeM7okY .inner-container {
    width: 100% !important;
  }
}
.cid-u1sCeMef7y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1sCeMef7y .counter-container {
  color: #767676;
}
.cid-u1sCeMef7y .counter-container ul {
  margin-bottom: 0;
}
.cid-u1sCeMef7y .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1sCeMef7y .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sCeMoB64 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sCeMoB64 .mbr-text,
.cid-u1sCeMoB64 blockquote {
  color: #767676;
}
.cid-u1sCeMoB64 .mbr-text DIV {
  text-align: left;
}
.cid-u1sCeMvMfn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1sCeMvMfn .counter-container {
  color: #767676;
}
.cid-u1sCeMvMfn .counter-container ul {
  margin-bottom: 0;
}
.cid-u1sCeMvMfn .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1sCeMvMfn .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sCeMDwms {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sCeMDwms .mbr-text,
.cid-u1sCeMDwms blockquote {
  color: #767676;
}
.cid-u1sCeMDwms .mbr-text DIV {
  text-align: left;
}
.cid-u1vlTuRsbj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1vlTuRsbj .counter-container {
  color: #767676;
}
.cid-u1vlTuRsbj .counter-container ul {
  margin-bottom: 0;
}
.cid-u1vlTuRsbj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1vlTuRsbj .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1vm3ZkfUP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1vm3ZkfUP .mbr-text,
.cid-u1vm3ZkfUP blockquote {
  color: #767676;
}
.cid-u1vm3ZkfUP .mbr-text DIV {
  text-align: left;
}
.cid-u1sCeNdw4i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1sCeNdw4i .counter-container {
  color: #767676;
}
.cid-u1sCeNdw4i .counter-container ul {
  margin-bottom: 0;
}
.cid-u1sCeNdw4i .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1sCeNdw4i .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sCeNlz3O {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sCeNlz3O .mbr-text,
.cid-u1sCeNlz3O blockquote {
  color: #767676;
}
.cid-u1sCeNlz3O .mbr-text DIV {
  text-align: left;
}
.cid-u1sCeMJsAw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1sCeMJsAw .counter-container {
  color: #767676;
}
.cid-u1sCeMJsAw .counter-container ul {
  margin-bottom: 0;
}
.cid-u1sCeMJsAw .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-u1sCeMJsAw .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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #f95908;
  color: #f95908;
  content: '✓';
}
.cid-u1sCeMRjgI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sCeMRjgI .mbr-text,
.cid-u1sCeMRjgI blockquote {
  color: #767676;
}
.cid-u1sCeMRjgI .mbr-text DIV {
  text-align: left;
}
.cid-u1vVh0Ff2c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1vVh0Ff2c .card {
  display: block;
  position: relative;
}
.cid-u1vVh0Ff2c .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-u1vVh0Ff2c .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-u1vVh0Ff2c .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-u1vVh0Ff2c .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: #f95908;
}
.cid-u1vVh0Ff2c .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-u1vVh0Ff2c .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-u1vVh0Ff2c .mbr-card-text {
  margin: 0;
}
.cid-u1vVh0Ff2c .mbr-section-title {
  text-align: center;
}
.cid-u1vVh0Ff2c .mbr-title {
  color: #149dcc;
}
.cid-u1vVh0Ff2c .mbr-card-text,
.cid-u1vVh0Ff2c .mbr-section-btn {
  color: #767676;
}
.cid-u1sCeNHBAe {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u1sCeNHBAe .mbr-text {
  color: #767676;
}
.cid-u1sCeNOiiH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u1sCeNOiiH .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1sCeNOiiH .carousel-item.active,
.cid-u1sCeNOiiH .carousel-item-next,
.cid-u1sCeNOiiH .carousel-item-prev {
  display: flex;
}
.cid-u1sCeNOiiH .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-u1sCeNOiiH .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #f95908;
  opacity: .9;
}
.cid-u1sCeNOiiH .carousel-controls a:hover span {
  opacity: 1;
}
.cid-u1sCeNOiiH .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #efefef;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-u1sCeNOiiH .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-u1sCeNOiiH .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-u1sCeNOiiH .user_text {
  color: #767676;
}
.cid-u1sCeNOiiH .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-u1sCeNOiiH .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-u1sCeNOiiH .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-u1sCeNOiiH .mbr-section-title {
  color: #767676;
}
.cid-u1sCeNOiiH .user_name {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
.cid-uQ6fLb3zlN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #f95908;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .nav-item,
.cid-uQ6fLb3zlN .nav-link,
.cid-uQ6fLb3zlN .navbar-caption {
  font-weight: normal;
}
.cid-uQ6fLb3zlN .nav-item:focus,
.cid-uQ6fLb3zlN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQ6fLb3zlN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link {
    position: relative;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #f95908;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uQ6fLb3zlN .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQ6fLb3zlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQ6fLb3zlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQ6fLb3zlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQ6fLb3zlN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uQ6fLb3zlN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uQ6fLb3zlN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQ6fLb3zlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQ6fLb3zlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQ6fLb3zlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQ6fLb3zlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQ6fLb3zlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQ6fLb3zlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQ6fLb3zlN .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-uQ6fLb3zlN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQ6fLb3zlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQ6fLb3zlN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQ6fLb3zlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQ6fLb3zlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQ6fLb3zlN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQ6fLb3zlN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQ6fLb3zlN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQ6fLb3zlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQ6fLb3zlN .dropdown-item.active,
.cid-uQ6fLb3zlN .dropdown-item:active {
  background-color: transparent;
}
.cid-uQ6fLb3zlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uQ6fLb3zlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQ6fLb3zlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQ6fLb3zlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQ6fLb3zlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQ6fLb3zlN .navbar-buttons {
  text-align: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 4px;
  border-right: 5px;
  background-color: #f95908;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQ6fLb3zlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQ6fLb3zlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQ6fLb3zlN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQ6fLb3zlN a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQ6fLb3zlN .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uQ6fLb3zlN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQ6fLb3zlN .soc-item {
  margin: .5rem .3rem;
}
.cid-uQ6fLb3zlN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQ6fLb3zlN .navbar {
    height: 77px;
  }
  .cid-uQ6fLb3zlN .navbar.opened {
    height: auto;
  }
  .cid-uQ6fLb3zlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIykuMgV4a {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ichthyosaurier-pyritzerfall-header-1000x600.webp");
}
.cid-uIykuMgV4a .mbr-overlay {
  background: #ffffff;
}
.cid-uIykuMgV4a .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-uIykuMgV4a .mbr-section-subtitle {
  color: #f95908;
}
.cid-uIykuMgV4a .mbr-section-title B {
  color: #f95908;
}
.cid-uIykuMgV4a .mbr-section-subtitle B {
  color: #f95908;
}
.cid-uIykuMgV4a .mbr-text,
.cid-uIykuMgV4a .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-uIykuMoVsQ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uIykuMoVsQ .line {
  background-color: #f95908;
  color: #f95908;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uIykuMoVsQ .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #767676;
}
.cid-uIykuMoVsQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uIykuMoVsQ .inner-container {
    width: 100% !important;
  }
}
.cid-uIykuMw9w5 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uIykuMw9w5 .mbr-text {
  color: #767676;
}
.cid-uIykuMC2Qm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIykuMC2Qm .row-element,
.cid-uIykuMC2Qm .image-element {
  padding: 0;
}
.cid-uIykuMC2Qm .image-element {
  display: flex;
  justify-content: center;
}
.cid-uIykuMC2Qm .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uIykuMC2Qm .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uIykuMC2Qm .text-content {
    padding: 2rem 1rem;
  }
  .cid-uIykuMC2Qm .mbr-title,
  .cid-uIykuMC2Qm .mbr-text,
  .cid-uIykuMC2Qm .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uIykuMC2Qm .mbr-text,
.cid-uIykuMC2Qm .mbr-section-btn {
  color: #767676;
}
.cid-uIykuMC2Qm .mbr-title {
  color: #767676;
}
.cid-uIykuMKyPb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIykuMKyPb .mbr-text {
  color: #767676;
}
.cid-uIykuMPVQa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uIykuMPVQa .counter-container {
  color: #767676;
}
.cid-uIykuMPVQa .counter-container ul {
  margin-bottom: 0;
}
.cid-uIykuMPVQa .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-uIykuMPVQa .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-uIykuMPVQa .mbr-text UL {
  color: #767676;
}
.cid-uIykuMPVQa .mbr-text {
  color: #767676;
}
.cid-uIykuMUbfo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIykuMUbfo .mbr-text {
  color: #767676;
}
.cid-uIykuNOrS6 {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-uIykuNOrS6 .container-fluid {
  padding: 0 3rem;
}
.cid-uIykuNOrS6 .image-block {
  position: relative;
  margin: auto;
}
.cid-uIykuNOrS6 .image-block img {
  width: 100%;
}
.cid-uIykuNOrS6 .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uIykuNOrS6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uIykuNOrS6 .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uIykuNOrS6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIDdFycxUv {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uIDdFycxUv .container-fluid {
  padding: 0 3rem;
}
.cid-uIDdFycxUv .image-block {
  position: relative;
  margin: auto;
}
.cid-uIDdFycxUv .image-block img {
  width: 100%;
}
.cid-uIDdFycxUv .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uIDdFycxUv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uIDdFycxUv .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uIDdFycxUv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIDdG6W2nQ {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-uIDdG6W2nQ .container-fluid {
  padding: 0 3rem;
}
.cid-uIDdG6W2nQ .image-block {
  position: relative;
  margin: auto;
}
.cid-uIDdG6W2nQ .image-block img {
  width: 100%;
}
.cid-uIDdG6W2nQ .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uIDdG6W2nQ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uIDdG6W2nQ .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uIDdG6W2nQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIykuNWm5H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIykuNWm5H .mbr-text {
  color: #767676;
}
.cid-uIykuO28Fy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uIykuO28Fy .mbr-text {
  color: #767676;
}
.cid-uIDeHQ1C2Z {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uIDeHQ1C2Z .mbr-text {
  color: #767676;
}
.cid-uX9sA7sXZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f95908;
}
.cid-uX9sA7sXZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX9sA7sXZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX9sA7sXZo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .container {
    padding: 0 16px;
  }
}
.cid-uX9sA7sXZo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uX9sA7sXZo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50;
}
.cid-uX9sA7sXZo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uX9sA7sXZo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uX9sA7sXZo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uX9sA7sXZo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uX9sA7sXZo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uX9sA7sXZo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uX9sA7sXZo .mbr-section-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .copyright {
  color: #ffffff;
  text-align: left;
}
.cid-uX9sA7sXZo .mbr-card-title {
  color: #ffffff;
}
.cid-uX9sA7sXZo .list {
  color: #ffffff;
}
