@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,600,700,800,900,300i,400i,500i,600i,700i,800i,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap);





body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.4rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 5.44rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #13a89c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #08073e !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #13a89c !important;
  border-color: #13a89c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0b635c !important;
  border-color: #0b635c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0b635c !important;
  border-color: #0b635c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #08073e !important;
  border-color: #08073e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #094c47;
  color: #094c47;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #13a89c;
  border-color: #13a89c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #13a89c !important;
  border-color: #13a89c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #08073e;
  border-color: #08073e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #08073e !important;
  border-color: #08073e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #13a89c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #08073e !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #094c47 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #08073e;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4febdf;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #4441ea;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  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: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !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: 100px;
  height: 100px;
  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='%23149dcc' %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.3;
}
.cid-spsf4gYb3E .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-spsf4gYb3E .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spsf4gYb3E a {
  font-style: normal;
}
.cid-spsf4gYb3E .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spsf4gYb3E .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-spsf4gYb3E .nav-item:focus,
.cid-spsf4gYb3E .nav-link:focus {
  outline: none;
}
.cid-spsf4gYb3E .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spsf4gYb3E .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spsf4gYb3E .menu-logo {
  margin-right: auto;
}
.cid-spsf4gYb3E .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spsf4gYb3E .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-spsf4gYb3E .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spsf4gYb3E .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spsf4gYb3E .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-spsf4gYb3E .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spsf4gYb3E .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-spsf4gYb3E .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spsf4gYb3E .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spsf4gYb3E .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spsf4gYb3E .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spsf4gYb3E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spsf4gYb3E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spsf4gYb3E .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spsf4gYb3E .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spsf4gYb3E .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spsf4gYb3E .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-spsf4gYb3E .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spsf4gYb3E .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spsf4gYb3E .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spsf4gYb3E .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-spsf4gYb3E .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spsf4gYb3E button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-spsf4gYb3E button.navbar-toggler:focus {
  outline: none;
}
.cid-spsf4gYb3E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-spsf4gYb3E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spsf4gYb3E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spsf4gYb3E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spsf4gYb3E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spsf4gYb3E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spsf4gYb3E nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spsf4gYb3E nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spsf4gYb3E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spsf4gYb3E .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spsf4gYb3E .collapsed .btn {
  display: -webkit-flex;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse.collapsing,
.cid-spsf4gYb3E .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spsf4gYb3E .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spsf4gYb3E .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-spsf4gYb3E .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spsf4gYb3E .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spsf4gYb3E .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spsf4gYb3E .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spsf4gYb3E .collapsed button.navbar-toggler {
  display: block;
}
.cid-spsf4gYb3E .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spsf4gYb3E .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spsf4gYb3E .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-spsf4gYb3E .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spsf4gYb3E .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spsf4gYb3E .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-spsf4gYb3E .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spsf4gYb3E img {
    height: 3.8rem !important;
  }
  .cid-spsf4gYb3E .btn {
    display: -webkit-flex;
  }
  .cid-spsf4gYb3E button.navbar-toggler {
    display: block;
  }
  .cid-spsf4gYb3E .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spsf4gYb3E .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spsf4gYb3E .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spsf4gYb3E .navbar-collapse.collapsing,
  .cid-spsf4gYb3E .navbar-collapse.show {
    display: block !important;
  }
  .cid-spsf4gYb3E .navbar-collapse.collapsing .navbar-nav,
  .cid-spsf4gYb3E .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spsf4gYb3E .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spsf4gYb3E .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spsf4gYb3E .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-spsf4gYb3E .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-spsf4gYb3E .navbar-collapse.collapsing .navbar-buttons,
  .cid-spsf4gYb3E .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spsf4gYb3E .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spsf4gYb3E .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spsf4gYb3E .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-spsf4gYb3E .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spsf4gYb3E .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spsf4gYb3E .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-spsf4gYb3E .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spsf4gYb3E .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spsf4gYb3E .nav-link:hover,
.cid-spsf4gYb3E .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqwd2xO0CA .modal-body .close {
  background: #1b1b1b;
}
.cid-sqwd2xO0CA .modal-body .close span {
  font-style: normal;
}
.cid-sqwd2xO0CA .carousel-inner > .active,
.cid-sqwd2xO0CA .carousel-inner > .next,
.cid-sqwd2xO0CA .carousel-inner > .prev {
  display: table;
}
.cid-sqwd2xO0CA .carousel-control .icon-next,
.cid-sqwd2xO0CA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sqwd2xO0CA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sqwd2xO0CA .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sqwd2xO0CA .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sqwd2xO0CA .boxed-slider > div {
  position: relative;
}
.cid-sqwd2xO0CA .container img {
  width: 100%;
}
.cid-sqwd2xO0CA .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sqwd2xO0CA .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sqwd2xO0CA .mbr-table-cell {
  padding: 0;
}
.cid-sqwd2xO0CA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sqwd2xO0CA .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sqwd2xO0CA .mbr-overlay {
  z-index: 1;
}
.cid-sqwd2xO0CA .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sqwd2xO0CA .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sqwd2xO0CA .carousel-item .container {
    width: 100%;
  }
}
.cid-sqwd2xO0CA .carousel-item-next.carousel-item-left,
.cid-sqwd2xO0CA .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sqwd2xO0CA .active.carousel-item-right,
.cid-sqwd2xO0CA .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sqwd2xO0CA .active.carousel-item-left,
.cid-sqwd2xO0CA .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sqwd2xO0CA .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sqwd2xO0CA .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators li.active,
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators li::after,
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sqwd2xO0CA .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sqwd2xO0CA .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sqwd2xO0CA .mbr-slider > .container img {
  width: 100%;
}
.cid-sqwd2xO0CA .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sqwd2xO0CA .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sqwd2xO0CA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sqwd2xO0CA .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sqwd2xO0CA .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sqwd2xO0CA .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sqwd2xO0CA .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sqwd2xO0CA .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sqwd2xO0CA .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sqwd2xO0CA .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sqwd2xO0CA .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sqwd2xO0CA .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sqwd2xO0CA .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sqwd2xO0CA H2 {
  text-align: center;
}
.cid-sq92T9aL94 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-sq92T9aL94 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sq92T9aL94 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sq92T9aL94 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sq92T9aL94 .mbr-text {
    text-align: center;
  }
}
.cid-sq92T9aL94 H1 {
  color: #13a89c;
}
.cid-sq92T9aL94 .mbr-text,
.cid-sq92T9aL94 .mbr-section-btn B {
  color: #efefef;
}
.cid-sq8SslQ4FM {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/katie-manning-319921-2000x1500.jpg");
}
@media (min-width: 992px) {
  .cid-sq8SslQ4FM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sq8SslQ4FM .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sq8SslQ4FM .mbr-text {
    text-align: center;
  }
}
.cid-sq8SslQ4FM .mbr-text,
.cid-sq8SslQ4FM .mbr-section-btn {
  color: #ffffff;
}
.cid-sq8SslQ4FM H1 {
  color: #070c46;
}
.cid-tgFmNuDjrx {
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/katie-manning-319921-2000x1500.jpg");
}
@media (min-width: 992px) {
  .cid-tgFmNuDjrx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tgFmNuDjrx .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tgFmNuDjrx .mbr-text {
    text-align: center;
  }
}
.cid-tgFmNuDjrx .mbr-text,
.cid-tgFmNuDjrx .mbr-section-btn {
  color: #ffffff;
}
.cid-tgFmNuDjrx H1 {
  color: #070c46;
}
.cid-tgbXzuGZ2w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #13a89c;
}
.cid-tgbXzuGZ2w .line {
  background-color: #13a89c;
  color: #13a89c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tgbXzuGZ2w .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-tgbXzuGZ2w .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tgbXzuGZ2w .inner-container {
    width: 100% !important;
  }
}
.cid-tgb2f60f3a {
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tgb2f60f3a .card-img {
  background-color: #fff;
}
.cid-tgb2f60f3a .card-box {
  padding: 2rem;
  background-color: #13a89c;
}
.cid-tgb2f60f3a h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgb2f60f3a p {
  text-align: left;
}
.cid-tgb2f60f3a .mbr-text {
  color: #767676;
}
.cid-tgb2f60f3a .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgb2f60f3a .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tgb2f60f3a .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tgb2f60f3a .card-title {
  color: #ffffff;
}
.cid-tgbELH1WCa {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #13a89c;
}
.cid-sq9bGCHHPl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-spstOzxyq8 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-spstOzxyq8 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spstOzxyq8 a {
  font-style: normal;
}
.cid-spstOzxyq8 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spstOzxyq8 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-spstOzxyq8 .nav-item:focus,
.cid-spstOzxyq8 .nav-link:focus {
  outline: none;
}
.cid-spstOzxyq8 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spstOzxyq8 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spstOzxyq8 .menu-logo {
  margin-right: auto;
}
.cid-spstOzxyq8 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spstOzxyq8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-spstOzxyq8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spstOzxyq8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spstOzxyq8 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-spstOzxyq8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spstOzxyq8 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-spstOzxyq8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spstOzxyq8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spstOzxyq8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spstOzxyq8 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spstOzxyq8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spstOzxyq8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spstOzxyq8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spstOzxyq8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spstOzxyq8 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spstOzxyq8 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-spstOzxyq8 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spstOzxyq8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spstOzxyq8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spstOzxyq8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-spstOzxyq8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spstOzxyq8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-spstOzxyq8 button.navbar-toggler:focus {
  outline: none;
}
.cid-spstOzxyq8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-spstOzxyq8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spstOzxyq8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spstOzxyq8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spstOzxyq8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spstOzxyq8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spstOzxyq8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spstOzxyq8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spstOzxyq8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spstOzxyq8 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spstOzxyq8 .collapsed .btn {
  display: -webkit-flex;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse.collapsing,
.cid-spstOzxyq8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spstOzxyq8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spstOzxyq8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-spstOzxyq8 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spstOzxyq8 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spstOzxyq8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spstOzxyq8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spstOzxyq8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-spstOzxyq8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spstOzxyq8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spstOzxyq8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-spstOzxyq8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spstOzxyq8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spstOzxyq8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-spstOzxyq8 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spstOzxyq8 img {
    height: 3.8rem !important;
  }
  .cid-spstOzxyq8 .btn {
    display: -webkit-flex;
  }
  .cid-spstOzxyq8 button.navbar-toggler {
    display: block;
  }
  .cid-spstOzxyq8 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spstOzxyq8 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spstOzxyq8 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spstOzxyq8 .navbar-collapse.collapsing,
  .cid-spstOzxyq8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-spstOzxyq8 .navbar-collapse.collapsing .navbar-nav,
  .cid-spstOzxyq8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spstOzxyq8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spstOzxyq8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spstOzxyq8 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-spstOzxyq8 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-spstOzxyq8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-spstOzxyq8 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spstOzxyq8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spstOzxyq8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spstOzxyq8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-spstOzxyq8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spstOzxyq8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spstOzxyq8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-spstOzxyq8 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spstOzxyq8 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spstOzxyq8 .nav-link:hover,
.cid-spstOzxyq8 .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqcR06NKWJ {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/jasper-boer-20743-2000x1329.jpg");
}
@media (min-width: 992px) {
  .cid-sqcR06NKWJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqcR06NKWJ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sqcR06NKWJ .mbr-text {
    text-align: center;
  }
}
.cid-sqcR06NKWJ H1 {
  color: #232323;
}
.cid-sqcR06NKWJ .mbr-text,
.cid-sqcR06NKWJ .mbr-section-btn {
  color: #232323;
}
.cid-sq9wzvWhsk {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sq9wzvWhsk .mbr-section-subtitle {
  color: #767676;
}
.cid-sq9wzvWhsk H2 {
  color: #767676;
}
.cid-spsvqAEHYr {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/jasper-boer-20743-2000x1329.jpg");
}
@media (min-width: 992px) {
  .cid-spsvqAEHYr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-spsvqAEHYr .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-spsvqAEHYr .mbr-text {
    text-align: center;
  }
}
.cid-spsvqAEHYr H1 {
  color: #232323;
}
.cid-spsvqAEHYr .mbr-text,
.cid-spsvqAEHYr .mbr-section-btn {
  color: #232323;
}
.cid-spszkY1lu6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-spszkY1lu6 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-spszkY1lu6 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-spszkY1lu6 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-spszkY1lu6 .mbr-text {
    text-align: center;
  }
}
.cid-spszkY1lu6 H1 {
  color: #232323;
  text-align: right;
}
.cid-spszkY1lu6 .mbr-text,
.cid-spszkY1lu6 .mbr-section-btn {
  color: #232323;
  text-align: right;
}
.cid-spszn63NWF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/joao-silas-103185-2000x1500.jpg");
}
@media (min-width: 992px) {
  .cid-spszn63NWF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-spszn63NWF .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-spszn63NWF .mbr-text {
    text-align: center;
  }
}
.cid-spszn63NWF H1 {
  color: #232323;
}
.cid-spszn63NWF .mbr-text,
.cid-spszn63NWF .mbr-section-btn {
  color: #232323;
}
.cid-spsDKMA36r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-spsu112wK9 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-spsu112wK9 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spsu112wK9 a {
  font-style: normal;
}
.cid-spsu112wK9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spsu112wK9 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-spsu112wK9 .nav-item:focus,
.cid-spsu112wK9 .nav-link:focus {
  outline: none;
}
.cid-spsu112wK9 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spsu112wK9 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spsu112wK9 .menu-logo {
  margin-right: auto;
}
.cid-spsu112wK9 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spsu112wK9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-spsu112wK9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spsu112wK9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spsu112wK9 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-spsu112wK9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spsu112wK9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-spsu112wK9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spsu112wK9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spsu112wK9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spsu112wK9 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spsu112wK9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spsu112wK9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spsu112wK9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spsu112wK9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spsu112wK9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spsu112wK9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-spsu112wK9 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spsu112wK9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spsu112wK9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spsu112wK9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-spsu112wK9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spsu112wK9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-spsu112wK9 button.navbar-toggler:focus {
  outline: none;
}
.cid-spsu112wK9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-spsu112wK9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spsu112wK9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spsu112wK9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spsu112wK9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spsu112wK9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spsu112wK9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spsu112wK9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spsu112wK9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spsu112wK9 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spsu112wK9 .collapsed .btn {
  display: -webkit-flex;
}
.cid-spsu112wK9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spsu112wK9 .collapsed .navbar-collapse.collapsing,
.cid-spsu112wK9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-spsu112wK9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spsu112wK9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spsu112wK9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spsu112wK9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spsu112wK9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-spsu112wK9 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-spsu112wK9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spsu112wK9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spsu112wK9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spsu112wK9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spsu112wK9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-spsu112wK9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spsu112wK9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spsu112wK9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-spsu112wK9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spsu112wK9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spsu112wK9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-spsu112wK9 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spsu112wK9 img {
    height: 3.8rem !important;
  }
  .cid-spsu112wK9 .btn {
    display: -webkit-flex;
  }
  .cid-spsu112wK9 button.navbar-toggler {
    display: block;
  }
  .cid-spsu112wK9 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spsu112wK9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spsu112wK9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spsu112wK9 .navbar-collapse.collapsing,
  .cid-spsu112wK9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-spsu112wK9 .navbar-collapse.collapsing .navbar-nav,
  .cid-spsu112wK9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spsu112wK9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spsu112wK9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spsu112wK9 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-spsu112wK9 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-spsu112wK9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-spsu112wK9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spsu112wK9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spsu112wK9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spsu112wK9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-spsu112wK9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spsu112wK9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spsu112wK9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-spsu112wK9 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spsu112wK9 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spsu112wK9 .nav-link:hover,
.cid-spsu112wK9 .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-spsGooSWf1 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/joao-silas-103185-2000x1500.jpg");
}
.cid-spsGooSWf1 .title {
  margin-bottom: 2rem;
}
.cid-spsGooSWf1 .mbr-section-subtitle {
  color: #efefef;
}
.cid-spsGooSWf1 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-spsGooSWf1 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-spsGooSWf1 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-spsGooSWf1 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-spsGooSWf1 LABEL {
  color: #c1c1c1;
}
.cid-spsPSz1MJR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/joao-silas-103185-2000x1500.jpg");
}
@media (max-width: 767px) {
  .cid-spsPSz1MJR .content {
    text-align: center;
  }
  .cid-spsPSz1MJR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-spsPSz1MJR .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-spsPSz1MJR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spsPSz1MJR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-spsPSz1MJR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-spsPSz1MJR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-spsPSz1MJR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spsPSz1MJR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-spsPSz1MJR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spsPSz1MJR .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-spsPSz1MJR .google-map {
  height: 25rem;
  position: relative;
}
.cid-spsPSz1MJR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-spsPSz1MJR .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-spsPSz1MJR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-spsPSz1MJR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tsEZPVKjx8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #4f4943, #232323);
}
.cid-tsEZPVKjx8 .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-tsEZPVKjx8 .social-list a:focus {
  text-decoration: none;
}
.cid-tsEZPVKjx8 H2 {
  color: #cccccc;
}
.cid-spsRGCyFih {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-sqiFXGdK9A .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sqiFXGdK9A .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqiFXGdK9A a {
  font-style: normal;
}
.cid-sqiFXGdK9A .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqiFXGdK9A .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sqiFXGdK9A .nav-item:focus,
.cid-sqiFXGdK9A .nav-link:focus {
  outline: none;
}
.cid-sqiFXGdK9A .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqiFXGdK9A .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqiFXGdK9A .menu-logo {
  margin-right: auto;
}
.cid-sqiFXGdK9A .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqiFXGdK9A .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqiFXGdK9A .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqiFXGdK9A .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqiFXGdK9A .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sqiFXGdK9A .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqiFXGdK9A .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sqiFXGdK9A .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqiFXGdK9A .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqiFXGdK9A .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqiFXGdK9A .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqiFXGdK9A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqiFXGdK9A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqiFXGdK9A .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqiFXGdK9A .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqiFXGdK9A .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqiFXGdK9A .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sqiFXGdK9A .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqiFXGdK9A .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqiFXGdK9A .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqiFXGdK9A .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqiFXGdK9A .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqiFXGdK9A button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sqiFXGdK9A button.navbar-toggler:focus {
  outline: none;
}
.cid-sqiFXGdK9A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sqiFXGdK9A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqiFXGdK9A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqiFXGdK9A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqiFXGdK9A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqiFXGdK9A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqiFXGdK9A nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqiFXGdK9A nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqiFXGdK9A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqiFXGdK9A .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqiFXGdK9A .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse.collapsing,
.cid-sqiFXGdK9A .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqiFXGdK9A .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqiFXGdK9A .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sqiFXGdK9A .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqiFXGdK9A .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqiFXGdK9A .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqiFXGdK9A .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqiFXGdK9A .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqiFXGdK9A .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqiFXGdK9A .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqiFXGdK9A .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqiFXGdK9A .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqiFXGdK9A .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqiFXGdK9A .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sqiFXGdK9A .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqiFXGdK9A img {
    height: 3.8rem !important;
  }
  .cid-sqiFXGdK9A .btn {
    display: -webkit-flex;
  }
  .cid-sqiFXGdK9A button.navbar-toggler {
    display: block;
  }
  .cid-sqiFXGdK9A .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqiFXGdK9A .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqiFXGdK9A .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqiFXGdK9A .navbar-collapse.collapsing,
  .cid-sqiFXGdK9A .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqiFXGdK9A .navbar-collapse.collapsing .navbar-nav,
  .cid-sqiFXGdK9A .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqiFXGdK9A .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqiFXGdK9A .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqiFXGdK9A .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sqiFXGdK9A .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqiFXGdK9A .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqiFXGdK9A .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqiFXGdK9A .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqiFXGdK9A .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqiFXGdK9A .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqiFXGdK9A .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqiFXGdK9A .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqiFXGdK9A .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sqiFXGdK9A .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqiFXGdK9A .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqiFXGdK9A .nav-link:hover,
.cid-sqiFXGdK9A .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqiFXM1YAV {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-sqiFXM1YAV .mbr-text,
.cid-sqiFXM1YAV .mbr-section-btn {
  text-align: center;
  color: #767676;
}
.cid-sqiFXM1YAV H3 {
  text-align: center;
  color: #13a89c;
}
.cid-sqiFXM1YAV DIV {
  color: #cccccc;
}
.cid-uMYFOJ1lnP {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-uMYFOJ1lnP .mbr-text,
.cid-uMYFOJ1lnP .mbr-section-btn {
  text-align: center;
  color: #767676;
}
.cid-uMYFOJ1lnP H3 {
  text-align: center;
  color: #13a89c;
}
.cid-uMYFOJ1lnP DIV {
  color: #cccccc;
}
.cid-sqiIwM3Bjh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqiIwM3Bjh .mbr-section-subtitle {
  color: #767676;
}
.cid-sqiFXOpl0C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-sqiFXOpl0C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXOpl0C .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sqiFXOpl0C .mbr-text {
  color: #767676;
}
.cid-sqiFXQHM70 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-sqiFXQHM70 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXQHM70 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sqiFXQHM70 .mbr-text {
  color: #767676;
}
.cid-sqiFXSaceW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-sqiFXSaceW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXSaceW .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sqiFXSaceW .mbr-text {
  color: #767676;
}
.cid-sqiFXTKGm3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-sqiFXTKGm3 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXTKGm3 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sqiFXTKGm3 .mbr-text {
  color: #767676;
}
.cid-sqiFXVZrAO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-sqiFXVZrAO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXVZrAO .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sqiFXVZrAO .mbr-text {
  color: #767676;
}
.cid-sqiFXXgUNn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-sqiFXXgUNn .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXXgUNn .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sqiFXXgUNn .mbr-text {
  color: #767676;
}
.cid-sqiFXZeH9v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-sqiFXZeH9v .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-sqiFXZeH9v .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sqiFXZeH9v .mbr-text {
  color: #767676;
}
.cid-sqiFYeabUn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-sqj9ET6yiF .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sqj9ET6yiF .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqj9ET6yiF a {
  font-style: normal;
}
.cid-sqj9ET6yiF .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqj9ET6yiF .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sqj9ET6yiF .nav-item:focus,
.cid-sqj9ET6yiF .nav-link:focus {
  outline: none;
}
.cid-sqj9ET6yiF .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqj9ET6yiF .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqj9ET6yiF .menu-logo {
  margin-right: auto;
}
.cid-sqj9ET6yiF .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqj9ET6yiF .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqj9ET6yiF .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqj9ET6yiF .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqj9ET6yiF .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sqj9ET6yiF .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqj9ET6yiF .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sqj9ET6yiF .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqj9ET6yiF .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqj9ET6yiF .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqj9ET6yiF .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqj9ET6yiF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqj9ET6yiF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqj9ET6yiF .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqj9ET6yiF .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqj9ET6yiF .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqj9ET6yiF .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sqj9ET6yiF .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqj9ET6yiF .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqj9ET6yiF .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqj9ET6yiF .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqj9ET6yiF .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqj9ET6yiF button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sqj9ET6yiF button.navbar-toggler:focus {
  outline: none;
}
.cid-sqj9ET6yiF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sqj9ET6yiF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqj9ET6yiF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqj9ET6yiF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqj9ET6yiF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqj9ET6yiF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqj9ET6yiF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqj9ET6yiF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqj9ET6yiF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqj9ET6yiF .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqj9ET6yiF .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse.collapsing,
.cid-sqj9ET6yiF .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqj9ET6yiF .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqj9ET6yiF .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sqj9ET6yiF .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqj9ET6yiF .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqj9ET6yiF .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqj9ET6yiF .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqj9ET6yiF .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqj9ET6yiF .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqj9ET6yiF .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqj9ET6yiF .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqj9ET6yiF .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqj9ET6yiF .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqj9ET6yiF .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sqj9ET6yiF .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqj9ET6yiF img {
    height: 3.8rem !important;
  }
  .cid-sqj9ET6yiF .btn {
    display: -webkit-flex;
  }
  .cid-sqj9ET6yiF button.navbar-toggler {
    display: block;
  }
  .cid-sqj9ET6yiF .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqj9ET6yiF .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqj9ET6yiF .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqj9ET6yiF .navbar-collapse.collapsing,
  .cid-sqj9ET6yiF .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqj9ET6yiF .navbar-collapse.collapsing .navbar-nav,
  .cid-sqj9ET6yiF .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqj9ET6yiF .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqj9ET6yiF .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqj9ET6yiF .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sqj9ET6yiF .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqj9ET6yiF .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqj9ET6yiF .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqj9ET6yiF .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqj9ET6yiF .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqj9ET6yiF .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqj9ET6yiF .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqj9ET6yiF .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqj9ET6yiF .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sqj9ET6yiF .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqj9ET6yiF .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqj9ET6yiF .nav-link:hover,
.cid-sqj9ET6yiF .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqjaIvsE6M {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-sqjaIvsE6M .mbr-section-subtitle {
  color: #13a89c;
}
.cid-sqjaIvsE6M H2 {
  color: #c1c1c1;
}
.cid-sqjcsSUNo5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqjcsSUNo5 .mbr-text,
.cid-sqjcsSUNo5 blockquote {
  color: #767676;
}
.cid-sqjcsSUNo5 .mbr-text {
  color: #232323;
}
.cid-sqjawGIAJn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-sqjawGIAJn .counter-container {
  color: #767676;
}
.cid-sqjawGIAJn .counter-container ul {
  margin-bottom: 0;
}
.cid-sqjawGIAJn .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sqjawGIAJn .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: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #149dcc;
  color: #149dcc;
  content: '✓';
}
.cid-sqjawGIAJn .mbr-text {
  color: #ffffff;
}
.cid-sqjcSYDzw7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqjcSYDzw7 .mbr-text,
.cid-sqjcSYDzw7 blockquote {
  color: #767676;
}
.cid-sqjcSYDzw7 .mbr-text {
  color: #232323;
}
.cid-sqj9Fe2rDL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-sqjeooqUYx .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sqjeooqUYx .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqjeooqUYx a {
  font-style: normal;
}
.cid-sqjeooqUYx .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqjeooqUYx .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sqjeooqUYx .nav-item:focus,
.cid-sqjeooqUYx .nav-link:focus {
  outline: none;
}
.cid-sqjeooqUYx .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqjeooqUYx .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqjeooqUYx .menu-logo {
  margin-right: auto;
}
.cid-sqjeooqUYx .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqjeooqUYx .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqjeooqUYx .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqjeooqUYx .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqjeooqUYx .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sqjeooqUYx .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqjeooqUYx .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sqjeooqUYx .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqjeooqUYx .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqjeooqUYx .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqjeooqUYx .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqjeooqUYx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqjeooqUYx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqjeooqUYx .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqjeooqUYx .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqjeooqUYx .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqjeooqUYx .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sqjeooqUYx .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqjeooqUYx .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqjeooqUYx .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqjeooqUYx .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqjeooqUYx .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqjeooqUYx button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sqjeooqUYx button.navbar-toggler:focus {
  outline: none;
}
.cid-sqjeooqUYx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sqjeooqUYx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqjeooqUYx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqjeooqUYx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqjeooqUYx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqjeooqUYx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqjeooqUYx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqjeooqUYx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqjeooqUYx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqjeooqUYx .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqjeooqUYx .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse.collapsing,
.cid-sqjeooqUYx .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqjeooqUYx .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqjeooqUYx .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sqjeooqUYx .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqjeooqUYx .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqjeooqUYx .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqjeooqUYx .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqjeooqUYx .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqjeooqUYx .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqjeooqUYx .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqjeooqUYx .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqjeooqUYx .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqjeooqUYx .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqjeooqUYx .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sqjeooqUYx .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqjeooqUYx img {
    height: 3.8rem !important;
  }
  .cid-sqjeooqUYx .btn {
    display: -webkit-flex;
  }
  .cid-sqjeooqUYx button.navbar-toggler {
    display: block;
  }
  .cid-sqjeooqUYx .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqjeooqUYx .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqjeooqUYx .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqjeooqUYx .navbar-collapse.collapsing,
  .cid-sqjeooqUYx .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqjeooqUYx .navbar-collapse.collapsing .navbar-nav,
  .cid-sqjeooqUYx .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqjeooqUYx .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqjeooqUYx .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqjeooqUYx .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sqjeooqUYx .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqjeooqUYx .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqjeooqUYx .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqjeooqUYx .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqjeooqUYx .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqjeooqUYx .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqjeooqUYx .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqjeooqUYx .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqjeooqUYx .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sqjeooqUYx .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqjeooqUYx .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqjeooqUYx .nav-link:hover,
.cid-sqjeooqUYx .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqjeorybtI {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-sqjeorybtI .mbr-section-subtitle {
  color: #13a89c;
}
.cid-sqjeorybtI H2 {
  color: #ffffff;
}
.cid-sqjeot6SSS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqjeot6SSS .mbr-text,
.cid-sqjeot6SSS blockquote {
  color: #767676;
}
.cid-sqjeot6SSS .mbr-text {
  color: #232323;
}
.cid-sqjeoupqy6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-sqjeoupqy6 .counter-container {
  color: #767676;
}
.cid-sqjeoupqy6 .counter-container ul {
  margin-bottom: 0;
}
.cid-sqjeoupqy6 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sqjeoupqy6 .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: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #149dcc;
  color: #149dcc;
  content: '✓';
}
.cid-sqjeoupqy6 .mbr-text {
  color: #ffffff;
}
.cid-sqjeow78Yj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqjeow78Yj .mbr-text,
.cid-sqjeow78Yj blockquote {
  color: #767676;
}
.cid-sqjeow78Yj .mbr-text {
  color: #232323;
}
.cid-sqjfBzQcaG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-sqjfBzQcaG .counter-container {
  color: #767676;
}
.cid-sqjfBzQcaG .counter-container ul {
  margin-bottom: 0;
}
.cid-sqjfBzQcaG .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sqjfBzQcaG .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: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #149dcc;
  color: #149dcc;
  content: '✓';
}
.cid-sqjfBzQcaG .mbr-text {
  color: #ffffff;
}
.cid-sqjgr9Byge {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sqjgr9Byge .mbr-text,
.cid-sqjgr9Byge blockquote {
  color: #767676;
}
.cid-sqjgr9Byge .mbr-text {
  color: #232323;
}
.cid-sqjgtaJaWt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sqjgtaJaWt .counter-container {
  color: #767676;
}
.cid-sqjgtaJaWt .counter-container ul {
  margin-bottom: 0;
}
.cid-sqjgtaJaWt .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sqjgtaJaWt .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: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #149dcc;
  color: #149dcc;
  content: '✓';
}
.cid-sqjgtaJaWt .mbr-text {
  color: #232323;
}
.cid-sqjhcyyxeE {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sqjhcyyxeE .mbr-text,
.cid-sqjhcyyxeE blockquote {
  color: #767676;
}
.cid-sqjhcyyxeE .mbr-text {
  color: #232323;
}
.cid-sqjeoxw0J6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-sqwFpJYtQp .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sqwFpJYtQp .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqwFpJYtQp a {
  font-style: normal;
}
.cid-sqwFpJYtQp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqwFpJYtQp .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sqwFpJYtQp .nav-item:focus,
.cid-sqwFpJYtQp .nav-link:focus {
  outline: none;
}
.cid-sqwFpJYtQp .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqwFpJYtQp .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqwFpJYtQp .menu-logo {
  margin-right: auto;
}
.cid-sqwFpJYtQp .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqwFpJYtQp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqwFpJYtQp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqwFpJYtQp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqwFpJYtQp .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sqwFpJYtQp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqwFpJYtQp .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sqwFpJYtQp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqwFpJYtQp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqwFpJYtQp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqwFpJYtQp .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqwFpJYtQp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqwFpJYtQp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqwFpJYtQp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqwFpJYtQp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqwFpJYtQp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqwFpJYtQp .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sqwFpJYtQp .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqwFpJYtQp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqwFpJYtQp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqwFpJYtQp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqwFpJYtQp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqwFpJYtQp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sqwFpJYtQp button.navbar-toggler:focus {
  outline: none;
}
.cid-sqwFpJYtQp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sqwFpJYtQp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqwFpJYtQp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqwFpJYtQp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqwFpJYtQp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqwFpJYtQp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqwFpJYtQp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqwFpJYtQp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqwFpJYtQp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqwFpJYtQp .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqwFpJYtQp .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse.collapsing,
.cid-sqwFpJYtQp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqwFpJYtQp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqwFpJYtQp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sqwFpJYtQp .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqwFpJYtQp .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqwFpJYtQp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqwFpJYtQp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqwFpJYtQp .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqwFpJYtQp .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqwFpJYtQp .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqwFpJYtQp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqwFpJYtQp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqwFpJYtQp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqwFpJYtQp .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sqwFpJYtQp .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqwFpJYtQp img {
    height: 3.8rem !important;
  }
  .cid-sqwFpJYtQp .btn {
    display: -webkit-flex;
  }
  .cid-sqwFpJYtQp button.navbar-toggler {
    display: block;
  }
  .cid-sqwFpJYtQp .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqwFpJYtQp .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqwFpJYtQp .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqwFpJYtQp .navbar-collapse.collapsing,
  .cid-sqwFpJYtQp .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqwFpJYtQp .navbar-collapse.collapsing .navbar-nav,
  .cid-sqwFpJYtQp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqwFpJYtQp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqwFpJYtQp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqwFpJYtQp .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sqwFpJYtQp .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqwFpJYtQp .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqwFpJYtQp .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqwFpJYtQp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqwFpJYtQp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqwFpJYtQp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqwFpJYtQp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqwFpJYtQp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqwFpJYtQp .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sqwFpJYtQp .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqwFpJYtQp .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqwFpJYtQp .nav-link:hover,
.cid-sqwFpJYtQp .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqwG4jxlE8 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-sqwG4jxlE8 .mbr-section-subtitle {
  color: #232323;
}
.cid-sqwG4jxlE8 SPAN {
  color: #767676;
}
.cid-sqwG4jxlE8 H2 {
  color: #ffffff;
}
.cid-uNDqHe0NPA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uNDqHe0NPA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNDqHe0NPA .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uNDqHe0NPA .mbr-text {
    text-align: center;
  }
}
.cid-uNDqHe0NPA .mbr-text,
.cid-uNDqHe0NPA .mbr-section-btn {
  color: #232323;
}
.cid-uNDqHe0NPA H1 {
  color: #232323;
}
.cid-uNDqNdWKz3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNDqNdWKz3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uNDqNdWKz3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNDqNdWKz3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNDqNdWKz3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uNDqNdWKz3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uNDqNdWKz3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uNDqNdWKz3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uNDqNdWKz3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uNDqNdWKz3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uNDwPVaI78 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNDwPVaI78 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uNDwPVaI78 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNDwPVaI78 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNDwPVaI78 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uNDwPVaI78 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uNDwPVaI78 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uNDwPVaI78 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uNDwPVaI78 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uNDwPVaI78 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uNDyN6libB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNDyN6libB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uNDyN6libB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNDyN6libB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNDyN6libB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uNDyN6libB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uNDyN6libB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uNDyN6libB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uNDyN6libB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uNDyN6libB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tpCwNtCoAM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tpCwNtCoAM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tpCwNtCoAM .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tpCwNtCoAM .mbr-text {
    text-align: center;
  }
}
.cid-tpCwNtCoAM .mbr-text,
.cid-tpCwNtCoAM .mbr-section-btn {
  color: #232323;
}
.cid-tpCwNtCoAM H1 {
  color: #232323;
}
.cid-tpCwRag6Lf {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-tpCwRag6Lf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tpCwRag6Lf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tpCwRag6Lf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tpCwRag6Lf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tpCwRag6Lf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tpCwRag6Lf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tpCwRag6Lf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tpCwRag6Lf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tpCwRag6Lf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uN9S4PyiYb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uN9S4PyiYb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uN9S4PyiYb .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uN9S4PyiYb .mbr-text {
    text-align: center;
  }
}
.cid-uN9S4PyiYb .mbr-text,
.cid-uN9S4PyiYb .mbr-section-btn {
  color: #232323;
}
.cid-uN9S4PyiYb H1 {
  color: #232323;
}
.cid-uN9S8cgGUM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uN9S8cgGUM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uN9S8cgGUM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN9S8cgGUM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN9S8cgGUM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uN9S8cgGUM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uN9S8cgGUM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uN9S8cgGUM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uN9S8cgGUM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uN9S8cgGUM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uN9SaysMsz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uN9SaysMsz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uN9SaysMsz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN9SaysMsz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN9SaysMsz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uN9SaysMsz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uN9SaysMsz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uN9SaysMsz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uN9SaysMsz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uN9SaysMsz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tsCq8p2re9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqwFpXRUq8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-sqB3o9vhoS .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sqB3o9vhoS .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqB3o9vhoS a {
  font-style: normal;
}
.cid-sqB3o9vhoS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqB3o9vhoS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sqB3o9vhoS .nav-item:focus,
.cid-sqB3o9vhoS .nav-link:focus {
  outline: none;
}
.cid-sqB3o9vhoS .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqB3o9vhoS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqB3o9vhoS .menu-logo {
  margin-right: auto;
}
.cid-sqB3o9vhoS .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqB3o9vhoS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqB3o9vhoS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqB3o9vhoS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqB3o9vhoS .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sqB3o9vhoS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqB3o9vhoS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sqB3o9vhoS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqB3o9vhoS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqB3o9vhoS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqB3o9vhoS .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqB3o9vhoS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqB3o9vhoS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqB3o9vhoS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqB3o9vhoS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqB3o9vhoS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqB3o9vhoS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sqB3o9vhoS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqB3o9vhoS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqB3o9vhoS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqB3o9vhoS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqB3o9vhoS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqB3o9vhoS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sqB3o9vhoS button.navbar-toggler:focus {
  outline: none;
}
.cid-sqB3o9vhoS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sqB3o9vhoS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqB3o9vhoS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqB3o9vhoS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqB3o9vhoS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqB3o9vhoS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqB3o9vhoS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqB3o9vhoS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqB3o9vhoS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqB3o9vhoS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqB3o9vhoS .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse.collapsing,
.cid-sqB3o9vhoS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqB3o9vhoS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqB3o9vhoS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sqB3o9vhoS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqB3o9vhoS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqB3o9vhoS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqB3o9vhoS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqB3o9vhoS .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqB3o9vhoS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqB3o9vhoS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqB3o9vhoS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqB3o9vhoS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqB3o9vhoS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqB3o9vhoS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sqB3o9vhoS .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqB3o9vhoS img {
    height: 3.8rem !important;
  }
  .cid-sqB3o9vhoS .btn {
    display: -webkit-flex;
  }
  .cid-sqB3o9vhoS button.navbar-toggler {
    display: block;
  }
  .cid-sqB3o9vhoS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqB3o9vhoS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqB3o9vhoS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqB3o9vhoS .navbar-collapse.collapsing,
  .cid-sqB3o9vhoS .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqB3o9vhoS .navbar-collapse.collapsing .navbar-nav,
  .cid-sqB3o9vhoS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqB3o9vhoS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqB3o9vhoS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqB3o9vhoS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sqB3o9vhoS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqB3o9vhoS .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqB3o9vhoS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqB3o9vhoS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqB3o9vhoS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqB3o9vhoS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqB3o9vhoS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqB3o9vhoS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqB3o9vhoS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sqB3o9vhoS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqB3o9vhoS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqB3o9vhoS .nav-link:hover,
.cid-sqB3o9vhoS .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-sqBxJM2lCu {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-sqBxJM2lCu .mbr-section-subtitle {
  color: #232323;
}
.cid-sqBxJM2lCu SPAN {
  color: #ffffff;
}
.cid-sqBxJM2lCu H2 {
  color: #efefef;
}
.cid-tgikD7n9zS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tgikD7n9zS .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tgikD7n9zS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgikD7n9zS p {
  color: #767676;
  text-align: left;
}
.cid-tgikD7n9zS .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgikD7n9zS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tgikD7n9zS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tgioBVjwyx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-tgioBVjwyx .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tgioBVjwyx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgioBVjwyx p {
  color: #767676;
  text-align: left;
}
.cid-tgioBVjwyx .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgioBVjwyx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tgioBVjwyx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tghUQ6ziCL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tghUQ6ziCL .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-tghUQ6ziCL H2 {
  text-align: center;
}
.cid-sqB3oi0FEx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-uMXEQkLwE9 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uMXEQkLwE9 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uMXEQkLwE9 a {
  font-style: normal;
}
.cid-uMXEQkLwE9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uMXEQkLwE9 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uMXEQkLwE9 .nav-item:focus,
.cid-uMXEQkLwE9 .nav-link:focus {
  outline: none;
}
.cid-uMXEQkLwE9 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uMXEQkLwE9 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uMXEQkLwE9 .menu-logo {
  margin-right: auto;
}
.cid-uMXEQkLwE9 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uMXEQkLwE9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uMXEQkLwE9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uMXEQkLwE9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uMXEQkLwE9 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uMXEQkLwE9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uMXEQkLwE9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uMXEQkLwE9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uMXEQkLwE9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMXEQkLwE9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uMXEQkLwE9 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uMXEQkLwE9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uMXEQkLwE9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMXEQkLwE9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uMXEQkLwE9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMXEQkLwE9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uMXEQkLwE9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uMXEQkLwE9 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uMXEQkLwE9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uMXEQkLwE9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uMXEQkLwE9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uMXEQkLwE9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uMXEQkLwE9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uMXEQkLwE9 button.navbar-toggler:focus {
  outline: none;
}
.cid-uMXEQkLwE9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uMXEQkLwE9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uMXEQkLwE9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uMXEQkLwE9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uMXEQkLwE9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uMXEQkLwE9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMXEQkLwE9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uMXEQkLwE9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uMXEQkLwE9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMXEQkLwE9 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uMXEQkLwE9 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.collapsing,
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uMXEQkLwE9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uMXEQkLwE9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uMXEQkLwE9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uMXEQkLwE9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uMXEQkLwE9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uMXEQkLwE9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uMXEQkLwE9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uMXEQkLwE9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uMXEQkLwE9 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uMXEQkLwE9 img {
    height: 3.8rem !important;
  }
  .cid-uMXEQkLwE9 .btn {
    display: -webkit-flex;
  }
  .cid-uMXEQkLwE9 button.navbar-toggler {
    display: block;
  }
  .cid-uMXEQkLwE9 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uMXEQkLwE9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uMXEQkLwE9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uMXEQkLwE9 .navbar-collapse.collapsing,
  .cid-uMXEQkLwE9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uMXEQkLwE9 .navbar-collapse.collapsing .navbar-nav,
  .cid-uMXEQkLwE9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uMXEQkLwE9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uMXEQkLwE9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uMXEQkLwE9 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uMXEQkLwE9 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uMXEQkLwE9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uMXEQkLwE9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uMXEQkLwE9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uMXEQkLwE9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uMXEQkLwE9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uMXEQkLwE9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uMXEQkLwE9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uMXEQkLwE9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uMXEQkLwE9 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uMXEQkLwE9 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uMXEQkLwE9 .nav-link:hover,
.cid-uMXEQkLwE9 .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-uMXEQoqsz4 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-uMXEQoqsz4 .mbr-section-subtitle {
  color: #232323;
}
.cid-uMXEQoqsz4 SPAN {
  color: #767676;
}
.cid-uMXEQoqsz4 H2 {
  color: #ffffff;
}
.cid-uMXEQHR5Rb {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMXEQHR5Rb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMXEQHR5Rb .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMXEQHR5Rb .mbr-text {
    text-align: center;
  }
}
.cid-uMXEQHR5Rb .mbr-text,
.cid-uMXEQHR5Rb .mbr-section-btn {
  color: #232323;
}
.cid-uMXEQHR5Rb H1 {
  color: #232323;
}
.cid-uMXEQKqPR0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uMXEQKqPR0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMXEQKqPR0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMXEQKqPR0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMXEQKqPR0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMXEQKqPR0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXEQKqPR0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMXEQKqPR0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMXEQKqPR0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMXEQKqPR0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXEQPPyQj {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uMXEQPPyQj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMXEQPPyQj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMXEQPPyQj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMXEQPPyQj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMXEQPPyQj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXEQPPyQj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMXEQPPyQj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMXEQPPyQj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMXEQPPyQj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXER2hTvq {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMXER2hTvq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMXER2hTvq .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMXER2hTvq .mbr-text {
    text-align: center;
  }
}
.cid-uMXER2hTvq .mbr-text,
.cid-uMXER2hTvq .mbr-section-btn {
  color: #232323;
}
.cid-uMXER2hTvq H1 {
  color: #232323;
}
.cid-uMXER5UvXp {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uMXER5UvXp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMXER5UvXp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMXER5UvXp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMXER5UvXp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMXER5UvXp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXER5UvXp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMXER5UvXp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMXER5UvXp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMXER5UvXp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXNVd92NM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMXNVd92NM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMXNVd92NM .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMXNVd92NM .mbr-text {
    text-align: center;
  }
}
.cid-uMXNVd92NM .mbr-text,
.cid-uMXNVd92NM .mbr-section-btn {
  color: #232323;
}
.cid-uMXNVd92NM H1 {
  color: #232323;
}
.cid-uMXOooJfmr {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uMXOooJfmr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMXOooJfmr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMXOooJfmr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMXOooJfmr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMXOooJfmr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXOooJfmr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMXOooJfmr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMXOooJfmr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMXOooJfmr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXWaR0vMl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMXWaR0vMl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMXWaR0vMl .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMXWaR0vMl .mbr-text {
    text-align: center;
  }
}
.cid-uMXWaR0vMl .mbr-text,
.cid-uMXWaR0vMl .mbr-section-btn {
  color: #232323;
}
.cid-uMXWaR0vMl H1 {
  color: #232323;
}
.cid-uMXW1xZ4lW {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uMXW1xZ4lW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMXW1xZ4lW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMXW1xZ4lW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMXW1xZ4lW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMXW1xZ4lW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXW1xZ4lW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMXW1xZ4lW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMXW1xZ4lW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMXW1xZ4lW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY1jlfaHG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMY1jlfaHG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMY1jlfaHG .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMY1jlfaHG .mbr-text {
    text-align: center;
  }
}
.cid-uMY1jlfaHG .mbr-text,
.cid-uMY1jlfaHG .mbr-section-btn {
  color: #232323;
}
.cid-uMY1jlfaHG H1 {
  color: #232323;
}
.cid-uMY1n221z0 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uMY1n221z0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMY1n221z0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMY1n221z0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMY1n221z0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMY1n221z0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY1n221z0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMY1n221z0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMY1n221z0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMY1n221z0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY6RjotCE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMY6RjotCE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMY6RjotCE .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMY6RjotCE .mbr-text {
    text-align: center;
  }
}
.cid-uMY6RjotCE .mbr-text,
.cid-uMY6RjotCE .mbr-section-btn {
  color: #232323;
}
.cid-uMY6RjotCE H1 {
  color: #232323;
}
.cid-uMY6VsmlVl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uMY6VsmlVl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMY6VsmlVl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMY6VsmlVl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMY6VsmlVl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMY6VsmlVl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY6VsmlVl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMY6VsmlVl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMY6VsmlVl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMY6VsmlVl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY6Zv6ier {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMY6Zv6ier .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMY6Zv6ier .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMY6Zv6ier .mbr-text {
    text-align: center;
  }
}
.cid-uMY6Zv6ier .mbr-text,
.cid-uMY6Zv6ier .mbr-section-btn {
  color: #232323;
}
.cid-uMY6Zv6ier H1 {
  color: #232323;
}
.cid-uMY734WcO7 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uMY734WcO7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMY734WcO7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMY734WcO7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMY734WcO7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMY734WcO7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY734WcO7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMY734WcO7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMY734WcO7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMY734WcO7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY76Ck01y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMY76Ck01y .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMY76Ck01y .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMY76Ck01y .mbr-text {
    text-align: center;
  }
}
.cid-uMY76Ck01y .mbr-text,
.cid-uMY76Ck01y .mbr-section-btn {
  color: #232323;
}
.cid-uMY76Ck01y H1 {
  color: #232323;
}
.cid-uMY79GeGtW {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uMY79GeGtW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMY79GeGtW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMY79GeGtW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMY79GeGtW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMY79GeGtW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY79GeGtW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMY79GeGtW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMY79GeGtW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMY79GeGtW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY9Sd7EuA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMY9Sd7EuA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMY9Sd7EuA .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMY9Sd7EuA .mbr-text {
    text-align: center;
  }
}
.cid-uMY9Sd7EuA .mbr-text,
.cid-uMY9Sd7EuA .mbr-section-btn {
  color: #232323;
}
.cid-uMY9Sd7EuA H1 {
  color: #232323;
}
.cid-uMY9VETj6a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uMY9VETj6a .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMY9VETj6a .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMY9VETj6a .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMY9VETj6a .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMY9VETj6a .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMY9VETj6a .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMY9VETj6a .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMY9VETj6a .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMY9VETj6a .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYa097MbS {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uMYa097MbS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYa097MbS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYa097MbS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYa097MbS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYa097MbS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYa097MbS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYa097MbS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYa097MbS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYa097MbS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYe54TAq6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMYe54TAq6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMYe54TAq6 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMYe54TAq6 .mbr-text {
    text-align: center;
  }
}
.cid-uMYe54TAq6 .mbr-text,
.cid-uMYe54TAq6 .mbr-section-btn {
  color: #232323;
}
.cid-uMYe54TAq6 H1 {
  color: #232323;
}
.cid-uMYe8P0DvV {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uMYe8P0DvV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYe8P0DvV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYe8P0DvV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYe8P0DvV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYe8P0DvV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYe8P0DvV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYe8P0DvV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYe8P0DvV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYe8P0DvV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYivntYX1 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMYivntYX1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMYivntYX1 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMYivntYX1 .mbr-text {
    text-align: center;
  }
}
.cid-uMYivntYX1 .mbr-text,
.cid-uMYivntYX1 .mbr-section-btn {
  color: #232323;
}
.cid-uMYivntYX1 H1 {
  color: #232323;
}
.cid-uMYizlYqka {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uMYizlYqka .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYizlYqka .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYizlYqka .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYizlYqka .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYizlYqka .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYizlYqka .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYizlYqka .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYizlYqka .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYizlYqka .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYiEWPNEY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMYiEWPNEY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMYiEWPNEY .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMYiEWPNEY .mbr-text {
    text-align: center;
  }
}
.cid-uMYiEWPNEY .mbr-text,
.cid-uMYiEWPNEY .mbr-section-btn {
  color: #232323;
}
.cid-uMYiEWPNEY H1 {
  color: #232323;
}
.cid-uMYiJH2ero {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uMYiJH2ero .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYiJH2ero .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYiJH2ero .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYiJH2ero .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYiJH2ero .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYiJH2ero .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYiJH2ero .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYiJH2ero .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYiJH2ero .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYzLsW1SW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-uMYzLsW1SW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMYzLsW1SW .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMYzLsW1SW .mbr-text {
    text-align: center;
  }
}
.cid-uMYzLsW1SW .mbr-text,
.cid-uMYzLsW1SW .mbr-section-btn {
  color: #232323;
}
.cid-uMYzLsW1SW H1 {
  color: #232323;
}
.cid-uMYrQH02SG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uMYrQH02SG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYrQH02SG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYrQH02SG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYrQH02SG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYrQH02SG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYrQH02SG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYrQH02SG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYrQH02SG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYrQH02SG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYrU4H8KD {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uMYrU4H8KD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYrU4H8KD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYrU4H8KD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYrU4H8KD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYrU4H8KD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYrU4H8KD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYrU4H8KD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYrU4H8KD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYrU4H8KD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYDnGQ3Od {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMYDnGQ3Od .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMYDnGQ3Od .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uMYDnGQ3Od .mbr-text {
    text-align: center;
  }
}
.cid-uMYDnGQ3Od .mbr-text,
.cid-uMYDnGQ3Od .mbr-section-btn {
  color: #232323;
}
.cid-uMYDnGQ3Od H1 {
  color: #232323;
}
.cid-uMYDyJzBqz {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uMYDyJzBqz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMYDyJzBqz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMYDyJzBqz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMYDyJzBqz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMYDyJzBqz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMYDyJzBqz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMYDyJzBqz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMYDyJzBqz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMYDyJzBqz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMXERc24aJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-tNnJ0vbLFg .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tNnJ0vbLFg .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tNnJ0vbLFg a {
  font-style: normal;
}
.cid-tNnJ0vbLFg .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tNnJ0vbLFg .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tNnJ0vbLFg .nav-item:focus,
.cid-tNnJ0vbLFg .nav-link:focus {
  outline: none;
}
.cid-tNnJ0vbLFg .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tNnJ0vbLFg .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tNnJ0vbLFg .menu-logo {
  margin-right: auto;
}
.cid-tNnJ0vbLFg .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tNnJ0vbLFg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tNnJ0vbLFg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tNnJ0vbLFg .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tNnJ0vbLFg .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-tNnJ0vbLFg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tNnJ0vbLFg .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tNnJ0vbLFg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tNnJ0vbLFg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tNnJ0vbLFg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tNnJ0vbLFg .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tNnJ0vbLFg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tNnJ0vbLFg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNnJ0vbLFg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tNnJ0vbLFg .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNnJ0vbLFg .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tNnJ0vbLFg .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tNnJ0vbLFg .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tNnJ0vbLFg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tNnJ0vbLFg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tNnJ0vbLFg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tNnJ0vbLFg .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tNnJ0vbLFg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tNnJ0vbLFg button.navbar-toggler:focus {
  outline: none;
}
.cid-tNnJ0vbLFg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tNnJ0vbLFg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tNnJ0vbLFg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tNnJ0vbLFg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tNnJ0vbLFg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tNnJ0vbLFg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tNnJ0vbLFg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tNnJ0vbLFg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tNnJ0vbLFg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tNnJ0vbLFg .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tNnJ0vbLFg .collapsed .btn {
  display: -webkit-flex;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.collapsing,
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNnJ0vbLFg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tNnJ0vbLFg .collapsed button.navbar-toggler {
  display: block;
}
.cid-tNnJ0vbLFg .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tNnJ0vbLFg .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tNnJ0vbLFg .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tNnJ0vbLFg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tNnJ0vbLFg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tNnJ0vbLFg .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tNnJ0vbLFg .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tNnJ0vbLFg img {
    height: 3.8rem !important;
  }
  .cid-tNnJ0vbLFg .btn {
    display: -webkit-flex;
  }
  .cid-tNnJ0vbLFg button.navbar-toggler {
    display: block;
  }
  .cid-tNnJ0vbLFg .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tNnJ0vbLFg .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tNnJ0vbLFg .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tNnJ0vbLFg .navbar-collapse.collapsing,
  .cid-tNnJ0vbLFg .navbar-collapse.show {
    display: block !important;
  }
  .cid-tNnJ0vbLFg .navbar-collapse.collapsing .navbar-nav,
  .cid-tNnJ0vbLFg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tNnJ0vbLFg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNnJ0vbLFg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tNnJ0vbLFg .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNnJ0vbLFg .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tNnJ0vbLFg .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNnJ0vbLFg .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tNnJ0vbLFg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNnJ0vbLFg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tNnJ0vbLFg .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tNnJ0vbLFg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tNnJ0vbLFg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tNnJ0vbLFg .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tNnJ0vbLFg .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tNnJ0vbLFg .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tNnJ0vbLFg .nav-link:hover,
.cid-tNnJ0vbLFg .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-tNnJ0xEGvb {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-tNnJ0xEGvb .mbr-section-subtitle {
  color: #232323;
}
.cid-tNnJ0xEGvb SPAN {
  color: #767676;
}
.cid-tNnJ0xEGvb H2 {
  color: #ffffff;
}
.cid-tNnJ0zG73S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tNnJ0zG73S .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tNnJ0zG73S .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tNnJ0zG73S .mbr-text {
    text-align: center;
  }
}
.cid-tNnJ0zG73S .mbr-text,
.cid-tNnJ0zG73S .mbr-section-btn {
  color: #232323;
}
.cid-tNnJ0zG73S H1 {
  color: #232323;
}
.cid-tNnJ0D479H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tNnJ0D479H .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNnJ0D479H .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNnJ0D479H .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNnJ0D479H .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNnJ0D479H .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tNnJ0D479H .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tNnJ0D479H .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tNnJ0D479H .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tNnJ0D479H .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tNnJ0J8oxS {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tNnJ0J8oxS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNnJ0J8oxS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNnJ0J8oxS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNnJ0J8oxS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNnJ0J8oxS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tNnJ0J8oxS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tNnJ0J8oxS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tNnJ0J8oxS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tNnJ0J8oxS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRTKzrEv2c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tNnJ0ZX4Ah {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-tRTJQ6mFXN .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tRTJQ6mFXN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tRTJQ6mFXN a {
  font-style: normal;
}
.cid-tRTJQ6mFXN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tRTJQ6mFXN .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tRTJQ6mFXN .nav-item:focus,
.cid-tRTJQ6mFXN .nav-link:focus {
  outline: none;
}
.cid-tRTJQ6mFXN .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tRTJQ6mFXN .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tRTJQ6mFXN .menu-logo {
  margin-right: auto;
}
.cid-tRTJQ6mFXN .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tRTJQ6mFXN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tRTJQ6mFXN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tRTJQ6mFXN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tRTJQ6mFXN .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-tRTJQ6mFXN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tRTJQ6mFXN .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tRTJQ6mFXN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tRTJQ6mFXN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRTJQ6mFXN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tRTJQ6mFXN .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tRTJQ6mFXN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tRTJQ6mFXN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRTJQ6mFXN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tRTJQ6mFXN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRTJQ6mFXN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tRTJQ6mFXN .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tRTJQ6mFXN .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tRTJQ6mFXN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tRTJQ6mFXN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tRTJQ6mFXN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tRTJQ6mFXN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tRTJQ6mFXN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tRTJQ6mFXN button.navbar-toggler:focus {
  outline: none;
}
.cid-tRTJQ6mFXN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tRTJQ6mFXN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tRTJQ6mFXN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tRTJQ6mFXN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tRTJQ6mFXN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tRTJQ6mFXN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tRTJQ6mFXN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tRTJQ6mFXN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tRTJQ6mFXN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tRTJQ6mFXN .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tRTJQ6mFXN .collapsed .btn {
  display: -webkit-flex;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.collapsing,
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tRTJQ6mFXN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tRTJQ6mFXN .collapsed button.navbar-toggler {
  display: block;
}
.cid-tRTJQ6mFXN .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tRTJQ6mFXN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tRTJQ6mFXN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tRTJQ6mFXN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tRTJQ6mFXN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tRTJQ6mFXN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tRTJQ6mFXN .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tRTJQ6mFXN img {
    height: 3.8rem !important;
  }
  .cid-tRTJQ6mFXN .btn {
    display: -webkit-flex;
  }
  .cid-tRTJQ6mFXN button.navbar-toggler {
    display: block;
  }
  .cid-tRTJQ6mFXN .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tRTJQ6mFXN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tRTJQ6mFXN .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tRTJQ6mFXN .navbar-collapse.collapsing,
  .cid-tRTJQ6mFXN .navbar-collapse.show {
    display: block !important;
  }
  .cid-tRTJQ6mFXN .navbar-collapse.collapsing .navbar-nav,
  .cid-tRTJQ6mFXN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tRTJQ6mFXN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tRTJQ6mFXN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tRTJQ6mFXN .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tRTJQ6mFXN .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tRTJQ6mFXN .navbar-collapse.collapsing .navbar-buttons,
  .cid-tRTJQ6mFXN .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tRTJQ6mFXN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tRTJQ6mFXN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tRTJQ6mFXN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tRTJQ6mFXN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tRTJQ6mFXN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tRTJQ6mFXN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tRTJQ6mFXN .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tRTJQ6mFXN .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tRTJQ6mFXN .nav-link:hover,
.cid-tRTJQ6mFXN .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-tRTJQfUeUs {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-tRTJQfUeUs .mbr-section-subtitle {
  color: #232323;
}
.cid-tRTJQfUeUs SPAN {
  color: #767676;
}
.cid-tRTJQfUeUs H2 {
  color: #ffffff;
}
.cid-tRTJQir9NU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tRTJQir9NU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tRTJQir9NU .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tRTJQir9NU .mbr-text {
    text-align: center;
  }
}
.cid-tRTJQir9NU .mbr-text,
.cid-tRTJQir9NU .mbr-section-btn {
  color: #232323;
}
.cid-tRTJQir9NU H1 {
  color: #232323;
}
.cid-tRTJQsClJI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRTJQsClJI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRTJQsClJI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRTJQsClJI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRTJQsClJI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRTJQsClJI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRTJQsClJI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRTJQsClJI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tRTJQsClJI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRTJQsClJI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRU2qEoiCP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRU2qEoiCP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRU2qEoiCP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRU2qEoiCP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRU2qEoiCP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRU2qEoiCP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRU2qEoiCP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRU2qEoiCP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tRU2qEoiCP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRU2qEoiCP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRTJQwqZRs {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tRTJQwqZRs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tRTJQwqZRs .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tRTJQwqZRs .mbr-text {
    text-align: center;
  }
}
.cid-tRTJQwqZRs .mbr-text,
.cid-tRTJQwqZRs .mbr-section-btn {
  color: #232323;
}
.cid-tRTJQwqZRs H1 {
  color: #232323;
}
.cid-tRUbwj2RGf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRUbwj2RGf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRUbwj2RGf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRUbwj2RGf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRUbwj2RGf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRUbwj2RGf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUbwj2RGf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRUbwj2RGf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tRUbwj2RGf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRUbwj2RGf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUlvZ0enO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRUlvZ0enO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRUlvZ0enO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRUlvZ0enO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRUlvZ0enO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRUlvZ0enO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUlvZ0enO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRUlvZ0enO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tRUlvZ0enO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRUlvZ0enO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUvRJURGt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRUvRJURGt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRUvRJURGt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRUvRJURGt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRUvRJURGt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRUvRJURGt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUvRJURGt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRUvRJURGt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tRUvRJURGt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRUvRJURGt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUyV7yrjM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRUyV7yrjM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRUyV7yrjM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRUyV7yrjM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRUyV7yrjM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRUyV7yrjM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tRUyV7yrjM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRUyV7yrjM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tRUyV7yrjM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRUyV7yrjM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u8jZB9Evpg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tRTJQO45bl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-u8jYv4JhZ3 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-u8jYv4JhZ3 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-u8jYv4JhZ3 a {
  font-style: normal;
}
.cid-u8jYv4JhZ3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-u8jYv4JhZ3 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-u8jYv4JhZ3 .nav-item:focus,
.cid-u8jYv4JhZ3 .nav-link:focus {
  outline: none;
}
.cid-u8jYv4JhZ3 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-u8jYv4JhZ3 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-u8jYv4JhZ3 .menu-logo {
  margin-right: auto;
}
.cid-u8jYv4JhZ3 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-u8jYv4JhZ3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-u8jYv4JhZ3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-u8jYv4JhZ3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-u8jYv4JhZ3 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-u8jYv4JhZ3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-u8jYv4JhZ3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-u8jYv4JhZ3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-u8jYv4JhZ3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-u8jYv4JhZ3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-u8jYv4JhZ3 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-u8jYv4JhZ3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-u8jYv4JhZ3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8jYv4JhZ3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-u8jYv4JhZ3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8jYv4JhZ3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-u8jYv4JhZ3 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-u8jYv4JhZ3 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-u8jYv4JhZ3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-u8jYv4JhZ3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-u8jYv4JhZ3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-u8jYv4JhZ3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-u8jYv4JhZ3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-u8jYv4JhZ3 button.navbar-toggler:focus {
  outline: none;
}
.cid-u8jYv4JhZ3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-u8jYv4JhZ3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u8jYv4JhZ3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u8jYv4JhZ3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u8jYv4JhZ3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u8jYv4JhZ3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u8jYv4JhZ3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u8jYv4JhZ3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u8jYv4JhZ3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u8jYv4JhZ3 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-u8jYv4JhZ3 .collapsed .btn {
  display: -webkit-flex;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.collapsing,
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-u8jYv4JhZ3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-u8jYv4JhZ3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-u8jYv4JhZ3 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-u8jYv4JhZ3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-u8jYv4JhZ3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-u8jYv4JhZ3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-u8jYv4JhZ3 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-u8jYv4JhZ3 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-u8jYv4JhZ3 img {
    height: 3.8rem !important;
  }
  .cid-u8jYv4JhZ3 .btn {
    display: -webkit-flex;
  }
  .cid-u8jYv4JhZ3 button.navbar-toggler {
    display: block;
  }
  .cid-u8jYv4JhZ3 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-u8jYv4JhZ3 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse.collapsing,
  .cid-u8jYv4JhZ3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse.collapsing .navbar-nav,
  .cid-u8jYv4JhZ3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-u8jYv4JhZ3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-u8jYv4JhZ3 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-u8jYv4JhZ3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-u8jYv4JhZ3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-u8jYv4JhZ3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-u8jYv4JhZ3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-u8jYv4JhZ3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-u8jYv4JhZ3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-u8jYv4JhZ3 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-u8jYv4JhZ3 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-u8jYv4JhZ3 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-u8jYv4JhZ3 .nav-link:hover,
.cid-u8jYv4JhZ3 .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-u8jYv7jb90 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-u8jYv7jb90 .mbr-section-subtitle {
  color: #232323;
}
.cid-u8jYv7jb90 SPAN {
  color: #767676;
}
.cid-u8jYv7jb90 H2 {
  color: #ffffff;
}
.cid-u8jYv9S6Te {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-u8jYv9S6Te .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u8jYv9S6Te .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u8jYv9S6Te .mbr-text {
    text-align: center;
  }
}
.cid-u8jYv9S6Te .mbr-text,
.cid-u8jYv9S6Te .mbr-section-btn {
  color: #232323;
}
.cid-u8jYv9S6Te H1 {
  color: #232323;
}
.cid-u8k3hwpngD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8k3hwpngD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8k3hwpngD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8k3hwpngD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8k3hwpngD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8k3hwpngD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u8k3hwpngD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8k3hwpngD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u8k3hwpngD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8k3hwpngD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u8jYvTcpKj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-tDbIMIRAsF .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tDbIMIRAsF .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tDbIMIRAsF a {
  font-style: normal;
}
.cid-tDbIMIRAsF .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tDbIMIRAsF .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tDbIMIRAsF .nav-item:focus,
.cid-tDbIMIRAsF .nav-link:focus {
  outline: none;
}
.cid-tDbIMIRAsF .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tDbIMIRAsF .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tDbIMIRAsF .menu-logo {
  margin-right: auto;
}
.cid-tDbIMIRAsF .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tDbIMIRAsF .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tDbIMIRAsF .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tDbIMIRAsF .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tDbIMIRAsF .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-tDbIMIRAsF .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tDbIMIRAsF .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tDbIMIRAsF .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tDbIMIRAsF .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tDbIMIRAsF .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tDbIMIRAsF .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tDbIMIRAsF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tDbIMIRAsF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDbIMIRAsF .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tDbIMIRAsF .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDbIMIRAsF .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tDbIMIRAsF .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tDbIMIRAsF .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tDbIMIRAsF .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tDbIMIRAsF .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tDbIMIRAsF .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tDbIMIRAsF .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tDbIMIRAsF button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tDbIMIRAsF button.navbar-toggler:focus {
  outline: none;
}
.cid-tDbIMIRAsF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tDbIMIRAsF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDbIMIRAsF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDbIMIRAsF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDbIMIRAsF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDbIMIRAsF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDbIMIRAsF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDbIMIRAsF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDbIMIRAsF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDbIMIRAsF .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tDbIMIRAsF .collapsed .btn {
  display: -webkit-flex;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse.collapsing,
.cid-tDbIMIRAsF .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tDbIMIRAsF .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tDbIMIRAsF .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tDbIMIRAsF .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tDbIMIRAsF .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tDbIMIRAsF .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tDbIMIRAsF .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tDbIMIRAsF .collapsed button.navbar-toggler {
  display: block;
}
.cid-tDbIMIRAsF .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tDbIMIRAsF .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tDbIMIRAsF .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tDbIMIRAsF .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tDbIMIRAsF .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tDbIMIRAsF .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tDbIMIRAsF .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tDbIMIRAsF img {
    height: 3.8rem !important;
  }
  .cid-tDbIMIRAsF .btn {
    display: -webkit-flex;
  }
  .cid-tDbIMIRAsF button.navbar-toggler {
    display: block;
  }
  .cid-tDbIMIRAsF .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tDbIMIRAsF .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tDbIMIRAsF .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tDbIMIRAsF .navbar-collapse.collapsing,
  .cid-tDbIMIRAsF .navbar-collapse.show {
    display: block !important;
  }
  .cid-tDbIMIRAsF .navbar-collapse.collapsing .navbar-nav,
  .cid-tDbIMIRAsF .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tDbIMIRAsF .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tDbIMIRAsF .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tDbIMIRAsF .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tDbIMIRAsF .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tDbIMIRAsF .navbar-collapse.collapsing .navbar-buttons,
  .cid-tDbIMIRAsF .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tDbIMIRAsF .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tDbIMIRAsF .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tDbIMIRAsF .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tDbIMIRAsF .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tDbIMIRAsF .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tDbIMIRAsF .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tDbIMIRAsF .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tDbIMIRAsF .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tDbIMIRAsF .nav-link:hover,
.cid-tDbIMIRAsF .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-tDbIMLu0eK {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-tDbIMLu0eK .mbr-section-subtitle {
  color: #232323;
}
.cid-tDbIMLu0eK SPAN {
  color: #767676;
}
.cid-tDbIMOcnk5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tDbIMOcnk5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbIMOcnk5 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tDbIMOcnk5 .mbr-text {
    text-align: center;
  }
}
.cid-tDbIMOcnk5 .mbr-text,
.cid-tDbIMOcnk5 .mbr-section-btn {
  color: #232323;
}
.cid-tDbIMOcnk5 H1 {
  color: #232323;
}
.cid-tDbIMR6Qnf {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-tDbIMR6Qnf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbIMR6Qnf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbIMR6Qnf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbIMR6Qnf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbIMR6Qnf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIMR6Qnf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbIMR6Qnf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbIMR6Qnf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbIMR6Qnf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIMTPBtC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tDbIMTPBtC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbIMTPBtC .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tDbIMTPBtC .mbr-text {
    text-align: center;
  }
}
.cid-tDbIMTPBtC .mbr-text,
.cid-tDbIMTPBtC .mbr-section-btn {
  color: #232323;
}
.cid-tDbIMTPBtC H1 {
  color: #232323;
}
.cid-tDbIMWhB7N {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDbIMWhB7N .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbIMWhB7N .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbIMWhB7N .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbIMWhB7N .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbIMWhB7N .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIMWhB7N .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbIMWhB7N .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbIMWhB7N .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbIMWhB7N .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIMYQTDD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tDbIMYQTDD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbIMYQTDD .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tDbIMYQTDD .mbr-text {
    text-align: center;
  }
}
.cid-tDbIMYQTDD .mbr-text,
.cid-tDbIMYQTDD .mbr-section-btn {
  color: #232323;
}
.cid-tDbIMYQTDD H1 {
  color: #232323;
}
.cid-tDbIN1sTkm {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-tDbIN1sTkm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbIN1sTkm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbIN1sTkm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbIN1sTkm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbIN1sTkm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIN1sTkm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbIN1sTkm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbIN1sTkm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbIN1sTkm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIN4gmHx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tDbIN4gmHx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbIN4gmHx .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tDbIN4gmHx .mbr-text {
    text-align: center;
  }
}
.cid-tDbIN4gmHx .mbr-text,
.cid-tDbIN4gmHx .mbr-section-btn {
  color: #232323;
}
.cid-tDbIN4gmHx H1 {
  color: #232323;
}
.cid-tDbIN6DfRZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tDbIN6DfRZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbIN6DfRZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbIN6DfRZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbIN6DfRZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbIN6DfRZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIN6DfRZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbIN6DfRZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbIN6DfRZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbIN6DfRZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIN9m6Ay {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDbIN9m6Ay .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbIN9m6Ay .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbIN9m6Ay .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbIN9m6Ay .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbIN9m6Ay .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbIN9m6Ay .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbIN9m6Ay .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbIN9m6Ay .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbIN9m6Ay .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbINc627u {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tDbINc627u .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbINc627u .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tDbINc627u .mbr-text {
    text-align: center;
  }
}
.cid-tDbINc627u .mbr-text,
.cid-tDbINc627u .mbr-section-btn {
  color: #232323;
}
.cid-tDbINc627u H1 {
  color: #232323;
}
.cid-tDbINeXeO1 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDbINeXeO1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbINeXeO1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbINeXeO1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbINeXeO1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbINeXeO1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbINeXeO1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbINeXeO1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbINeXeO1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbINeXeO1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbINjb3xv {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tDbINjb3xv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbINjb3xv .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tDbINjb3xv .mbr-text {
    text-align: center;
  }
}
.cid-tDbINjb3xv .mbr-text,
.cid-tDbINjb3xv .mbr-section-btn {
  color: #232323;
}
.cid-tDbINjb3xv H1 {
  color: #232323;
}
.cid-tDbINmlorP {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-tDbINmlorP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDbINmlorP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDbINmlorP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDbINmlorP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDbINmlorP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbINmlorP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tDbINmlorP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tDbINmlorP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tDbINmlorP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tDbINq84wZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDbINsjTgQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-tsCp9rqlb0 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tsCp9rqlb0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tsCp9rqlb0 a {
  font-style: normal;
}
.cid-tsCp9rqlb0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tsCp9rqlb0 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tsCp9rqlb0 .nav-item:focus,
.cid-tsCp9rqlb0 .nav-link:focus {
  outline: none;
}
.cid-tsCp9rqlb0 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tsCp9rqlb0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tsCp9rqlb0 .menu-logo {
  margin-right: auto;
}
.cid-tsCp9rqlb0 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tsCp9rqlb0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tsCp9rqlb0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tsCp9rqlb0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tsCp9rqlb0 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-tsCp9rqlb0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tsCp9rqlb0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tsCp9rqlb0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tsCp9rqlb0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsCp9rqlb0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tsCp9rqlb0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tsCp9rqlb0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tsCp9rqlb0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsCp9rqlb0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tsCp9rqlb0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsCp9rqlb0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tsCp9rqlb0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tsCp9rqlb0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tsCp9rqlb0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tsCp9rqlb0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tsCp9rqlb0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tsCp9rqlb0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tsCp9rqlb0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tsCp9rqlb0 button.navbar-toggler:focus {
  outline: none;
}
.cid-tsCp9rqlb0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tsCp9rqlb0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsCp9rqlb0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsCp9rqlb0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsCp9rqlb0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsCp9rqlb0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsCp9rqlb0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsCp9rqlb0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsCp9rqlb0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsCp9rqlb0 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsCp9rqlb0 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.collapsing,
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tsCp9rqlb0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tsCp9rqlb0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tsCp9rqlb0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tsCp9rqlb0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsCp9rqlb0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tsCp9rqlb0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tsCp9rqlb0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tsCp9rqlb0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tsCp9rqlb0 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsCp9rqlb0 img {
    height: 3.8rem !important;
  }
  .cid-tsCp9rqlb0 .btn {
    display: -webkit-flex;
  }
  .cid-tsCp9rqlb0 button.navbar-toggler {
    display: block;
  }
  .cid-tsCp9rqlb0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tsCp9rqlb0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsCp9rqlb0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tsCp9rqlb0 .navbar-collapse.collapsing,
  .cid-tsCp9rqlb0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tsCp9rqlb0 .navbar-collapse.collapsing .navbar-nav,
  .cid-tsCp9rqlb0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tsCp9rqlb0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tsCp9rqlb0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tsCp9rqlb0 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tsCp9rqlb0 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tsCp9rqlb0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tsCp9rqlb0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tsCp9rqlb0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tsCp9rqlb0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tsCp9rqlb0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tsCp9rqlb0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tsCp9rqlb0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tsCp9rqlb0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tsCp9rqlb0 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tsCp9rqlb0 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tsCp9rqlb0 .nav-link:hover,
.cid-tsCp9rqlb0 .dropdown-item:hover {
  color: #55b4d4 !important;
}
.cid-tsCp9wLh0c {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/petr-novak-10530-2000x1127.jpg");
}
.cid-tsCp9wLh0c .mbr-section-subtitle {
  color: #232323;
}
.cid-tsCp9wLh0c SPAN {
  color: #767676;
}
.cid-tsCp9wLh0c H2 {
  color: #ffffff;
}
.cid-tsCp9Fl10b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tsCp9Fl10b .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tsCp9Fl10b .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tsCp9Fl10b .mbr-text {
    text-align: center;
  }
}
.cid-tsCp9Fl10b .mbr-text,
.cid-tsCp9Fl10b .mbr-section-btn {
  color: #232323;
}
.cid-tsCp9Fl10b H1 {
  color: #232323;
}
.cid-tsCTXDBVl3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsCTXDBVl3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tsCTXDBVl3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsCTXDBVl3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsCTXDBVl3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tsCTXDBVl3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tsCTXDBVl3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tsCTXDBVl3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tsCTXDBVl3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tsCTXDBVl3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tsCp9Pg2gY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tsCp9Pg2gY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tsCp9Pg2gY .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tsCp9Pg2gY .mbr-text {
    text-align: center;
  }
}
.cid-tsCp9Pg2gY .mbr-text,
.cid-tsCp9Pg2gY .mbr-section-btn {
  color: #232323;
}
.cid-tsCp9Pg2gY H1 {
  color: #232323;
}
.cid-tsD070cN6n {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tsD070cN6n .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tsD070cN6n .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsD070cN6n .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsD070cN6n .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tsD070cN6n .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tsD070cN6n .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tsD070cN6n .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tsD070cN6n .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tsD070cN6n .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uN9Y1sHwGT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tsCpas558t {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
