body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.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: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.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: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #ffffff !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #fac51c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fac51c !important;
  border-color: #fac51c !important;
  color: #171100 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #171100 !important;
  background-color: #c59704 !important;
  border-color: #c59704 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #171100 !important;
  background-color: #c59704 !important;
  border-color: #c59704 !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: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #ac8404;
  color: #ac8404;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #171100;
  background-color: #fac51c;
  border-color: #fac51c;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #171100 !important;
  background-color: #fac51c !important;
  border-color: #fac51c !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: #ffffff !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #fac51c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ac8404 !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: #879a9f;
}
.alert-danger {
  background-color: #fac51c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fef8e4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@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: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@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: #ffffff;
  color: #000000;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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='%23ffffff' %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-qChe30LwhB .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qChe30LwhB .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qChe30LwhB .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qChe30LwhB a {
  font-style: normal;
}
.cid-qChe30LwhB .nav-item span {
  padding-right: 0.1;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qChe30LwhB .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qChe30LwhB .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qChe30LwhB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qChe30LwhB .menu-logo {
  margin-right: auto;
}
.cid-qChe30LwhB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qChe30LwhB .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-qChe30LwhB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qChe30LwhB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qChe30LwhB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qChe30LwhB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qChe30LwhB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qChe30LwhB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qChe30LwhB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qChe30LwhB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qChe30LwhB .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qChe30LwhB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qChe30LwhB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qChe30LwhB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qChe30LwhB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qChe30LwhB .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-qChe30LwhB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qChe30LwhB .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qChe30LwhB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qChe30LwhB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qChe30LwhB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qChe30LwhB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qChe30LwhB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qChe30LwhB button.navbar-toggler:focus {
  outline: none;
}
.cid-qChe30LwhB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qChe30LwhB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qChe30LwhB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qChe30LwhB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qChe30LwhB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qChe30LwhB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qChe30LwhB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qChe30LwhB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qChe30LwhB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qChe30LwhB .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qChe30LwhB .collapsed .btn {
  display: flex;
}
.cid-qChe30LwhB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qChe30LwhB .collapsed .navbar-collapse.collapsing,
.cid-qChe30LwhB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qChe30LwhB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qChe30LwhB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qChe30LwhB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qChe30LwhB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qChe30LwhB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qChe30LwhB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qChe30LwhB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qChe30LwhB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qChe30LwhB .collapsed button.navbar-toggler {
  display: block;
}
.cid-qChe30LwhB .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qChe30LwhB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qChe30LwhB .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-qChe30LwhB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qChe30LwhB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qChe30LwhB .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-qChe30LwhB .navbar-expand {
    flex-direction: column;
  }
  .cid-qChe30LwhB img {
    height: 3.8rem !important;
  }
  .cid-qChe30LwhB .btn {
    display: flex;
  }
  .cid-qChe30LwhB button.navbar-toggler {
    display: block;
  }
  .cid-qChe30LwhB .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qChe30LwhB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qChe30LwhB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qChe30LwhB .navbar-collapse.collapsing,
  .cid-qChe30LwhB .navbar-collapse.show {
    display: block !important;
  }
  .cid-qChe30LwhB .navbar-collapse.collapsing .navbar-nav,
  .cid-qChe30LwhB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qChe30LwhB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qChe30LwhB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qChe30LwhB .navbar-collapse.collapsing .navbar-buttons,
  .cid-qChe30LwhB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qChe30LwhB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qChe30LwhB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qChe30LwhB .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-qChe30LwhB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qChe30LwhB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qChe30LwhB .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-qChe30LwhB .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qChe30LwhB .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_s:active {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qChe30LwhB .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qChe30LwhB .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qChe30LwhB .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qChe30LwhB .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qChe30LwhB .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qChe30LwhB .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qChe30LwhB .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qChe30LwhB .navbar-flags {
  padding-left: 150px;
  float: right;
  display: inline;
  margin-left: auto;
}
.cid-qChe30LwhB a.flag_english span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qChe30LwhB a.flag_english:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qChe30LwhB a.flag_deutsch span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qChe30LwhB a.flag_deutsch:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qChe30LwhB a.flag_russia span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qChe30LwhB a.flag_russia:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qChe30LwhB a.flag_france span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qChe30LwhB a.flag_france:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qChaCXn6S9 .modal-body .close {
  background: #1b1b1b;
}
.cid-qChaCXn6S9 .modal-body .close span {
  font-style: normal;
}
.cid-qChaCXn6S9 .carousel-inner > .active,
.cid-qChaCXn6S9 .carousel-inner > .next,
.cid-qChaCXn6S9 .carousel-inner > .prev {
  display: table;
}
.cid-qChaCXn6S9 .carousel-control .icon-next,
.cid-qChaCXn6S9 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qChaCXn6S9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qChaCXn6S9 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qChaCXn6S9 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qChaCXn6S9 .boxed-slider > div {
  position: relative;
}
.cid-qChaCXn6S9 .container img {
  width: 100%;
}
.cid-qChaCXn6S9 .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-qChaCXn6S9 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qChaCXn6S9 .mbr-table-cell {
  padding: 0;
}
.cid-qChaCXn6S9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qChaCXn6S9 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qChaCXn6S9 .mbr-overlay {
  z-index: 1;
}
.cid-qChaCXn6S9 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qChaCXn6S9 .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-qChaCXn6S9 .carousel-item .container {
    width: 100%;
  }
}
.cid-qChaCXn6S9 .carousel-item-next.carousel-item-left,
.cid-qChaCXn6S9 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qChaCXn6S9 .active.carousel-item-right,
.cid-qChaCXn6S9 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qChaCXn6S9 .active.carousel-item-left,
.cid-qChaCXn6S9 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qChaCXn6S9 .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-qChaCXn6S9 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qChaCXn6S9 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qChaCXn6S9 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-qChaCXn6S9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qChaCXn6S9 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qChaCXn6S9 .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-qChaCXn6S9 .mbr-slider .carousel-indicators li.active,
.cid-qChaCXn6S9 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qChaCXn6S9 .mbr-slider .carousel-indicators li::after,
.cid-qChaCXn6S9 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qChaCXn6S9 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qChaCXn6S9 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qChaCXn6S9 .mbr-slider > .container img {
  width: 100%;
}
.cid-qChaCXn6S9 .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-qChaCXn6S9 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qChaCXn6S9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qChaCXn6S9 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qChaCXn6S9 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qChaCXn6S9 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qChaCXn6S9 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qChaCXn6S9 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qChaCXn6S9 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qChaCXn6S9 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qChaCXn6S9 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qChaCXn6S9 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qChaCXn6S9 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qChciXTF9E {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9e9e9;
}
.cid-qChciXTF9E .mbr-section-subtitle {
  color: #767676;
}
.cid-qChciXTF9E H1 {
  color: #facb34;
}
.cid-qChciXTF9E .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qChP4vLIhx {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qChP4vLIhx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qChP4vLIhx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qChP4vLIhx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qChP4vLIhx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qChP4vLIhx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qChP4vLIhx .mbr-gallery-title {
  font-size: 2em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qChP4vLIhx .mbr-gallery-item > div > span {
  text-align: center;
  color: #fac51c;
}
.cid-qChP4vLIhx .mbr-gallery-item > div > span B {
  color: #fac51c;
}
.cid-qCm5YHvHw8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCm5YHvHw8 .mbr-section-subtitle {
  color: #767676;
}
.cid-qCm5YHvHw8 H1 {
  color: #facb34;
}
.cid-qCm5YHvHw8 .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCyZ38iqJu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCyZ38iqJu .mbr-text,
.cid-qCyZ38iqJu blockquote {
  color: #767676;
}
.cid-qCz2yZBn91 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCz2yZBn91 h3 {
  text-align: center;
}
.cid-qCz2yZBn91 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-qCz2yZBn91 .mbr-content-text {
  color: #767676;
}
.cid-qCz2yZBn91 .panel-item {
  background: #ffffff;
}
.cid-qCz2yZBn91 .card {
  word-wrap: break-word;
}
.cid-qCz2yZBn91 .mbr-iconfont {
  font-size: 80px;
  color: #facb34;
}
.cid-qChcoLtitQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qChcoLtitQ .content {
    text-align: center;
  }
  .cid-qChcoLtitQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qChcoLtitQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qChcoLtitQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qChcoLtitQ .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qChcoLtitQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qChcoLtitQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qChcoLtitQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qChcoLtitQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qChcoLtitQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qChcoLtitQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qChcoLtitQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qChcoLtitQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qChcoLtitQ H5 {
  color: #c1c1c1;
}
.cid-qCQ5SecGta .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCQ5SecGta .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCQ5SecGta .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCQ5SecGta a {
  font-style: normal;
}
.cid-qCQ5SecGta .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCQ5SecGta .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCQ5SecGta .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCQ5SecGta .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCQ5SecGta .menu-logo {
  margin-right: auto;
}
.cid-qCQ5SecGta .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCQ5SecGta .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-qCQ5SecGta .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCQ5SecGta .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCQ5SecGta .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCQ5SecGta .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCQ5SecGta .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCQ5SecGta .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCQ5SecGta .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCQ5SecGta .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCQ5SecGta .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCQ5SecGta .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCQ5SecGta .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCQ5SecGta .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCQ5SecGta .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCQ5SecGta .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-qCQ5SecGta .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCQ5SecGta .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCQ5SecGta .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCQ5SecGta .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCQ5SecGta .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCQ5SecGta .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCQ5SecGta button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCQ5SecGta button.navbar-toggler:focus {
  outline: none;
}
.cid-qCQ5SecGta button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCQ5SecGta button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCQ5SecGta button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCQ5SecGta button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCQ5SecGta button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCQ5SecGta nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCQ5SecGta nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCQ5SecGta nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCQ5SecGta nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCQ5SecGta .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCQ5SecGta .collapsed .btn {
  display: flex;
}
.cid-qCQ5SecGta .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCQ5SecGta .collapsed .navbar-collapse.collapsing,
.cid-qCQ5SecGta .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCQ5SecGta .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCQ5SecGta .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCQ5SecGta .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCQ5SecGta .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCQ5SecGta .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCQ5SecGta .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCQ5SecGta .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCQ5SecGta .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCQ5SecGta .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCQ5SecGta .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCQ5SecGta .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCQ5SecGta .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-qCQ5SecGta .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCQ5SecGta .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCQ5SecGta .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-qCQ5SecGta .navbar-expand {
    flex-direction: column;
  }
  .cid-qCQ5SecGta img {
    height: 3.8rem !important;
  }
  .cid-qCQ5SecGta .btn {
    display: flex;
  }
  .cid-qCQ5SecGta button.navbar-toggler {
    display: block;
  }
  .cid-qCQ5SecGta .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCQ5SecGta .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCQ5SecGta .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCQ5SecGta .navbar-collapse.collapsing,
  .cid-qCQ5SecGta .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCQ5SecGta .navbar-collapse.collapsing .navbar-nav,
  .cid-qCQ5SecGta .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCQ5SecGta .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCQ5SecGta .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCQ5SecGta .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCQ5SecGta .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCQ5SecGta .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCQ5SecGta .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCQ5SecGta .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-qCQ5SecGta .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCQ5SecGta .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCQ5SecGta .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-qCQ5SecGta .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCQ5SecGta .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQ5SecGta .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQ5SecGta .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQ5SecGta .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCQ5SecGta .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQ5SecGta .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCQ5SecGta .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCQ5SecGta .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCQ6yANpvP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/kontakt3-2000x939-76-2000x939.jpg");
}
.cid-qCQ6yANpvP .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQ6Vltbbg {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-qCQ6Vltbbg .mbr-altertext {
  color: #b1b1b1;
}
.cid-qCQ6Vltbbg .dark-altertext {
  color: #383838;
}
.cid-qCQ6Vltbbg .text-big {
  font-size: 18px;
}
.cid-qCQ6Vltbbg .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qCQ6Vltbbg .font-struktura {
  font-size: 22px;
  font-weight: bold;
  padding-right: 1rem;
}
.cid-qCQ6Vltbbg .input {
  margin-bottom: 15px;
}
.cid-qCQ6Vltbbg .map {
  width: 100%;
  height: 30rem;
}
.cid-qCQ6Vltbbg .map iframe {
  width: inherit;
  height: 100%;
}
.cid-qCQ6Vltbbg .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-qCQ6Vltbbg .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qCQ6Vltbbg .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-qCQ6Vltbbg .mbr-text {
  color: #767676;
}
.cid-qCQ6Vltbbg a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qCQ6Vltbbg .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qCQ6Vltbbg .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qCQ6Vltbbg .google-map {
  height: 25rem;
  position: relative;
}
.cid-qCQ6Vltbbg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qCQ6Vltbbg .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-qCQ6Vltbbg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qCQ6Vltbbg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-qCQ6Vltbbg h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qCQ6Vltbbg .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qCQ6Vltbbg .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-qHtb9z0vXw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e9e9e9;
}
.cid-qHtb9z0vXw .mbr-altertext {
  color: #b1b1b1;
}
.cid-qHtb9z0vXw .emailtext {
  color: #767676;
}
.cid-qHtb9z0vXw .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-qHtb9z0vXw .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-right: 2rem;
  transition: all .4s;
}
.cid-qHtb9z0vXw .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qHtb9z0vXw .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qHtb9z0vXw .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qHtb9z0vXw .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-qHtb9z0vXw .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-qHtb9z0vXw .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -30px;
}
.cid-qHtb9z0vXw .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-qHtb9z0vXw .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-qHtb9z0vXw .iconsBackground {
    left: 1.5rem;
  }
  .cid-qHtb9z0vXw .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-qHtb9z0vXw .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-qHtb9z0vXw .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-qCQ5Slgnc5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCQ5Slgnc5 .content {
    text-align: center;
  }
  .cid-qCQ5Slgnc5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCQ5Slgnc5 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCQ5Slgnc5 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCQ5Slgnc5 .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCQ5Slgnc5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCQ5Slgnc5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCQ5Slgnc5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCQ5Slgnc5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCQ5Slgnc5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCQ5Slgnc5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCQ5Slgnc5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCQ5Slgnc5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCQ5Slgnc5 H5 {
  color: #c1c1c1;
}
.cid-qCQcHPdYyL .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCQcHPdYyL .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCQcHPdYyL .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCQcHPdYyL a {
  font-style: normal;
}
.cid-qCQcHPdYyL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCQcHPdYyL .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCQcHPdYyL .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCQcHPdYyL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCQcHPdYyL .menu-logo {
  margin-right: auto;
}
.cid-qCQcHPdYyL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCQcHPdYyL .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-qCQcHPdYyL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCQcHPdYyL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCQcHPdYyL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCQcHPdYyL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCQcHPdYyL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCQcHPdYyL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCQcHPdYyL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCQcHPdYyL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCQcHPdYyL .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCQcHPdYyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCQcHPdYyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCQcHPdYyL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCQcHPdYyL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCQcHPdYyL .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-qCQcHPdYyL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCQcHPdYyL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCQcHPdYyL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCQcHPdYyL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCQcHPdYyL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCQcHPdYyL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCQcHPdYyL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCQcHPdYyL button.navbar-toggler:focus {
  outline: none;
}
.cid-qCQcHPdYyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCQcHPdYyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCQcHPdYyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCQcHPdYyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCQcHPdYyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCQcHPdYyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCQcHPdYyL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCQcHPdYyL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCQcHPdYyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCQcHPdYyL .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCQcHPdYyL .collapsed .btn {
  display: flex;
}
.cid-qCQcHPdYyL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCQcHPdYyL .collapsed .navbar-collapse.collapsing,
.cid-qCQcHPdYyL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCQcHPdYyL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCQcHPdYyL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCQcHPdYyL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCQcHPdYyL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCQcHPdYyL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCQcHPdYyL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCQcHPdYyL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCQcHPdYyL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCQcHPdYyL .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCQcHPdYyL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCQcHPdYyL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCQcHPdYyL .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-qCQcHPdYyL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCQcHPdYyL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCQcHPdYyL .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-qCQcHPdYyL .navbar-expand {
    flex-direction: column;
  }
  .cid-qCQcHPdYyL img {
    height: 3.8rem !important;
  }
  .cid-qCQcHPdYyL .btn {
    display: flex;
  }
  .cid-qCQcHPdYyL button.navbar-toggler {
    display: block;
  }
  .cid-qCQcHPdYyL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCQcHPdYyL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCQcHPdYyL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCQcHPdYyL .navbar-collapse.collapsing,
  .cid-qCQcHPdYyL .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCQcHPdYyL .navbar-collapse.collapsing .navbar-nav,
  .cid-qCQcHPdYyL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCQcHPdYyL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCQcHPdYyL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCQcHPdYyL .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCQcHPdYyL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCQcHPdYyL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCQcHPdYyL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCQcHPdYyL .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-qCQcHPdYyL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCQcHPdYyL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCQcHPdYyL .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-qCQcHPdYyL .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCQcHPdYyL .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQcHPdYyL .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQcHPdYyL .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQcHPdYyL .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCQcHPdYyL .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQcHPdYyL .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCQcHPdYyL .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCQcHPdYyL .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCQcZ9FOPM {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/dzial-materialy-sypkie-2000x1000.png");
}
.cid-qCQcZ9FOPM .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCQfg2MFox {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCQfg2MFox h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCQfg2MFox h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCQfg2MFox p {
  color: #767676;
  text-align: left;
}
.cid-qCQfg2MFox .card-box {
  padding-top: 2rem;
}
.cid-qCQfg2MFox .card-wrapper {
  height: 100%;
}
.cid-qCQfg2MFox .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCQfg2MFox a.ex1:link,
.cid-qCQfg2MFox a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCQfg2MFox a.ex1:hover {
  text-decoration: underline;
}
.cid-qCQfg2MFox .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCQfg2MFox .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCQfg2MFox .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCQLAZHRN3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCQLAZHRN3 h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCQLAZHRN3 h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCQLAZHRN3 p {
  color: #767676;
  text-align: left;
}
.cid-qCQLAZHRN3 .card-box {
  padding-top: 2rem;
}
.cid-qCQLAZHRN3 .card-wrapper {
  height: 100%;
}
.cid-qCQLAZHRN3 .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCQLAZHRN3 a.ex1:link,
.cid-qCQLAZHRN3 a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCQLAZHRN3 a.ex1:hover {
  text-decoration: underline;
}
.cid-qCQLAZHRN3 .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCQLAZHRN3 .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCQLAZHRN3 .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCV0burbHe {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCV0burbHe h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCV0burbHe h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCV0burbHe p {
  color: #767676;
  text-align: left;
}
.cid-qCV0burbHe .card-box {
  padding-top: 2rem;
}
.cid-qCV0burbHe .card-wrapper {
  height: 100%;
}
.cid-qCV0burbHe .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCV0burbHe a.ex1:link,
.cid-qCV0burbHe a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCV0burbHe a.ex1:hover {
  text-decoration: underline;
}
.cid-qCV0burbHe .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCV0burbHe .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCV0burbHe .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCVawx47Bm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCVawx47Bm h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVawx47Bm h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVawx47Bm p {
  color: #767676;
  text-align: left;
}
.cid-qCVawx47Bm .card-box {
  padding-top: 2rem;
}
.cid-qCVawx47Bm .card-wrapper {
  height: 100%;
}
.cid-qCVawx47Bm .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCVawx47Bm a.ex1:link,
.cid-qCVawx47Bm a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCVawx47Bm a.ex1:hover {
  text-decoration: underline;
}
.cid-qCVawx47Bm .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCVawx47Bm .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCVawx47Bm .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCVdaCPgUG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCVdaCPgUG h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVdaCPgUG h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVdaCPgUG p {
  color: #767676;
  text-align: left;
}
.cid-qCVdaCPgUG .card-box {
  padding-top: 2rem;
}
.cid-qCVdaCPgUG .card-wrapper {
  height: 100%;
}
.cid-qCVdaCPgUG .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCVdaCPgUG a.ex1:link,
.cid-qCVdaCPgUG a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCVdaCPgUG a.ex1:hover {
  text-decoration: underline;
}
.cid-qCVdaCPgUG .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCVdaCPgUG .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCVdaCPgUG .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCQcHTToMU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCQcHTToMU .content {
    text-align: center;
  }
  .cid-qCQcHTToMU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCQcHTToMU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCQcHTToMU .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCQcHTToMU .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCQcHTToMU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCQcHTToMU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCQcHTToMU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCQcHTToMU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCQcHTToMU .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCQcHTToMU .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCQcHTToMU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCQcHTToMU .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCQcHTToMU H5 {
  color: #c1c1c1;
}
.cid-qCVQxtxHGW .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCVQxtxHGW .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCVQxtxHGW .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCVQxtxHGW a {
  font-style: normal;
}
.cid-qCVQxtxHGW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCVQxtxHGW .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCVQxtxHGW .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCVQxtxHGW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCVQxtxHGW .menu-logo {
  margin-right: auto;
}
.cid-qCVQxtxHGW .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCVQxtxHGW .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-qCVQxtxHGW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCVQxtxHGW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCVQxtxHGW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCVQxtxHGW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCVQxtxHGW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCVQxtxHGW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCVQxtxHGW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCVQxtxHGW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCVQxtxHGW .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCVQxtxHGW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCVQxtxHGW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCVQxtxHGW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCVQxtxHGW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCVQxtxHGW .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-qCVQxtxHGW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCVQxtxHGW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCVQxtxHGW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCVQxtxHGW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCVQxtxHGW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCVQxtxHGW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCVQxtxHGW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCVQxtxHGW button.navbar-toggler:focus {
  outline: none;
}
.cid-qCVQxtxHGW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCVQxtxHGW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCVQxtxHGW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCVQxtxHGW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCVQxtxHGW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCVQxtxHGW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCVQxtxHGW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCVQxtxHGW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCVQxtxHGW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCVQxtxHGW .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCVQxtxHGW .collapsed .btn {
  display: flex;
}
.cid-qCVQxtxHGW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCVQxtxHGW .collapsed .navbar-collapse.collapsing,
.cid-qCVQxtxHGW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCVQxtxHGW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCVQxtxHGW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCVQxtxHGW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCVQxtxHGW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCVQxtxHGW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCVQxtxHGW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCVQxtxHGW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCVQxtxHGW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCVQxtxHGW .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCVQxtxHGW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCVQxtxHGW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCVQxtxHGW .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-qCVQxtxHGW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCVQxtxHGW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCVQxtxHGW .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-qCVQxtxHGW .navbar-expand {
    flex-direction: column;
  }
  .cid-qCVQxtxHGW img {
    height: 3.8rem !important;
  }
  .cid-qCVQxtxHGW .btn {
    display: flex;
  }
  .cid-qCVQxtxHGW button.navbar-toggler {
    display: block;
  }
  .cid-qCVQxtxHGW .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCVQxtxHGW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCVQxtxHGW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCVQxtxHGW .navbar-collapse.collapsing,
  .cid-qCVQxtxHGW .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCVQxtxHGW .navbar-collapse.collapsing .navbar-nav,
  .cid-qCVQxtxHGW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCVQxtxHGW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCVQxtxHGW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCVQxtxHGW .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCVQxtxHGW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCVQxtxHGW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCVQxtxHGW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCVQxtxHGW .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-qCVQxtxHGW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCVQxtxHGW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCVQxtxHGW .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-qCVQxtxHGW .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCVQxtxHGW .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCVQxtxHGW .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCVQxtxHGW .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCVQxtxHGW .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCVQxtxHGW .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCVQxtxHGW .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCVQxtxHGW .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCVQxtxHGW .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCVQxtxHGW .navbar-flags {
  padding-left: 150px;
  float: right;
  display: inline;
  margin-left: auto;
}
.cid-qCVQxtxHGW a.flag_english span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qCVQxtxHGW a.flag_english:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qCVQxtxHGW a.flag_deutsch span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qCVQxtxHGW a.flag_deutsch:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qCVQxtxHGW a.flag_russia span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qCVQxtxHGW a.flag_russia:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qCVQxtxHGW a.flag_france span {
  display: none;
  padding: 2px 3px;
  margin-left: 8px;
  width: 130px;
}
.cid-qCVQxtxHGW a.flag_france:hover span {
  display: inline;
  position: fixed;
  margin: 15px 0px 0px 5px;
  background: #b9b9b9;
  border: 1px solid #009191;
  color: #000000;
  border-radius: 6px;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  text-align: center;
}
.cid-qCVQxzT7HY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/dzial-ciecze-2000x1000.png");
}
.cid-qCVQxzT7HY .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCVQxAvKrA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCVQxAvKrA h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVQxAvKrA h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVQxAvKrA p {
  color: #767676;
  text-align: left;
}
.cid-qCVQxAvKrA .card-box {
  padding-top: 2rem;
}
.cid-qCVQxAvKrA .card-wrapper {
  height: 100%;
}
.cid-qCVQxAvKrA .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCVQxAvKrA a.ex1:link,
.cid-qCVQxAvKrA a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCVQxAvKrA a.ex1:hover {
  text-decoration: underline;
}
.cid-qCVQxAvKrA .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCVQxAvKrA .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCVQxAvKrA .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCVQxBjmrU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCVQxBjmrU h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVQxBjmrU h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVQxBjmrU p {
  color: #767676;
  text-align: left;
}
.cid-qCVQxBjmrU .card-box {
  padding-top: 2rem;
}
.cid-qCVQxBjmrU .card-wrapper {
  height: 100%;
}
.cid-qCVQxBjmrU .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCVQxBjmrU a.ex1:link,
.cid-qCVQxBjmrU a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCVQxBjmrU a.ex1:hover {
  text-decoration: underline;
}
.cid-qCVQxBjmrU .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCVQxBjmrU .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCVQxBjmrU .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCVQxCpyMk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCVQxCpyMk h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVQxCpyMk h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCVQxCpyMk p {
  color: #767676;
  text-align: left;
}
.cid-qCVQxCpyMk .card-box {
  padding-top: 2rem;
}
.cid-qCVQxCpyMk .card-wrapper {
  height: 100%;
}
.cid-qCVQxCpyMk .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCVQxCpyMk a.ex1:link,
.cid-qCVQxCpyMk a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCVQxCpyMk a.ex1:hover {
  text-decoration: underline;
}
.cid-qCVQxCpyMk .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCVQxCpyMk .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCVQxCpyMk .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCW0e20oNs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCW0e20oNs h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW0e20oNs h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW0e20oNs p {
  color: #767676;
  text-align: left;
}
.cid-qCW0e20oNs .card-box {
  padding-top: 2rem;
}
.cid-qCW0e20oNs .card-wrapper {
  height: 100%;
}
.cid-qCW0e20oNs .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCW0e20oNs a.ex1:link,
.cid-qCW0e20oNs a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCW0e20oNs a.ex1:hover {
  text-decoration: underline;
}
.cid-qCW0e20oNs .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCW0e20oNs .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCW0e20oNs .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCVQxDfzFK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCVQxDfzFK .content {
    text-align: center;
  }
  .cid-qCVQxDfzFK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCVQxDfzFK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCVQxDfzFK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCVQxDfzFK .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCVQxDfzFK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCVQxDfzFK .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCVQxDfzFK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCVQxDfzFK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCVQxDfzFK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCVQxDfzFK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCVQxDfzFK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCVQxDfzFK .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCVQxDfzFK H5 {
  color: #c1c1c1;
}
.cid-qCW11TM6sG .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCW11TM6sG .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCW11TM6sG .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCW11TM6sG a {
  font-style: normal;
}
.cid-qCW11TM6sG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCW11TM6sG .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCW11TM6sG .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCW11TM6sG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCW11TM6sG .menu-logo {
  margin-right: auto;
}
.cid-qCW11TM6sG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCW11TM6sG .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-qCW11TM6sG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCW11TM6sG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCW11TM6sG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCW11TM6sG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCW11TM6sG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCW11TM6sG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCW11TM6sG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCW11TM6sG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCW11TM6sG .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCW11TM6sG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCW11TM6sG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCW11TM6sG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCW11TM6sG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCW11TM6sG .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-qCW11TM6sG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCW11TM6sG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCW11TM6sG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCW11TM6sG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCW11TM6sG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCW11TM6sG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCW11TM6sG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCW11TM6sG button.navbar-toggler:focus {
  outline: none;
}
.cid-qCW11TM6sG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCW11TM6sG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCW11TM6sG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCW11TM6sG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCW11TM6sG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCW11TM6sG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCW11TM6sG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCW11TM6sG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCW11TM6sG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCW11TM6sG .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCW11TM6sG .collapsed .btn {
  display: flex;
}
.cid-qCW11TM6sG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCW11TM6sG .collapsed .navbar-collapse.collapsing,
.cid-qCW11TM6sG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCW11TM6sG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCW11TM6sG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCW11TM6sG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCW11TM6sG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCW11TM6sG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCW11TM6sG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCW11TM6sG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCW11TM6sG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCW11TM6sG .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCW11TM6sG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCW11TM6sG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCW11TM6sG .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-qCW11TM6sG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCW11TM6sG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCW11TM6sG .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-qCW11TM6sG .navbar-expand {
    flex-direction: column;
  }
  .cid-qCW11TM6sG img {
    height: 3.8rem !important;
  }
  .cid-qCW11TM6sG .btn {
    display: flex;
  }
  .cid-qCW11TM6sG button.navbar-toggler {
    display: block;
  }
  .cid-qCW11TM6sG .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCW11TM6sG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCW11TM6sG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCW11TM6sG .navbar-collapse.collapsing,
  .cid-qCW11TM6sG .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCW11TM6sG .navbar-collapse.collapsing .navbar-nav,
  .cid-qCW11TM6sG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCW11TM6sG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCW11TM6sG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCW11TM6sG .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCW11TM6sG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCW11TM6sG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCW11TM6sG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCW11TM6sG .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-qCW11TM6sG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCW11TM6sG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCW11TM6sG .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-qCW11TM6sG .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCW11TM6sG .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW11TM6sG .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW11TM6sG .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW11TM6sG .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCW11TM6sG .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW11TM6sG .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCW11TM6sG .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCW11TM6sG .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCW11UR2DD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/dzial-energetyka-2000x505.png");
}
.cid-qCW11UR2DD .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW11VOzip {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCW11VOzip h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW11VOzip h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW11VOzip p {
  color: #767676;
  text-align: left;
}
.cid-qCW11VOzip .card-box {
  padding-top: 2rem;
}
.cid-qCW11VOzip .card-wrapper {
  height: 100%;
}
.cid-qCW11VOzip .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCW11VOzip a.ex1:link,
.cid-qCW11VOzip a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCW11VOzip a.ex1:hover {
  text-decoration: underline;
}
.cid-qCW11VOzip .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCW11VOzip .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCW11VOzip .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCW120Y4fp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCW120Y4fp .content {
    text-align: center;
  }
  .cid-qCW120Y4fp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCW120Y4fp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCW120Y4fp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCW120Y4fp .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCW120Y4fp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCW120Y4fp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCW120Y4fp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCW120Y4fp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCW120Y4fp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCW120Y4fp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCW120Y4fp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCW120Y4fp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCW120Y4fp H5 {
  color: #c1c1c1;
}
.cid-qCW2WZh5Hr .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCW2WZh5Hr .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCW2WZh5Hr .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCW2WZh5Hr a {
  font-style: normal;
}
.cid-qCW2WZh5Hr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCW2WZh5Hr .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCW2WZh5Hr .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCW2WZh5Hr .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCW2WZh5Hr .menu-logo {
  margin-right: auto;
}
.cid-qCW2WZh5Hr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCW2WZh5Hr .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-qCW2WZh5Hr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCW2WZh5Hr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCW2WZh5Hr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCW2WZh5Hr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCW2WZh5Hr .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCW2WZh5Hr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCW2WZh5Hr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCW2WZh5Hr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCW2WZh5Hr .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCW2WZh5Hr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCW2WZh5Hr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCW2WZh5Hr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCW2WZh5Hr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCW2WZh5Hr .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-qCW2WZh5Hr .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCW2WZh5Hr .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCW2WZh5Hr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCW2WZh5Hr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCW2WZh5Hr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCW2WZh5Hr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCW2WZh5Hr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCW2WZh5Hr button.navbar-toggler:focus {
  outline: none;
}
.cid-qCW2WZh5Hr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCW2WZh5Hr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCW2WZh5Hr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCW2WZh5Hr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCW2WZh5Hr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCW2WZh5Hr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCW2WZh5Hr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCW2WZh5Hr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCW2WZh5Hr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCW2WZh5Hr .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCW2WZh5Hr .collapsed .btn {
  display: flex;
}
.cid-qCW2WZh5Hr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.collapsing,
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCW2WZh5Hr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCW2WZh5Hr .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCW2WZh5Hr .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCW2WZh5Hr .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCW2WZh5Hr .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-qCW2WZh5Hr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCW2WZh5Hr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCW2WZh5Hr .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-qCW2WZh5Hr .navbar-expand {
    flex-direction: column;
  }
  .cid-qCW2WZh5Hr img {
    height: 3.8rem !important;
  }
  .cid-qCW2WZh5Hr .btn {
    display: flex;
  }
  .cid-qCW2WZh5Hr button.navbar-toggler {
    display: block;
  }
  .cid-qCW2WZh5Hr .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCW2WZh5Hr .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCW2WZh5Hr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCW2WZh5Hr .navbar-collapse.collapsing,
  .cid-qCW2WZh5Hr .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCW2WZh5Hr .navbar-collapse.collapsing .navbar-nav,
  .cid-qCW2WZh5Hr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCW2WZh5Hr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCW2WZh5Hr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCW2WZh5Hr .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCW2WZh5Hr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCW2WZh5Hr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCW2WZh5Hr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCW2WZh5Hr .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-qCW2WZh5Hr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCW2WZh5Hr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCW2WZh5Hr .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-qCW2WZh5Hr .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCW2WZh5Hr .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW2WZh5Hr .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW2WZh5Hr .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW2WZh5Hr .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCW2WZh5Hr .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW2WZh5Hr .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCW2WZh5Hr .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCW2WZh5Hr .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCW2WZULRt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/dzial-elektronika-2000x1250.jpg");
}
.cid-qCW2WZULRt .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW2X0OPWW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCW2X0OPWW h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW2X0OPWW h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW2X0OPWW p {
  color: #767676;
  text-align: left;
}
.cid-qCW2X0OPWW .card-box {
  padding-top: 2rem;
}
.cid-qCW2X0OPWW .card-wrapper {
  height: 100%;
}
.cid-qCW2X0OPWW .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCW2X0OPWW a.ex1:link,
.cid-qCW2X0OPWW a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCW2X0OPWW a.ex1:hover {
  text-decoration: underline;
}
.cid-qCW2X0OPWW .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCW2X0OPWW .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCW2X0OPWW .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCW2X1DdRG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCW2X1DdRG .content {
    text-align: center;
  }
  .cid-qCW2X1DdRG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCW2X1DdRG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCW2X1DdRG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCW2X1DdRG .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCW2X1DdRG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCW2X1DdRG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCW2X1DdRG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCW2X1DdRG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCW2X1DdRG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCW2X1DdRG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCW2X1DdRG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCW2X1DdRG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCW2X1DdRG H5 {
  color: #c1c1c1;
}
.cid-qCW4Q5Ws1V .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCW4Q5Ws1V .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCW4Q5Ws1V .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCW4Q5Ws1V a {
  font-style: normal;
}
.cid-qCW4Q5Ws1V .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCW4Q5Ws1V .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCW4Q5Ws1V .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCW4Q5Ws1V .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCW4Q5Ws1V .menu-logo {
  margin-right: auto;
}
.cid-qCW4Q5Ws1V .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCW4Q5Ws1V .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-qCW4Q5Ws1V .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCW4Q5Ws1V .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCW4Q5Ws1V .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCW4Q5Ws1V .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCW4Q5Ws1V .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCW4Q5Ws1V .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCW4Q5Ws1V .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCW4Q5Ws1V .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCW4Q5Ws1V .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCW4Q5Ws1V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCW4Q5Ws1V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCW4Q5Ws1V .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCW4Q5Ws1V .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCW4Q5Ws1V .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-qCW4Q5Ws1V .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCW4Q5Ws1V .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCW4Q5Ws1V .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCW4Q5Ws1V .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCW4Q5Ws1V .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCW4Q5Ws1V .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCW4Q5Ws1V button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCW4Q5Ws1V button.navbar-toggler:focus {
  outline: none;
}
.cid-qCW4Q5Ws1V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCW4Q5Ws1V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCW4Q5Ws1V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCW4Q5Ws1V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCW4Q5Ws1V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCW4Q5Ws1V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCW4Q5Ws1V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCW4Q5Ws1V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCW4Q5Ws1V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCW4Q5Ws1V .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCW4Q5Ws1V .collapsed .btn {
  display: flex;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.collapsing,
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCW4Q5Ws1V .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCW4Q5Ws1V .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCW4Q5Ws1V .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCW4Q5Ws1V .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-qCW4Q5Ws1V .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCW4Q5Ws1V .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCW4Q5Ws1V .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-qCW4Q5Ws1V .navbar-expand {
    flex-direction: column;
  }
  .cid-qCW4Q5Ws1V img {
    height: 3.8rem !important;
  }
  .cid-qCW4Q5Ws1V .btn {
    display: flex;
  }
  .cid-qCW4Q5Ws1V button.navbar-toggler {
    display: block;
  }
  .cid-qCW4Q5Ws1V .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCW4Q5Ws1V .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCW4Q5Ws1V .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCW4Q5Ws1V .navbar-collapse.collapsing,
  .cid-qCW4Q5Ws1V .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCW4Q5Ws1V .navbar-collapse.collapsing .navbar-nav,
  .cid-qCW4Q5Ws1V .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCW4Q5Ws1V .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCW4Q5Ws1V .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCW4Q5Ws1V .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCW4Q5Ws1V .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCW4Q5Ws1V .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCW4Q5Ws1V .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCW4Q5Ws1V .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-qCW4Q5Ws1V .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCW4Q5Ws1V .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCW4Q5Ws1V .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-qCW4Q5Ws1V .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCW4Q5Ws1V .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW4Q5Ws1V .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW4Q5Ws1V .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW4Q5Ws1V .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCW4Q5Ws1V .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW4Q5Ws1V .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCW4Q5Ws1V .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCW4Q5Ws1V .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCW4Q6zuRa {
  padding-top: 75px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/dzial-strefaex-2000x876.png");
}
.cid-qCW4Q6zuRa .dekor_dzial {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCW4Q7eKGh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qCW4Q7eKGh h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW4Q7eKGh h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCW4Q7eKGh p {
  color: #767676;
  text-align: left;
}
.cid-qCW4Q7eKGh .card-box {
  padding-top: 2rem;
}
.cid-qCW4Q7eKGh .card-wrapper {
  height: 100%;
}
.cid-qCW4Q7eKGh .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-qCW4Q7eKGh a.ex1:link,
.cid-qCW4Q7eKGh a.ex1:visited {
  font-family: "Baloo";
}
.cid-qCW4Q7eKGh a.ex1:hover {
  text-decoration: underline;
}
.cid-qCW4Q7eKGh .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-qCW4Q7eKGh .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-qCW4Q7eKGh .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-qCW4Q85eli {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCW4Q85eli .content {
    text-align: center;
  }
  .cid-qCW4Q85eli .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCW4Q85eli .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCW4Q85eli .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCW4Q85eli .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCW4Q85eli .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCW4Q85eli .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCW4Q85eli .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCW4Q85eli .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCW4Q85eli .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCW4Q85eli .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCW4Q85eli .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCW4Q85eli .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCW4Q85eli H5 {
  color: #c1c1c1;
}
.cid-qCWfaoPFvf .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qCWfaoPFvf .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qCWfaoPFvf .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qCWfaoPFvf a {
  font-style: normal;
}
.cid-qCWfaoPFvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qCWfaoPFvf .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCWfaoPFvf .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCWfaoPFvf .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCWfaoPFvf .menu-logo {
  margin-right: auto;
}
.cid-qCWfaoPFvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCWfaoPFvf .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-qCWfaoPFvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCWfaoPFvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCWfaoPFvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCWfaoPFvf .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCWfaoPFvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCWfaoPFvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCWfaoPFvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCWfaoPFvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCWfaoPFvf .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCWfaoPFvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCWfaoPFvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCWfaoPFvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCWfaoPFvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCWfaoPFvf .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-qCWfaoPFvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCWfaoPFvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCWfaoPFvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCWfaoPFvf .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCWfaoPFvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCWfaoPFvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCWfaoPFvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCWfaoPFvf button.navbar-toggler:focus {
  outline: none;
}
.cid-qCWfaoPFvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCWfaoPFvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCWfaoPFvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCWfaoPFvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCWfaoPFvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCWfaoPFvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCWfaoPFvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCWfaoPFvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCWfaoPFvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCWfaoPFvf .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCWfaoPFvf .collapsed .btn {
  display: flex;
}
.cid-qCWfaoPFvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCWfaoPFvf .collapsed .navbar-collapse.collapsing,
.cid-qCWfaoPFvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCWfaoPFvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCWfaoPFvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCWfaoPFvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCWfaoPFvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCWfaoPFvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCWfaoPFvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCWfaoPFvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCWfaoPFvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCWfaoPFvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCWfaoPFvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCWfaoPFvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCWfaoPFvf .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-qCWfaoPFvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCWfaoPFvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCWfaoPFvf .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-qCWfaoPFvf .navbar-expand {
    flex-direction: column;
  }
  .cid-qCWfaoPFvf img {
    height: 3.8rem !important;
  }
  .cid-qCWfaoPFvf .btn {
    display: flex;
  }
  .cid-qCWfaoPFvf button.navbar-toggler {
    display: block;
  }
  .cid-qCWfaoPFvf .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCWfaoPFvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCWfaoPFvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCWfaoPFvf .navbar-collapse.collapsing,
  .cid-qCWfaoPFvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCWfaoPFvf .navbar-collapse.collapsing .navbar-nav,
  .cid-qCWfaoPFvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCWfaoPFvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCWfaoPFvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCWfaoPFvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCWfaoPFvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCWfaoPFvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCWfaoPFvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCWfaoPFvf .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-qCWfaoPFvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCWfaoPFvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCWfaoPFvf .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-qCWfaoPFvf .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCWfaoPFvf .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCWfaoPFvf .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCWfaoPFvf .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCWfaoPFvf .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qCWfaoPFvf .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qCWfaoPFvf .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCWfaoPFvf .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qCWfaoPFvf .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qCWfJ3frAn {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qCWfJ3frAn h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-qCWfJ3frAn h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qCWfJ3frAn p {
  color: #767676;
}
.cid-qCWfJ3frAn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qCWfJ3frAn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qCWfJ3frAn .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-qCWfJ3frAn .mbr-section-subtitle {
  color: #767676;
}
.cid-qCWfJ3frAn .card-title {
  font-weight: 500;
}
.cid-qCWfJ3frAn .card-img {
  text-align: inherit;
}
.cid-qCWfJ3frAn .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qCWfJ3frAn .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qCWfJ3frAn .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qCWfJ3frAn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-qCWfJ3frAn .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-qCWfJ3frAn .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-qCWfJ3frAn .mbr-section-title {
  color: #fac51c;
}
.cid-qD0MYPCjmX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qD0MYPCjmX .mbr-section-subtitle {
  color: #767676;
}
.cid-qD0MYPCjmX H1 {
  color: #facb34;
}
.cid-qD0MYPCjmX .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qD0Mf6BhIs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qD0Mf6BhIs .mbr-text,
.cid-qD0Mf6BhIs blockquote {
  color: #767676;
}
.cid-qD0OKxSpqZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qD0OKxSpqZ .mbr-section-subtitle {
  color: #767676;
}
.cid-qD0OKxSpqZ H1 {
  color: #facb34;
}
.cid-qD0OKxSpqZ .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qD0OQb6oya {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qD0OQb6oya .mbr-text,
.cid-qD0OQb6oya blockquote {
  color: #767676;
}
.cid-qD0OQb6oya .podtytul {
  padding: 0.625rem 2.1874rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 3px;
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  color: #8c8c8c;
  text-align: right;
}
.cid-qD0OQb6oya .tabela_align {
  text-align: center;
}
.cid-qD0XL33IP7 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-qD0XL33IP7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qD0XL33IP7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qD0XL33IP7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qD0XL33IP7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qD0XL33IP7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qD0XL33IP7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qD0XL33IP7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qD0XL33IP7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qD0XL33IP7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qD1l5hS6jY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qD1l5hS6jY .mbr-section-subtitle {
  color: #767676;
}
.cid-qD1l5hS6jY H1 {
  color: #facb34;
}
.cid-qD1l5hS6jY .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qD1f6Omaif {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-qD1f6Omaif .mbr-section-text {
  color: #767676;
}
.cid-qD1f6Omaif .mbr-section-subtitle {
  color: #767676;
}
.cid-qD1f6Omaif .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-qD1f6Omaif .mbr-iconfont {
  font-size: 48px;
}
.cid-qD1f6Omaif .card-img {
  margin-bottom: 1.5rem;
}
.cid-qD1f6Omaif .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-qD1f6Omaif .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-qD1f6Omaif .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-qD1f6Omaif .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-qD1f6Omaif .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-qD1f6Omaif .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-qD1f6Omaif .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-qD1f6Omaif .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-qD1lf7FtZs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qD1lf7FtZs .mbr-section-subtitle {
  color: #767676;
}
.cid-qD1lf7FtZs H1 {
  color: #facb34;
}
.cid-qD1lf7FtZs .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qD1wp1QzeT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qD1wp1QzeT .mbr-text,
.cid-qD1wp1QzeT blockquote {
  color: #767676;
}
.cid-qD1xiOhIi5 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qD1xiOhIi5 .mbr-section-subtitle {
  color: #767676;
}
.cid-qD1xiOhIi5 .container-table {
  margin: 0 auto;
}
.cid-qD1xiOhIi5 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qD1xiOhIi5 .dataTables_wrapper {
  display: block;
}
.cid-qD1xiOhIi5 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qD1xiOhIi5 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qD1xiOhIi5 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-qD1xiOhIi5 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-qD1xiOhIi5 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-qD1xiOhIi5 table td {
  border-top: 1px solid #cccccc;
}
.cid-qD1xiOhIi5 table.table {
  background: #ffffff;
}
.cid-qD1xiOhIi5 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qD1xiOhIi5 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qD1xiOhIi5 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qD1xiOhIi5 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-qD1xiOhIi5 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-qD1xiOhIi5 .dataTables_filter {
    text-align: center;
  }
  .cid-qD1xiOhIi5 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-qCWfawVtdz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qCWfawVtdz .content {
    text-align: center;
  }
  .cid-qCWfawVtdz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCWfawVtdz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCWfawVtdz .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCWfawVtdz .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qCWfawVtdz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCWfawVtdz .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCWfawVtdz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCWfawVtdz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCWfawVtdz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCWfawVtdz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCWfawVtdz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCWfawVtdz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCWfawVtdz H5 {
  color: #c1c1c1;
}
.cid-qK5Gt5S7t7 .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qK5Gt5S7t7 .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qK5Gt5S7t7 .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qK5Gt5S7t7 a {
  font-style: normal;
}
.cid-qK5Gt5S7t7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qK5Gt5S7t7 .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qK5Gt5S7t7 .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qK5Gt5S7t7 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qK5Gt5S7t7 .menu-logo {
  margin-right: auto;
}
.cid-qK5Gt5S7t7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qK5Gt5S7t7 .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-qK5Gt5S7t7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qK5Gt5S7t7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qK5Gt5S7t7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qK5Gt5S7t7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qK5Gt5S7t7 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qK5Gt5S7t7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qK5Gt5S7t7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qK5Gt5S7t7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qK5Gt5S7t7 .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qK5Gt5S7t7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qK5Gt5S7t7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qK5Gt5S7t7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qK5Gt5S7t7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qK5Gt5S7t7 .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-qK5Gt5S7t7 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qK5Gt5S7t7 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qK5Gt5S7t7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qK5Gt5S7t7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qK5Gt5S7t7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qK5Gt5S7t7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qK5Gt5S7t7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qK5Gt5S7t7 button.navbar-toggler:focus {
  outline: none;
}
.cid-qK5Gt5S7t7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qK5Gt5S7t7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qK5Gt5S7t7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qK5Gt5S7t7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qK5Gt5S7t7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qK5Gt5S7t7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qK5Gt5S7t7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qK5Gt5S7t7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qK5Gt5S7t7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qK5Gt5S7t7 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qK5Gt5S7t7 .collapsed .btn {
  display: flex;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.collapsing,
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qK5Gt5S7t7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qK5Gt5S7t7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qK5Gt5S7t7 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qK5Gt5S7t7 .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-qK5Gt5S7t7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qK5Gt5S7t7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qK5Gt5S7t7 .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-qK5Gt5S7t7 .navbar-expand {
    flex-direction: column;
  }
  .cid-qK5Gt5S7t7 img {
    height: 3.8rem !important;
  }
  .cid-qK5Gt5S7t7 .btn {
    display: flex;
  }
  .cid-qK5Gt5S7t7 button.navbar-toggler {
    display: block;
  }
  .cid-qK5Gt5S7t7 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qK5Gt5S7t7 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qK5Gt5S7t7 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qK5Gt5S7t7 .navbar-collapse.collapsing,
  .cid-qK5Gt5S7t7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qK5Gt5S7t7 .navbar-collapse.collapsing .navbar-nav,
  .cid-qK5Gt5S7t7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qK5Gt5S7t7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qK5Gt5S7t7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qK5Gt5S7t7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qK5Gt5S7t7 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qK5Gt5S7t7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qK5Gt5S7t7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qK5Gt5S7t7 .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-qK5Gt5S7t7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qK5Gt5S7t7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qK5Gt5S7t7 .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-qK5Gt5S7t7 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qK5Gt5S7t7 .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5Gt5S7t7 .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5Gt5S7t7 .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5Gt5S7t7 .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qK5Gt5S7t7 .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5Gt5S7t7 .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qK5Gt5S7t7 .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qK5Gt5S7t7 .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qK5Gt6GCWc {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qK5Gt6GCWc h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-qK5Gt6GCWc h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qK5Gt6GCWc p {
  color: #767676;
}
.cid-qK5Gt6GCWc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qK5Gt6GCWc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qK5Gt6GCWc .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-qK5Gt6GCWc .mbr-section-subtitle {
  color: #767676;
}
.cid-qK5Gt6GCWc .card-title {
  font-weight: 500;
}
.cid-qK5Gt6GCWc .card-img {
  text-align: inherit;
}
.cid-qK5Gt6GCWc .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qK5Gt6GCWc .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qK5Gt6GCWc .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qK5Gt6GCWc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-qK5Gt6GCWc .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-qK5Gt6GCWc .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-qK5Gt6GCWc .mbr-section-title {
  color: #fac51c;
}
.cid-qK5Gt7KBay {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qK5Gt7KBay .mbr-section-subtitle {
  color: #767676;
}
.cid-qK5Gt7KBay H1 {
  color: #facb34;
}
.cid-qK5Gt7KBay .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5Gt8hQ8S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qK5Gt8hQ8S .mbr-text,
.cid-qK5Gt8hQ8S blockquote {
  color: #767676;
}
.cid-qK5Gt8IZaE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qK5Gt8IZaE .mbr-section-subtitle {
  color: #767676;
}
.cid-qK5Gt8IZaE H1 {
  color: #facb34;
}
.cid-qK5Gt8IZaE .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5Gt9eqIg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qK5Gt9eqIg .mbr-text,
.cid-qK5Gt9eqIg blockquote {
  color: #767676;
}
.cid-qK5Gt9eqIg .podtytul {
  padding: 0.625rem 2.1874rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 3px;
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  color: #8c8c8c;
  text-align: right;
}
.cid-qK5Gt9eqIg .tabela_align {
  text-align: center;
}
.cid-qK6bGqpCpS {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qK6bGqpCpS .image-block {
  margin: auto;
}
.cid-qK6bGqpCpS figcaption {
  position: relative;
}
.cid-qK6bGqpCpS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-qK6bGqpCpS .image-block {
    width: 100% !important;
  }
}
.cid-qK6hP8pQfT {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qK6hP8pQfT .mbr-text,
.cid-qK6hP8pQfT blockquote {
  color: #767676;
}
.cid-qK6hP8pQfT .mbr-text {
  text-align: center;
}
.cid-qK5Gt9NiP3 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-qK5Gt9NiP3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qK5Gt9NiP3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qK5Gt9NiP3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qK5Gt9NiP3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qK5Gt9NiP3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qK5Gt9NiP3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qK5Gt9NiP3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qK5Gt9NiP3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qK5Gt9NiP3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qK5GtbZbj6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qK5GtbZbj6 .mbr-section-subtitle {
  color: #767676;
}
.cid-qK5GtbZbj6 H1 {
  color: #facb34;
}
.cid-qK5GtbZbj6 .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qK5GtcE1LW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-qK5GtcE1LW .mbr-section-text {
  color: #767676;
}
.cid-qK5GtcE1LW .mbr-section-subtitle {
  color: #767676;
}
.cid-qK5GtcE1LW .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-qK5GtcE1LW .mbr-iconfont {
  font-size: 48px;
}
.cid-qK5GtcE1LW .card-img {
  margin-bottom: 1.5rem;
}
.cid-qK5GtcE1LW .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-qK5GtcE1LW .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-qK5GtcE1LW .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-qK5GtcE1LW .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-qK5GtcE1LW .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-qK5GtcE1LW .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-qK5GtcE1LW .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-qK5GtcE1LW .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-qKbyCJ92Ya {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qKbyCJ92Ya .mbr-section-subtitle {
  color: #767676;
}
.cid-qKbyCJ92Ya H1 {
  color: #facb34;
}
.cid-qKbyCJ92Ya .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qKbyOmJvuo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qKbyOmJvuo .mbr-text,
.cid-qKbyOmJvuo blockquote {
  color: #767676;
}
.cid-qKbzcFWtgf {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qKbzcFWtgf .mbr-section-subtitle {
  color: #767676;
}
.cid-qKbzcFWtgf .container-table {
  margin: 0 auto;
}
.cid-qKbzcFWtgf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qKbzcFWtgf .dataTables_wrapper {
  display: block;
}
.cid-qKbzcFWtgf .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qKbzcFWtgf .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qKbzcFWtgf table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-qKbzcFWtgf table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-qKbzcFWtgf table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-qKbzcFWtgf table td {
  border-top: 1px solid #cccccc;
}
.cid-qKbzcFWtgf table.table {
  background: #ffffff;
}
.cid-qKbzcFWtgf .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qKbzcFWtgf .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qKbzcFWtgf .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qKbzcFWtgf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-qKbzcFWtgf .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-qKbzcFWtgf .dataTables_filter {
    text-align: center;
  }
  .cid-qKbzcFWtgf .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-qK5Gtk7iCo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qK5Gtk7iCo .content {
    text-align: center;
  }
  .cid-qK5Gtk7iCo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qK5Gtk7iCo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qK5Gtk7iCo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qK5Gtk7iCo .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qK5Gtk7iCo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qK5Gtk7iCo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qK5Gtk7iCo .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qK5Gtk7iCo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qK5Gtk7iCo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qK5Gtk7iCo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qK5Gtk7iCo .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qK5Gtk7iCo .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qK5Gtk7iCo H5 {
  color: #c1c1c1;
}
.cid-qMJ8gG2HYq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #333333;
}
@media (min-width: 992px) {
  .cid-qMJ8gG2HYq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qMJ8gG2HYq .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qMJ8gG2HYq .mbr-text {
  color: #767676;
}
.cid-qMJ5Tyel80 {
  background-image: url("../../../assets/images/awaria-3.png");
}
.cid-qMJ5Tyel80 .mbr-section-subtitle {
  letter-spacing: .2rem;
}
.cid-qMJ5Tyel80 .kolor_email {
  color: #fac51c;
}
.cid-qMJ5Tyel80 H1 {
  color: #ffffff;
}
.cid-qMJ5Tyel80 H3 {
  color: #ffffff;
}
.cid-qMJ5Tyel80 .mbr-text,
.cid-qMJ5Tyel80 .mbr-section-btn {
  color: #ffffff;
}
.cid-rEoWK5iYJ3 .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-rEoWK5iYJ3 .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-rEoWK5iYJ3 .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-rEoWK5iYJ3 a {
  font-style: normal;
}
.cid-rEoWK5iYJ3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rEoWK5iYJ3 .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rEoWK5iYJ3 .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-rEoWK5iYJ3 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rEoWK5iYJ3 .menu-logo {
  margin-right: auto;
}
.cid-rEoWK5iYJ3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rEoWK5iYJ3 .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-rEoWK5iYJ3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rEoWK5iYJ3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rEoWK5iYJ3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rEoWK5iYJ3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rEoWK5iYJ3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rEoWK5iYJ3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rEoWK5iYJ3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rEoWK5iYJ3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rEoWK5iYJ3 .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rEoWK5iYJ3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rEoWK5iYJ3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rEoWK5iYJ3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rEoWK5iYJ3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rEoWK5iYJ3 .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-rEoWK5iYJ3 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rEoWK5iYJ3 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rEoWK5iYJ3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rEoWK5iYJ3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rEoWK5iYJ3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rEoWK5iYJ3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rEoWK5iYJ3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rEoWK5iYJ3 button.navbar-toggler:focus {
  outline: none;
}
.cid-rEoWK5iYJ3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rEoWK5iYJ3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rEoWK5iYJ3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rEoWK5iYJ3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rEoWK5iYJ3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rEoWK5iYJ3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rEoWK5iYJ3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rEoWK5iYJ3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rEoWK5iYJ3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rEoWK5iYJ3 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rEoWK5iYJ3 .collapsed .btn {
  display: flex;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.collapsing,
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rEoWK5iYJ3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rEoWK5iYJ3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rEoWK5iYJ3 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rEoWK5iYJ3 .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-rEoWK5iYJ3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rEoWK5iYJ3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rEoWK5iYJ3 .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-rEoWK5iYJ3 .navbar-expand {
    flex-direction: column;
  }
  .cid-rEoWK5iYJ3 img {
    height: 3.8rem !important;
  }
  .cid-rEoWK5iYJ3 .btn {
    display: flex;
  }
  .cid-rEoWK5iYJ3 button.navbar-toggler {
    display: block;
  }
  .cid-rEoWK5iYJ3 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rEoWK5iYJ3 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rEoWK5iYJ3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rEoWK5iYJ3 .navbar-collapse.collapsing,
  .cid-rEoWK5iYJ3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rEoWK5iYJ3 .navbar-collapse.collapsing .navbar-nav,
  .cid-rEoWK5iYJ3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rEoWK5iYJ3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rEoWK5iYJ3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rEoWK5iYJ3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rEoWK5iYJ3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rEoWK5iYJ3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rEoWK5iYJ3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rEoWK5iYJ3 .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-rEoWK5iYJ3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rEoWK5iYJ3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rEoWK5iYJ3 .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-rEoWK5iYJ3 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rEoWK5iYJ3 .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEoWK5iYJ3 .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEoWK5iYJ3 .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEoWK5iYJ3 .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rEoWK5iYJ3 .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEoWK5iYJ3 .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rEoWK5iYJ3 .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rEoWK5iYJ3 .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-rEoWK69OxE {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rEoWK69OxE h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-rEoWK69OxE h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rEoWK69OxE p {
  color: #767676;
}
.cid-rEoWK69OxE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rEoWK69OxE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rEoWK69OxE .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rEoWK69OxE .mbr-section-subtitle {
  color: #767676;
}
.cid-rEoWK69OxE .card-title {
  font-weight: 500;
}
.cid-rEoWK69OxE .card-img {
  text-align: inherit;
}
.cid-rEoWK69OxE .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rEoWK69OxE .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rEoWK69OxE .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rEoWK69OxE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rEoWK69OxE .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rEoWK69OxE .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rEoWK69OxE .mbr-section-title {
  color: #fac51c;
}
.cid-rEoWK6WjD8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEoWK6WjD8 .mbr-section-subtitle {
  color: #767676;
}
.cid-rEoWK6WjD8 H1 {
  color: #facb34;
}
.cid-rEoWK6WjD8 .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEoWK7o1uJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEoWK7o1uJ .mbr-text,
.cid-rEoWK7o1uJ blockquote {
  color: #767676;
}
.cid-rEoWK7Pvht {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEoWK7Pvht .mbr-section-subtitle {
  color: #767676;
}
.cid-rEoWK7Pvht H1 {
  color: #facb34;
}
.cid-rEoWK7Pvht .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEY14lTEy5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEY14lTEy5 .mbr-text,
.cid-rEY14lTEy5 blockquote {
  color: #767676;
}
.cid-rEY0egcTVC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rEY0egcTVC .mbr-section-subtitle {
  color: #767676;
}
.cid-rEY0egcTVC .container-table {
  margin: 0 auto;
}
.cid-rEY0egcTVC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rEY0egcTVC .dataTables_wrapper {
  display: block;
}
.cid-rEY0egcTVC .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rEY0egcTVC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rEY0egcTVC table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rEY0egcTVC table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rEY0egcTVC table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rEY0egcTVC table td {
  border-top: 1px solid #cccccc;
}
.cid-rEY0egcTVC table.table {
  background: #ffffff;
}
.cid-rEY0egcTVC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rEY0egcTVC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rEY0egcTVC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rEY0egcTVC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rEY0egcTVC .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rEY0egcTVC .dataTables_filter {
    text-align: center;
  }
  .cid-rEY0egcTVC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rEoWK8V1f6 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-rEoWK8V1f6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rEoWK8V1f6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rEoWK8V1f6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rEoWK8V1f6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rEoWK8V1f6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rEoWK8V1f6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rEoWK8V1f6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rEoWK8V1f6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rEoWK8V1f6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rEoWKaacka {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEoWKaacka .mbr-section-subtitle {
  color: #767676;
}
.cid-rEoWKaacka H1 {
  color: #facb34;
}
.cid-rEoWKaacka .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEYVLIZyXg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rEYVLIZyXg .mbr-section-text {
  color: #767676;
}
.cid-rEYVLIZyXg .mbr-section-subtitle {
  color: #767676;
}
.cid-rEYVLIZyXg .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rEYVLIZyXg .mbr-iconfont {
  font-size: 48px;
}
.cid-rEYVLIZyXg .card-img {
  margin-bottom: 1.5rem;
}
.cid-rEYVLIZyXg .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rEYVLIZyXg .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rEYVLIZyXg .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rEYVLIZyXg .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-rEYVLIZyXg .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-rEYVLIZyXg .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-rEYVLIZyXg .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-rEYVLIZyXg .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-rEoWKdxoYh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEoWKdxoYh .mbr-section-subtitle {
  color: #767676;
}
.cid-rEoWKdxoYh H1 {
  color: #facb34;
}
.cid-rEoWKdxoYh .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rEoWKeekEH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEoWKeekEH .mbr-text,
.cid-rEoWKeekEH blockquote {
  color: #767676;
}
.cid-rEoWKePEYn {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rEoWKePEYn .mbr-section-subtitle {
  color: #767676;
}
.cid-rEoWKePEYn .container-table {
  margin: 0 auto;
}
.cid-rEoWKePEYn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rEoWKePEYn .dataTables_wrapper {
  display: block;
}
.cid-rEoWKePEYn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rEoWKePEYn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rEoWKePEYn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rEoWKePEYn table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rEoWKePEYn table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rEoWKePEYn table td {
  border-top: 1px solid #cccccc;
}
.cid-rEoWKePEYn table.table {
  background: #ffffff;
}
.cid-rEoWKePEYn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rEoWKePEYn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rEoWKePEYn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rEoWKePEYn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rEoWKePEYn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rEoWKePEYn .dataTables_filter {
    text-align: center;
  }
  .cid-rEoWKePEYn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rEoWKhS1cd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rEoWKhS1cd .content {
    text-align: center;
  }
  .cid-rEoWKhS1cd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rEoWKhS1cd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rEoWKhS1cd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rEoWKhS1cd .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-rEoWKhS1cd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rEoWKhS1cd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rEoWKhS1cd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rEoWKhS1cd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rEoWKhS1cd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rEoWKhS1cd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rEoWKhS1cd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rEoWKhS1cd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rEoWKhS1cd H5 {
  color: #c1c1c1;
}
.cid-qEfz1wEXgf .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-qEfz1wEXgf .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-qEfz1wEXgf .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-qEfz1wEXgf a {
  font-style: normal;
}
.cid-qEfz1wEXgf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qEfz1wEXgf .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qEfz1wEXgf .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-qEfz1wEXgf .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qEfz1wEXgf .menu-logo {
  margin-right: auto;
}
.cid-qEfz1wEXgf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qEfz1wEXgf .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-qEfz1wEXgf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qEfz1wEXgf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qEfz1wEXgf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qEfz1wEXgf .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qEfz1wEXgf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qEfz1wEXgf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qEfz1wEXgf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qEfz1wEXgf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qEfz1wEXgf .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qEfz1wEXgf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qEfz1wEXgf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qEfz1wEXgf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qEfz1wEXgf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qEfz1wEXgf .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-qEfz1wEXgf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qEfz1wEXgf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qEfz1wEXgf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qEfz1wEXgf .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qEfz1wEXgf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qEfz1wEXgf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qEfz1wEXgf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qEfz1wEXgf button.navbar-toggler:focus {
  outline: none;
}
.cid-qEfz1wEXgf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qEfz1wEXgf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qEfz1wEXgf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qEfz1wEXgf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qEfz1wEXgf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qEfz1wEXgf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qEfz1wEXgf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qEfz1wEXgf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qEfz1wEXgf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qEfz1wEXgf .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qEfz1wEXgf .collapsed .btn {
  display: flex;
}
.cid-qEfz1wEXgf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qEfz1wEXgf .collapsed .navbar-collapse.collapsing,
.cid-qEfz1wEXgf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qEfz1wEXgf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qEfz1wEXgf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qEfz1wEXgf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qEfz1wEXgf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qEfz1wEXgf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qEfz1wEXgf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qEfz1wEXgf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qEfz1wEXgf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qEfz1wEXgf .collapsed button.navbar-toggler {
  display: block;
}
.cid-qEfz1wEXgf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qEfz1wEXgf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qEfz1wEXgf .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-qEfz1wEXgf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qEfz1wEXgf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qEfz1wEXgf .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-qEfz1wEXgf .navbar-expand {
    flex-direction: column;
  }
  .cid-qEfz1wEXgf img {
    height: 3.8rem !important;
  }
  .cid-qEfz1wEXgf .btn {
    display: flex;
  }
  .cid-qEfz1wEXgf button.navbar-toggler {
    display: block;
  }
  .cid-qEfz1wEXgf .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qEfz1wEXgf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qEfz1wEXgf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qEfz1wEXgf .navbar-collapse.collapsing,
  .cid-qEfz1wEXgf .navbar-collapse.show {
    display: block !important;
  }
  .cid-qEfz1wEXgf .navbar-collapse.collapsing .navbar-nav,
  .cid-qEfz1wEXgf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qEfz1wEXgf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qEfz1wEXgf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qEfz1wEXgf .navbar-collapse.collapsing .navbar-buttons,
  .cid-qEfz1wEXgf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qEfz1wEXgf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qEfz1wEXgf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qEfz1wEXgf .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-qEfz1wEXgf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qEfz1wEXgf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qEfz1wEXgf .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-qEfz1wEXgf .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qEfz1wEXgf .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qEfz1wEXgf .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qEfz1wEXgf .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qEfz1wEXgf .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-qEfz1wEXgf .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qEfz1wEXgf .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qEfz1wEXgf .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-qEfz1wEXgf .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-qEfz1y4cTo {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qEfz1y4cTo h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-qEfz1y4cTo h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qEfz1y4cTo p {
  color: #767676;
}
.cid-qEfz1y4cTo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qEfz1y4cTo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qEfz1y4cTo .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-qEfz1y4cTo .mbr-section-subtitle {
  color: #767676;
}
.cid-qEfz1y4cTo .card-title {
  font-weight: 500;
}
.cid-qEfz1y4cTo .card-img {
  text-align: inherit;
}
.cid-qEfz1y4cTo .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qEfz1y4cTo .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qEfz1y4cTo .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qEfz1y4cTo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-qEfz1y4cTo .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-qEfz1y4cTo .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-qEfz1y4cTo .mbr-section-title {
  color: #fac51c;
}
.cid-qEfz1zkGj5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qEfz1zkGj5 .mbr-section-subtitle {
  color: #767676;
}
.cid-qEfz1zkGj5 H1 {
  color: #facb34;
}
.cid-qEfz1zkGj5 .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-qEfz1A8EvG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qEfz1A8EvG .mbr-text,
.cid-qEfz1A8EvG blockquote {
  color: #767676;
}
.cid-qEfz1M192C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-qEfz1M192C .content {
    text-align: center;
  }
  .cid-qEfz1M192C .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qEfz1M192C .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qEfz1M192C .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qEfz1M192C .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-qEfz1M192C .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qEfz1M192C .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qEfz1M192C .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qEfz1M192C .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qEfz1M192C .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qEfz1M192C .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qEfz1M192C .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qEfz1M192C .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qEfz1M192C H5 {
  color: #c1c1c1;
}
.cid-rF43dPPgvq .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-rF43dPPgvq .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-rF43dPPgvq .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-rF43dPPgvq a {
  font-style: normal;
}
.cid-rF43dPPgvq .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rF43dPPgvq .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rF43dPPgvq .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-rF43dPPgvq .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rF43dPPgvq .menu-logo {
  margin-right: auto;
}
.cid-rF43dPPgvq .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rF43dPPgvq .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-rF43dPPgvq .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rF43dPPgvq .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rF43dPPgvq .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rF43dPPgvq .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rF43dPPgvq .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rF43dPPgvq .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rF43dPPgvq .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rF43dPPgvq .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rF43dPPgvq .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rF43dPPgvq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rF43dPPgvq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rF43dPPgvq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rF43dPPgvq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rF43dPPgvq .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-rF43dPPgvq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rF43dPPgvq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rF43dPPgvq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rF43dPPgvq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rF43dPPgvq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rF43dPPgvq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rF43dPPgvq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rF43dPPgvq button.navbar-toggler:focus {
  outline: none;
}
.cid-rF43dPPgvq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rF43dPPgvq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rF43dPPgvq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rF43dPPgvq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rF43dPPgvq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rF43dPPgvq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF43dPPgvq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rF43dPPgvq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rF43dPPgvq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF43dPPgvq .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rF43dPPgvq .collapsed .btn {
  display: flex;
}
.cid-rF43dPPgvq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rF43dPPgvq .collapsed .navbar-collapse.collapsing,
.cid-rF43dPPgvq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rF43dPPgvq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rF43dPPgvq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rF43dPPgvq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rF43dPPgvq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rF43dPPgvq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rF43dPPgvq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rF43dPPgvq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rF43dPPgvq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rF43dPPgvq .collapsed button.navbar-toggler {
  display: block;
}
.cid-rF43dPPgvq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rF43dPPgvq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rF43dPPgvq .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-rF43dPPgvq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rF43dPPgvq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rF43dPPgvq .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-rF43dPPgvq .navbar-expand {
    flex-direction: column;
  }
  .cid-rF43dPPgvq img {
    height: 3.8rem !important;
  }
  .cid-rF43dPPgvq .btn {
    display: flex;
  }
  .cid-rF43dPPgvq button.navbar-toggler {
    display: block;
  }
  .cid-rF43dPPgvq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rF43dPPgvq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rF43dPPgvq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rF43dPPgvq .navbar-collapse.collapsing,
  .cid-rF43dPPgvq .navbar-collapse.show {
    display: block !important;
  }
  .cid-rF43dPPgvq .navbar-collapse.collapsing .navbar-nav,
  .cid-rF43dPPgvq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rF43dPPgvq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rF43dPPgvq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rF43dPPgvq .navbar-collapse.collapsing .navbar-buttons,
  .cid-rF43dPPgvq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rF43dPPgvq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rF43dPPgvq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rF43dPPgvq .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-rF43dPPgvq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rF43dPPgvq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rF43dPPgvq .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-rF43dPPgvq .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rF43dPPgvq .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dPPgvq .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dPPgvq .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dPPgvq .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF43dPPgvq .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dPPgvq .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF43dPPgvq .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF43dPPgvq .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-rF43dQBC6T {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rF43dQBC6T h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-rF43dQBC6T h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rF43dQBC6T p {
  color: #767676;
}
.cid-rF43dQBC6T .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rF43dQBC6T .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rF43dQBC6T .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rF43dQBC6T .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dQBC6T .card-title {
  font-weight: 500;
}
.cid-rF43dQBC6T .card-img {
  text-align: inherit;
}
.cid-rF43dQBC6T .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rF43dQBC6T .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rF43dQBC6T .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rF43dQBC6T .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rF43dQBC6T .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rF43dQBC6T .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rF43dQBC6T .mbr-section-title {
  color: #fac51c;
}
.cid-rF43dRzuEE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dRzuEE .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dRzuEE H1 {
  color: #facb34;
}
.cid-rF43dRzuEE .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dS2l6v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dS2l6v .mbr-text,
.cid-rF43dS2l6v blockquote {
  color: #767676;
}
.cid-rF43dSrWqe {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dSrWqe .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dSrWqe H1 {
  color: #facb34;
}
.cid-rF43dSrWqe .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dSUeI0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dSUeI0 .mbr-text,
.cid-rF43dSUeI0 blockquote {
  color: #767676;
}
.cid-rF43dThINd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rF43dThINd .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dThINd .container-table {
  margin: 0 auto;
}
.cid-rF43dThINd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rF43dThINd .dataTables_wrapper {
  display: block;
}
.cid-rF43dThINd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rF43dThINd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rF43dThINd table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rF43dThINd table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rF43dThINd table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rF43dThINd table td {
  border-top: 1px solid #cccccc;
}
.cid-rF43dThINd table.table {
  background: #ffffff;
}
.cid-rF43dThINd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rF43dThINd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rF43dThINd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rF43dThINd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rF43dThINd .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rF43dThINd .dataTables_filter {
    text-align: center;
  }
  .cid-rF43dThINd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rF43dUgn5U {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-rF43dUgn5U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rF43dUgn5U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rF43dUgn5U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rF43dUgn5U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rF43dUgn5U .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rF43dUgn5U .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rF43dUgn5U .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rF43dUgn5U .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rF43dUgn5U .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rF43dVkDDh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dVkDDh .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dVkDDh H1 {
  color: #facb34;
}
.cid-rF43dVkDDh .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dVSVWU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rF43dVSVWU .mbr-section-text {
  color: #767676;
}
.cid-rF43dVSVWU .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dVSVWU .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rF43dVSVWU .mbr-iconfont {
  font-size: 48px;
}
.cid-rF43dVSVWU .card-img {
  margin-bottom: 1.5rem;
}
.cid-rF43dVSVWU .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rF43dVSVWU .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rF43dVSVWU .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rF43dVSVWU .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-rF43dVSVWU .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-rF43dVSVWU .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-rF43dVSVWU .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-rF43dVSVWU .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-rF43dYUtzt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dYUtzt .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43dYUtzt H1 {
  color: #facb34;
}
.cid-rF43dYUtzt .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43dZwGFX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43dZwGFX .mbr-text,
.cid-rF43dZwGFX blockquote {
  color: #767676;
}
.cid-rF43e06jQN {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rF43e06jQN .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43e06jQN .container-table {
  margin: 0 auto;
}
.cid-rF43e06jQN .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rF43e06jQN .dataTables_wrapper {
  display: block;
}
.cid-rF43e06jQN .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rF43e06jQN .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rF43e06jQN table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rF43e06jQN table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rF43e06jQN table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rF43e06jQN table td {
  border-top: 1px solid #cccccc;
}
.cid-rF43e06jQN table.table {
  background: #ffffff;
}
.cid-rF43e06jQN .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rF43e06jQN .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rF43e06jQN .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rF43e06jQN .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rF43e06jQN .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rF43e06jQN .dataTables_filter {
    text-align: center;
  }
  .cid-rF43e06jQN .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rF43e1xXFU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rF43e1xXFU .content {
    text-align: center;
  }
  .cid-rF43e1xXFU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rF43e1xXFU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rF43e1xXFU .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rF43e1xXFU .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-rF43e1xXFU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rF43e1xXFU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rF43e1xXFU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rF43e1xXFU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rF43e1xXFU .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rF43e1xXFU .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rF43e1xXFU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rF43e1xXFU .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rF43e1xXFU H5 {
  color: #c1c1c1;
}
.cid-rF43aNVw3r .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-rF43aNVw3r .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-rF43aNVw3r .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-rF43aNVw3r a {
  font-style: normal;
}
.cid-rF43aNVw3r .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rF43aNVw3r .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rF43aNVw3r .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-rF43aNVw3r .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rF43aNVw3r .menu-logo {
  margin-right: auto;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rF43aNVw3r .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rF43aNVw3r button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rF43aNVw3r button.navbar-toggler:focus {
  outline: none;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF43aNVw3r .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rF43aNVw3r .collapsed .btn {
  display: flex;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rF43aNVw3r .collapsed button.navbar-toggler {
  display: block;
}
.cid-rF43aNVw3r .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rF43aNVw3r .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rF43aNVw3r .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .navbar-expand {
    flex-direction: column;
  }
  .cid-rF43aNVw3r img {
    height: 3.8rem !important;
  }
  .cid-rF43aNVw3r .btn {
    display: flex;
  }
  .cid-rF43aNVw3r button.navbar-toggler {
    display: block;
  }
  .cid-rF43aNVw3r .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rF43aNVw3r .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rF43aNVw3r .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing,
  .cid-rF43aNVw3r .navbar-collapse.show {
    display: block !important;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-nav,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-buttons,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rF43aNVw3r .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-rF43aNVw3r .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rF43aNVw3r .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rF43aNVw3r .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-rF43aNVw3r .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rF43aNVw3r .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF43aNVw3r .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF43aNVw3r .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-rF43aP0Oni {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rF43aP0Oni h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-rF43aP0Oni h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rF43aP0Oni p {
  color: #767676;
}
.cid-rF43aP0Oni .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rF43aP0Oni .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rF43aP0Oni .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rF43aP0Oni .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aP0Oni .card-title {
  font-weight: 500;
}
.cid-rF43aP0Oni .card-img {
  text-align: inherit;
}
.cid-rF43aP0Oni .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rF43aP0Oni .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rF43aP0Oni .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rF43aP0Oni .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rF43aP0Oni .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rF43aP0Oni .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rF43aP0Oni .mbr-section-title {
  color: #fac51c;
}
.cid-rF43aPVqSs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aPVqSs .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aPVqSs H1 {
  color: #facb34;
}
.cid-rF43aPVqSs .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aQzvk8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aQzvk8 .mbr-text,
.cid-rF43aQzvk8 blockquote {
  color: #767676;
}
.cid-rF43aR2kC7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aR2kC7 .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aR2kC7 H1 {
  color: #facb34;
}
.cid-rF43aR2kC7 .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aRyHIY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aRyHIY .mbr-text,
.cid-rF43aRyHIY blockquote {
  color: #767676;
}
.cid-rF43aS06ht {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rF43aS06ht .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aS06ht .container-table {
  margin: 0 auto;
}
.cid-rF43aS06ht .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rF43aS06ht .dataTables_wrapper {
  display: block;
}
.cid-rF43aS06ht .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rF43aS06ht .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rF43aS06ht table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rF43aS06ht table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rF43aS06ht table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rF43aS06ht table td {
  border-top: 1px solid #cccccc;
}
.cid-rF43aS06ht table.table {
  background: #ffffff;
}
.cid-rF43aS06ht .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rF43aS06ht .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rF43aS06ht .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rF43aS06ht .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rF43aS06ht .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rF43aS06ht .dataTables_filter {
    text-align: center;
  }
  .cid-rF43aS06ht .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rF43aTcc2F {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-rF43aTcc2F .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rF43aTcc2F .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rF43aTcc2F .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rF43aTcc2F .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rF43aTcc2F .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rF43aTcc2F .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rF43aTcc2F .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rF43aTcc2F .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rF43aTcc2F .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rF43aUw8kN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aUw8kN .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aUw8kN H1 {
  color: #facb34;
}
.cid-rF43aUw8kN .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aVfhk3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rF43aVfhk3 .mbr-section-text {
  color: #767676;
}
.cid-rF43aVfhk3 .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aVfhk3 .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rF43aVfhk3 .mbr-iconfont {
  font-size: 48px;
}
.cid-rF43aVfhk3 .card-img {
  margin-bottom: 1.5rem;
}
.cid-rF43aVfhk3 .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rF43aVfhk3 .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rF43aVfhk3 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rF43aVfhk3 .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-rF43aVfhk3 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-rF43aVfhk3 .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-rF43aVfhk3 .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-rF43aVfhk3 .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-rF43aYhgx7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aYhgx7 .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aYhgx7 H1 {
  color: #facb34;
}
.cid-rF43aYhgx7 .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aZ5eJB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF43aZ5eJB .mbr-text,
.cid-rF43aZ5eJB blockquote {
  color: #767676;
}
.cid-rF43aZKbu9 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rF43aZKbu9 .mbr-section-subtitle {
  color: #767676;
}
.cid-rF43aZKbu9 .container-table {
  margin: 0 auto;
}
.cid-rF43aZKbu9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rF43aZKbu9 .dataTables_wrapper {
  display: block;
}
.cid-rF43aZKbu9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rF43aZKbu9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rF43aZKbu9 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rF43aZKbu9 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rF43aZKbu9 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rF43aZKbu9 table td {
  border-top: 1px solid #cccccc;
}
.cid-rF43aZKbu9 table.table {
  background: #ffffff;
}
.cid-rF43aZKbu9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rF43aZKbu9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rF43aZKbu9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rF43aZKbu9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rF43aZKbu9 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rF43aZKbu9 .dataTables_filter {
    text-align: center;
  }
  .cid-rF43aZKbu9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rF43b107wq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rF43b107wq .content {
    text-align: center;
  }
  .cid-rF43b107wq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rF43b107wq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rF43b107wq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rF43b107wq .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-rF43b107wq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rF43b107wq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rF43b107wq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rF43b107wq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rF43b107wq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rF43b107wq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rF43b107wq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rF43b107wq .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rF43b107wq H5 {
  color: #c1c1c1;
}
.cid-rF9pAILfQu .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-rF9pAILfQu .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-rF9pAILfQu .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-rF9pAILfQu a {
  font-style: normal;
}
.cid-rF9pAILfQu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rF9pAILfQu .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rF9pAILfQu .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-rF9pAILfQu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rF9pAILfQu .menu-logo {
  margin-right: auto;
}
.cid-rF9pAILfQu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rF9pAILfQu .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-rF9pAILfQu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rF9pAILfQu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rF9pAILfQu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rF9pAILfQu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rF9pAILfQu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rF9pAILfQu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rF9pAILfQu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rF9pAILfQu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rF9pAILfQu .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rF9pAILfQu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rF9pAILfQu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rF9pAILfQu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rF9pAILfQu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rF9pAILfQu .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-rF9pAILfQu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rF9pAILfQu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rF9pAILfQu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rF9pAILfQu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rF9pAILfQu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rF9pAILfQu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rF9pAILfQu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rF9pAILfQu button.navbar-toggler:focus {
  outline: none;
}
.cid-rF9pAILfQu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rF9pAILfQu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rF9pAILfQu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rF9pAILfQu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rF9pAILfQu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rF9pAILfQu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF9pAILfQu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rF9pAILfQu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rF9pAILfQu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF9pAILfQu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rF9pAILfQu .collapsed .btn {
  display: flex;
}
.cid-rF9pAILfQu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rF9pAILfQu .collapsed .navbar-collapse.collapsing,
.cid-rF9pAILfQu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rF9pAILfQu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rF9pAILfQu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rF9pAILfQu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rF9pAILfQu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rF9pAILfQu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rF9pAILfQu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rF9pAILfQu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rF9pAILfQu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rF9pAILfQu .collapsed button.navbar-toggler {
  display: block;
}
.cid-rF9pAILfQu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rF9pAILfQu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rF9pAILfQu .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-rF9pAILfQu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rF9pAILfQu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rF9pAILfQu .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-rF9pAILfQu .navbar-expand {
    flex-direction: column;
  }
  .cid-rF9pAILfQu img {
    height: 3.8rem !important;
  }
  .cid-rF9pAILfQu .btn {
    display: flex;
  }
  .cid-rF9pAILfQu button.navbar-toggler {
    display: block;
  }
  .cid-rF9pAILfQu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rF9pAILfQu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rF9pAILfQu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rF9pAILfQu .navbar-collapse.collapsing,
  .cid-rF9pAILfQu .navbar-collapse.show {
    display: block !important;
  }
  .cid-rF9pAILfQu .navbar-collapse.collapsing .navbar-nav,
  .cid-rF9pAILfQu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rF9pAILfQu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rF9pAILfQu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rF9pAILfQu .navbar-collapse.collapsing .navbar-buttons,
  .cid-rF9pAILfQu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rF9pAILfQu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rF9pAILfQu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rF9pAILfQu .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-rF9pAILfQu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rF9pAILfQu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rF9pAILfQu .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-rF9pAILfQu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rF9pAILfQu .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9pAILfQu .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9pAILfQu .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9pAILfQu .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF9pAILfQu .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9pAILfQu .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF9pAILfQu .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF9pAILfQu .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-rF9pAJDmXT {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rF9pAJDmXT h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-rF9pAJDmXT h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rF9pAJDmXT p {
  color: #767676;
}
.cid-rF9pAJDmXT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rF9pAJDmXT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rF9pAJDmXT .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rF9pAJDmXT .mbr-section-subtitle {
  color: #767676;
}
.cid-rF9pAJDmXT .card-title {
  font-weight: 500;
}
.cid-rF9pAJDmXT .card-img {
  text-align: inherit;
}
.cid-rF9pAJDmXT .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rF9pAJDmXT .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rF9pAJDmXT .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rF9pAJDmXT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rF9pAJDmXT .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rF9pAJDmXT .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rF9pAJDmXT .mbr-section-title {
  color: #fac51c;
}
.cid-rF9pAKz7u5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF9pAKz7u5 .mbr-section-subtitle {
  color: #767676;
}
.cid-rF9pAKz7u5 H1 {
  color: #facb34;
}
.cid-rF9pAKz7u5 .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9pAL8VaJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF9pAL8VaJ .mbr-text,
.cid-rF9pAL8VaJ blockquote {
  color: #767676;
}
.cid-rF9pALBkoE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF9pALBkoE .mbr-section-subtitle {
  color: #767676;
}
.cid-rF9pALBkoE H1 {
  color: #facb34;
}
.cid-rF9pALBkoE .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9FH3Opqi {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rF9FH3Opqi .image-block {
  margin: auto;
}
.cid-rF9FH3Opqi figcaption {
  position: relative;
}
.cid-rF9FH3Opqi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rF9FH3Opqi .image-block {
    width: 100% !important;
  }
}
.cid-rF9J3BGLXO {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rF9J3BGLXO .mbr-text,
.cid-rF9J3BGLXO blockquote {
  color: #767676;
}
.cid-rF9J3BGLXO .mbr-text {
  text-align: center;
}
.cid-rFggzCcHoa {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rFggzCcHoa .image-block {
  margin: auto;
}
.cid-rFggzCcHoa figcaption {
  position: relative;
}
.cid-rFggzCcHoa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rFggzCcHoa .image-block {
    width: 100% !important;
  }
}
.cid-rFggzXJrKn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFggzXJrKn .mbr-text,
.cid-rFggzXJrKn blockquote {
  color: #767676;
}
.cid-rFggzXJrKn .mbr-text P {
  text-align: center;
}
.cid-rF9pAOsJ5K {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-rF9pAOsJ5K .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rF9pAOsJ5K .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rF9pAOsJ5K .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rF9pAOsJ5K .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rF9pAOsJ5K .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rF9pAOsJ5K .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rF9pAOsJ5K .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rF9pAOsJ5K .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rF9pAOsJ5K .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rF9pAPrxuv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rF9pAPrxuv .mbr-section-subtitle {
  color: #767676;
}
.cid-rF9pAPrxuv H1 {
  color: #facb34;
}
.cid-rF9pAPrxuv .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF9pAQ7smQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rF9pAQ7smQ .mbr-section-text {
  color: #767676;
}
.cid-rF9pAQ7smQ .mbr-section-subtitle {
  color: #767676;
}
.cid-rF9pAQ7smQ .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rF9pAQ7smQ .mbr-iconfont {
  font-size: 48px;
}
.cid-rF9pAQ7smQ .card-img {
  margin-bottom: 1.5rem;
}
.cid-rF9pAQ7smQ .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rF9pAQ7smQ .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rF9pAQ7smQ .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rF9pAQ7smQ .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-rF9pAQ7smQ .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-rF9pAQ7smQ .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-rF9pAQ7smQ .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-rF9pAQ7smQ .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-rF9pAWw8lB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rF9pAWw8lB .content {
    text-align: center;
  }
  .cid-rF9pAWw8lB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rF9pAWw8lB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rF9pAWw8lB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rF9pAWw8lB .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-rF9pAWw8lB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rF9pAWw8lB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rF9pAWw8lB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rF9pAWw8lB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rF9pAWw8lB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rF9pAWw8lB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rF9pAWw8lB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rF9pAWw8lB .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rF9pAWw8lB H5 {
  color: #c1c1c1;
}
.cid-rFClOiyuEk .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-rFClOiyuEk .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-rFClOiyuEk .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-rFClOiyuEk a {
  font-style: normal;
}
.cid-rFClOiyuEk .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rFClOiyuEk .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rFClOiyuEk .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-rFClOiyuEk .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rFClOiyuEk .menu-logo {
  margin-right: auto;
}
.cid-rFClOiyuEk .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rFClOiyuEk .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-rFClOiyuEk .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rFClOiyuEk .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rFClOiyuEk .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rFClOiyuEk .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rFClOiyuEk .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rFClOiyuEk .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rFClOiyuEk .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rFClOiyuEk .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rFClOiyuEk .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rFClOiyuEk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rFClOiyuEk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rFClOiyuEk .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rFClOiyuEk .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rFClOiyuEk .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-rFClOiyuEk .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rFClOiyuEk .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rFClOiyuEk .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rFClOiyuEk .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rFClOiyuEk .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rFClOiyuEk .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rFClOiyuEk button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rFClOiyuEk button.navbar-toggler:focus {
  outline: none;
}
.cid-rFClOiyuEk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rFClOiyuEk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rFClOiyuEk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rFClOiyuEk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rFClOiyuEk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rFClOiyuEk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rFClOiyuEk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rFClOiyuEk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rFClOiyuEk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rFClOiyuEk .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rFClOiyuEk .collapsed .btn {
  display: flex;
}
.cid-rFClOiyuEk .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rFClOiyuEk .collapsed .navbar-collapse.collapsing,
.cid-rFClOiyuEk .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rFClOiyuEk .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rFClOiyuEk .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rFClOiyuEk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rFClOiyuEk .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rFClOiyuEk .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rFClOiyuEk .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rFClOiyuEk .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rFClOiyuEk .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rFClOiyuEk .collapsed button.navbar-toggler {
  display: block;
}
.cid-rFClOiyuEk .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rFClOiyuEk .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rFClOiyuEk .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-rFClOiyuEk .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rFClOiyuEk .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rFClOiyuEk .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-rFClOiyuEk .navbar-expand {
    flex-direction: column;
  }
  .cid-rFClOiyuEk img {
    height: 3.8rem !important;
  }
  .cid-rFClOiyuEk .btn {
    display: flex;
  }
  .cid-rFClOiyuEk button.navbar-toggler {
    display: block;
  }
  .cid-rFClOiyuEk .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rFClOiyuEk .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rFClOiyuEk .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rFClOiyuEk .navbar-collapse.collapsing,
  .cid-rFClOiyuEk .navbar-collapse.show {
    display: block !important;
  }
  .cid-rFClOiyuEk .navbar-collapse.collapsing .navbar-nav,
  .cid-rFClOiyuEk .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rFClOiyuEk .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rFClOiyuEk .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rFClOiyuEk .navbar-collapse.collapsing .navbar-buttons,
  .cid-rFClOiyuEk .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rFClOiyuEk .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rFClOiyuEk .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rFClOiyuEk .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-rFClOiyuEk .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rFClOiyuEk .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rFClOiyuEk .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-rFClOiyuEk .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rFClOiyuEk .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOiyuEk .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOiyuEk .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOiyuEk .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rFClOiyuEk .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOiyuEk .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rFClOiyuEk .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rFClOiyuEk .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-rFClOjriMb {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rFClOjriMb h2 {
  text-align: center;
  font-size: 7rem;
}
.cid-rFClOjriMb h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rFClOjriMb p {
  color: #767676;
}
.cid-rFClOjriMb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rFClOjriMb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rFClOjriMb .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rFClOjriMb .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOjriMb .card-title {
  font-weight: 500;
}
.cid-rFClOjriMb .card-img {
  text-align: inherit;
}
.cid-rFClOjriMb .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rFClOjriMb .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rFClOjriMb .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rFClOjriMb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rFClOjriMb .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rFClOjriMb .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rFClOjriMb .mbr-section-title {
  color: #fac51c;
}
.cid-rFClOkmRzw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOkmRzw .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOkmRzw H1 {
  color: #facb34;
}
.cid-rFClOkmRzw .dekor_dzial {
  padding: 0, 0, 0, 0;
  margin: 0, 0, 0, 0;
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOkSDYb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOkSDYb .mbr-text,
.cid-rFClOkSDYb blockquote {
  color: #767676;
}
.cid-rFClOlsxFi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOlsxFi .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOlsxFi H1 {
  color: #facb34;
}
.cid-rFClOlsxFi .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOm5xR0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOm5xR0 .mbr-text,
.cid-rFClOm5xR0 blockquote {
  color: #767676;
}
.cid-rFClOm5xR0 .podtytul {
  padding: 0.625rem 2.1874rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 3px;
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  color: #8c8c8c;
  text-align: right;
}
.cid-rFClOm5xR0 .tabela_align {
  text-align: center;
}
.cid-rFClOmz5tS {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rFClOmz5tS .image-block {
  margin: auto;
}
.cid-rFClOmz5tS figcaption {
  position: relative;
}
.cid-rFClOmz5tS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rFClOmz5tS .image-block {
    width: 100% !important;
  }
}
.cid-rFClOnbMFX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rFClOnbMFX .mbr-text,
.cid-rFClOnbMFX blockquote {
  color: #767676;
}
.cid-rFClOnbMFX .mbr-text {
  text-align: center;
}
.cid-rFClOnHCKT {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-rFClOnHCKT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rFClOnHCKT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rFClOnHCKT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rFClOnHCKT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rFClOnHCKT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rFClOnHCKT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rFClOnHCKT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rFClOnHCKT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rFClOnHCKT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rFClOpfOlO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOpfOlO .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOpfOlO H1 {
  color: #facb34;
}
.cid-rFClOpfOlO .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOpVoLh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rFClOpVoLh .mbr-section-text {
  color: #767676;
}
.cid-rFClOpVoLh .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOpVoLh .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rFClOpVoLh .mbr-iconfont {
  font-size: 48px;
}
.cid-rFClOpVoLh .card-img {
  margin-bottom: 1.5rem;
}
.cid-rFClOpVoLh .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rFClOpVoLh .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rFClOpVoLh .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rFClOpVoLh .nav-tabs:hover .nav-link:hover {
  color: white;
}
.cid-rFClOpVoLh .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #fac51c;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #fac51c;
}
.cid-rFClOpVoLh .nav-tabs .nav-link:hover {
  background: #fac51c;
}
.cid-rFClOpVoLh .nav-tabs .nav-link.active {
  color: white;
  font-style: normal;
  border: 2px solid #fac51c;
  background: #fac51c;
}
.cid-rFClOpVoLh .nav-tabs .nav-link.active:hover {
  border: 2px solid #fac51c;
}
.cid-rFClOtjIE3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOtjIE3 .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOtjIE3 H1 {
  color: #facb34;
}
.cid-rFClOtjIE3 .dekor_dzial {
  font-size: 2.4rem;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rFClOtXhG7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFClOtXhG7 .mbr-text,
.cid-rFClOtXhG7 blockquote {
  color: #767676;
}
.cid-rFClOuAtUz {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rFClOuAtUz .mbr-section-subtitle {
  color: #767676;
}
.cid-rFClOuAtUz .container-table {
  margin: 0 auto;
}
.cid-rFClOuAtUz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rFClOuAtUz .dataTables_wrapper {
  display: block;
}
.cid-rFClOuAtUz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rFClOuAtUz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rFClOuAtUz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-rFClOuAtUz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rFClOuAtUz table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rFClOuAtUz table td {
  border-top: 1px solid #cccccc;
}
.cid-rFClOuAtUz table.table {
  background: #ffffff;
}
.cid-rFClOuAtUz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rFClOuAtUz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rFClOuAtUz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rFClOuAtUz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rFClOuAtUz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rFClOuAtUz .dataTables_filter {
    text-align: center;
  }
  .cid-rFClOuAtUz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rFClOvJgl8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rFClOvJgl8 .content {
    text-align: center;
  }
  .cid-rFClOvJgl8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rFClOvJgl8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rFClOvJgl8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rFClOvJgl8 .media-wrap img {
  width: 160px;
  height: 180px;
}
@media (max-width: 767px) {
  .cid-rFClOvJgl8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rFClOvJgl8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rFClOvJgl8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rFClOvJgl8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rFClOvJgl8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rFClOvJgl8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rFClOvJgl8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rFClOvJgl8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rFClOvJgl8 H5 {
  color: #c1c1c1;
}
.cid-rF43aNVw3r .navbar-kontakt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #009191;
  font-size: 16px;
  font-weight: bold;
  color: #cfcfcf;
  min-height: 28px;
}
.cid-rF43aNVw3r .navbar {
  padding: .5rem 0;
  padding-top: 35px;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-rF43aNVw3r .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-rF43aNVw3r a {
  font-style: normal;
}
.cid-rF43aNVw3r .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rF43aNVw3r .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rF43aNVw3r .btn {
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.cid-rF43aNVw3r .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rF43aNVw3r .menu-logo {
  margin-right: auto;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rF43aNVw3r .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rF43aNVw3r .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rF43aNVw3r .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rF43aNVw3r .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rF43aNVw3r .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rF43aNVw3r button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rF43aNVw3r button.navbar-toggler:focus {
  outline: none;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rF43aNVw3r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rF43aNVw3r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rF43aNVw3r .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rF43aNVw3r .collapsed .btn {
  display: flex;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rF43aNVw3r .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rF43aNVw3r .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rF43aNVw3r .collapsed button.navbar-toggler {
  display: block;
}
.cid-rF43aNVw3r .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rF43aNVw3r .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rF43aNVw3r .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rF43aNVw3r .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-rF43aNVw3r .navbar-expand {
    flex-direction: column;
  }
  .cid-rF43aNVw3r img {
    height: 3.8rem !important;
  }
  .cid-rF43aNVw3r .btn {
    display: flex;
  }
  .cid-rF43aNVw3r button.navbar-toggler {
    display: block;
  }
  .cid-rF43aNVw3r .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rF43aNVw3r .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rF43aNVw3r .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing,
  .cid-rF43aNVw3r .navbar-collapse.show {
    display: block !important;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-nav,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-buttons,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rF43aNVw3r .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rF43aNVw3r .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rF43aNVw3r .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-rF43aNVw3r .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rF43aNVw3r .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rF43aNVw3r .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-rF43aNVw3r .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rF43aNVw3r .button_s:link {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_s:visited {
  background-color: #ccb5a4;
  border-color: #ccb5a4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_s:hover {
  background-color: #98887d;
  border-color: #e2c5af;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_c:link {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_c:visited {
  background-color: #00b6e4;
  border-color: #00b6e4;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_c:hover {
  background-color: #009cd5;
  border-color: #68e6f5;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_en:link {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_en:visited {
  background-color: #f07464;
  border-color: #f07464;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_en:hover {
  background-color: #f54b40;
  border-color: #f5a095;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_el:link {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_el:visited {
  background-color: #349e31;
  border-color: #349e31;
  color: dfdfdf;
}
.cid-rF43aNVw3r .button_el:hover {
  background-color: #248124;
  border-color: #1dfd0f;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cid-rF43aNVw3r .button_ex:link {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF43aNVw3r .button_ex:visited {
  background-color: #fdee00;
  border-color: #fdee00;
  color: black;
}
.cid-rF43aNVw3r .button_ex:hover {
  background-color: #f9f38d;
  border-color: #b8ad00;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.cid-rUUmprn9Dr {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rUUmprn9Dr .card-box {
  padding: 0 2rem;
}
.cid-rUUmprn9Dr .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rUUmprn9Dr .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rUUmprn9Dr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rUUmprn9Dr p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rUUmprn9Dr .mbr-text {
  color: #767676;
}
.cid-rUUmprn9Dr .linki_produkty {
  position: relative;
  left: 0px;
  bottom: 0px;
  font-size: 550%;
}
.cid-rUUmprn9Dr .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rUUmprn9Dr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUmprn9Dr .card-title {
  text-align: left;
}
.cid-rUUmSL8A4W {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rUUmSL8A4W h1 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUmSL8A4W h2 {
  font-weight: 100;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUmSL8A4W p {
  color: #767676;
  text-align: left;
}
.cid-rUUmSL8A4W .card-box {
  padding-top: 2rem;
}
.cid-rUUmSL8A4W .card-wrapper {
  height: 100%;
}
.cid-rUUmSL8A4W .linki_produkty {
  position: relative;
  left: 20px;
  bottom: 60px;
  font-size: 550%;
}
.cid-rUUmSL8A4W a.ex1:link,
.cid-rUUmSL8A4W a.ex1:visited {
  font-family: "Baloo";
}
.cid-rUUmSL8A4W a.ex1:hover {
  text-decoration: underline;
}
.cid-rUUmSL8A4W .opis_produkty {
  position: relative;
  bottom: 60px;
}
.cid-rUUmSL8A4W .opis_tytul {
  font-weight: 600;
  padding-bottom: 20px;
}
.cid-rUUmSL8A4W .nolink {
  font-family: "Baloo";
  color: #c1c1c1;
}
.cid-rUUnFVAyqn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rUUnFVAyqn .card-img {
  background-color: #fff;
}
.cid-rUUnFVAyqn .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rUUnFVAyqn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUnFVAyqn p {
  text-align: left;
}
.cid-rUUnFVAyqn .mbr-text {
  color: #767676;
}
.cid-rUUnFVAyqn .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rUUnFVAyqn .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-rUUnFVAyqn .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rUUnFVAyqn .linki_produkty2 {
  position: relative;
  left: 0px;
  bottom: 0px;
  font-size: 550%;
}
.cid-rUUnN3b2NG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rUUnN3b2NG .mbr-section-subtitle,
.cid-rUUnN3b2NG .mbr-text {
  color: #767676;
}
.cid-rUUnN3b2NG .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rUUnN3b2NG .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rUUnN3b2NG .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rUUnN3b2NG .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-rUUnN3b2NG .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-rUUnN3b2NG .card-wrapper .card-img img {
  width: 100%;
}
.cid-rUUnN3b2NG .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-rUUnN3b2NG .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rUUnN3b2NG .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rUUnN3b2NG .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-rUUnN3b2NG .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-rUUnN3b2NG .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-rUUnN3b2NG .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-rUUnN3b2NG .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-rUUGIQQgbQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rUUGIQQgbQ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rUUGIQQgbQ .section-text {
  padding: 5rem 0;
}
.cid-rUUGIQQgbQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rUUGIQQgbQ .inner-container {
    width: 100% !important;
  }
}
.cid-rUUGIQQgbQ .section-text2 {
  padding: 2rem 0;
}
