@charset "UTF-8";
@font-face {
  font-family: "lato";
  src: local("Lato Regular"), local("Lato-Regular"), url("fonts/Lato-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "lato";
  font-style: italic;
  src: local("Lato Italic"), local("Lato-Italic"), url("fonts/Lato-Italic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "lato";
  font-weight: bold;
  src: local("Lato Bold"), local("Lato-Bold"), url("fonts/Lato-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "lato";
  font-weight: bold;
  font-style: italic;
  src: local("Lato BoldItalic"), local("Lato-BoldItalic"), url("fonts/Lato-BoldItalic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "lato";
  font-weight: 900;
  src: local("Lato Heavy"), local("Lato-Heavy"), url("fonts/Lato-Heavy.ttf");
  font-display: swap;
}
@font-face {
  font-family: "lato";
  font-weight: 500;
  src: local("Lato Semibold"), local("Lato-Semibold"), url("fonts/Lato-Semibold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("fonts/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url("fonts/Montserrat-Italic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: bold;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("fonts/Montserrat-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: bold;
  font-style: italic;
  src: local("Montserrat -BoldItalic"), local("Montserrat-BoldItalic"), url("fonts/Montserrat-BoldItalic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 900;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url("fonts/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("fonts/Montserrat-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  src: local("Montserrat Thin"), local("Montserrat-Thin"), url("fonts/Montserrat-Thin.ttf");
  font-display: swap;
}
/*ver->2.0std-02-08-2019*/
/*ver->2.0std-02-08-2019*/
/* ================= FORMULARZE ================ */
label {
  color: lighten #5C6567, 10%;
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
}

span + label {
  margin-top: 0;
}

input, select, textarea, .input-placeholder {
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  height: 50px;
  line-height: 1;
}

.submit-controls {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.submit-controls > div {
  width: auto;
  margin-right: 20px;
}

.submit-controls > div:last-child {
  margin-right: 0;
}

.submit-area {
  display: block;
  text-align: right;
}

.submit-area .button {
  margin: 0;
}

.input-wrapper {
  padding: 0 0 10px 0;
  width: 100%;
  position: relative;
}

.form-fields-wrapper {
  margin-right: -10px;
  width: 100%;
}

.columns .form-fields-wrapper {
  width: auto;
}

/* ================= formularze nowe ================ */
/* ---- placeholdery pól ---- */
input ::-webkit-input-placeholder, textarea ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333;
  opacity: 0.4;
}
input ::-moz-placeholder, textarea ::-moz-placeholder { /* Firefox 19+ */
  color: #333;
  opacity: 0.4;
}
input :-ms-input-placeholder, textarea :-ms-input-placeholder { /* IE 10+ */
  color: #333;
  opacity: 0.4;
}
input :-moz-placeholder, textarea :-moz-placeholder { /* Firefox 18- */
  color: #333;
  opacity: 0.4;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-number {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 150px;
  max-width: 150px;
}

.input-number input {
  width: 50px;
  text-align: center;
}

.input-number > span {
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  transition: all 300ms;
}

.input-number > span.down {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up:after, .input-number > span.down:after {
  line-height: 1;
}

.input-number > span.up:after {
  content: url("graphics/commerce/plus.png");
}

.input-number > span.down:after {
  content: url("graphics/commerce/minus.png");
}

.input-number > span.down:hover, .input-number > span.up:hover {
  background: #eee;
}

.select-placeholder {
  color: #999999;
}

/* ----- select ----- */
.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 50px;
  margin: 0;
  width: 100%;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 0px 40px 0 10px;
  font-weight: normal;
  border: 1px solid #ddd;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 23px;
  right: 10px;
}

.styledSelect:active, .styledSelect.active {
  background-color: #efefef;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid #ddd;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 0 10px;
}

/* -- SELECT HOVER -- */
.options li:hover {
  background-color: #121318;
  color: #fff;
}

/* INNY SELECT */
.select2-container .select2-selection--single {
  height: 50px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  margin-top: -13px;
}

.select2-results ul, .select2-results ul li {
  text-align: left;
  margin: 0;
}

.select2-results ul li {
  padding: 9px 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #111;
  color: #fff;
}

.select2-container {
  width: 100% !important;
}

/* --- input type=radio, input type=checkbox --- */
input[type=checkbox] + label, input[type=radio] + label {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  max-width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-top: 2px;
  border: 1px solid #ddd;
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}

input[type=checkbox]:checked + label::before {
  background-color: #fff;
  background-image: url("graphics/svg/check-1.svg");
  border-color: #000;
}

input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  height: 22px;
  max-width: 22px;
  min-width: 22px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=radio]:checked + label::before {
  content: "✓";
  background: #fff;
}

input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.checklist.rodo label {
  font-size: 0.7rem;
}

.checklist.wrapper {
  display: block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 10px;
}

.checklist.wrapper > label {
  margin-bottom: 10px;
}

.checklist.wrapper > label:last-child {
  margin-bottom: 0;
}

/* === DISABLED === */
input[type=checkbox][disabled] + label {
  opacity: 0.8;
}

input[type=checkbox][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[type=radio][disabled] + label {
  opacity: 0.8;
}

input[type=radio][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[disabled=disabled] {
  background-color: #f0f0f0;
}

/* === swith toggle === */
.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #5C6567;
  border-radius: 20px;
  display: block !important;
}

.onoffswitch-checkbox[disabled=""] + .onoffswitch-label {
  opacity: 0.6;
  pointer-events: none;
}

.onoffswitch-label:before {
  display: none !important;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: roc-grotesk, Montserrat, tahoma, arial, sans-serif;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #04AA6D;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #eee;
  color: #5C6567;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #5C6567;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/* =============== zestawy pól ============== */
.input-combo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.input-combo > div {
  flex: 1;
  margin-right: 10px;
}

.input-combo > div:last-child {
  margin-right: 0;
}

.input-combo > div.post-code {
  flex: 0.5;
}

/* ================ Klasy specjalne ============= */
.question-label {
  display: block;
  margin-top: 20px;
}

span + .question-label {
  margin-top: 0;
}

/* ================ Wyszukiwarka ================== */
.simple-search-wrapper .button.search-button img {
  pointer-events: none;
}

html, body, input, textarea {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5em 0 0.8em 0;
  line-height: 1.1;
  letter-spacing: 0px;
  font-weight: 500;
  text-transform: uppercase;
}

h1 {
  font-size: 3.8rem;
}

h2, .header > h3 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

#START h1 {
  font-size: 5rem;
}

#START h2, #START .header > h3 {
  font-size: 5.2rem;
}

#START h3 {
  font-size: 2.8rem;
}

span.subtitle {
  font-size: 0.45em;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

#START .subtitle {
  color: #fff;
}

a {
  color: #e73741;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: normal;
  padding-left: 75px;
  border: none;
  border-radius: 2px;
}

.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  border: 2px solid #000;
  box-sizing: border-box;
  transition: all 300ms;
  z-index: 0;
}

.button:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  width: 30px;
  border: 0;
  box-sizing: border-box;
  padding: 0;
  background-image: url("graphics/svg/strzalka-black.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 65px;
  overflow: hidden;
  transition: all 300ms;
  z-index: 0;
}

.button input[type=submit] {
  z-index: 1;
}

:hover.button:after, :active.button:after {
  width: 45px;
  background-image: url("graphics/svg/strzalka.svg");
}

:hover.button:before, :active.button:before {
  width: 65px;
  border: 2px solid #e73741;
}

:active.button:before {
  border-color: #121318;
}

.button.alt {
  color: #fff;
  border: 0;
  background: transparent;
}

.button.alt:before {
  border-color: #fff;
}

.button.alt:after {
  background-image: url("graphics/svg/strzalka-white.svg");
}

:hover.button.alt:after {
  width: 45px;
  background-image: url("graphics/svg/strzalka.svg");
}

:hover.button.alt:before {
  width: 65px;
  border-color: #e73741;
}

.button.txt {
  height: 2em;
  padding: 0;
  background: none;
  color: #000000;
  min-width: 0;
  padding-right: 35px;
}

.button.txt:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  left: auto;
  bottom: 0;
  width: 18px;
  background-image: url("graphics/svg/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: right 300ms;
}

.button.txt:hover:after {
  right: 0;
}

.button.txt:before {
  display: none;
}

.button.cta {
  height: 50px;
}

.button.alt.cta {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  color: #fff;
}

.button.file-btn {
  padding-left: 60px;
}

.button.file-btn:before {
  display: none;
}

.button.file-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  background-image: url("graphics/download.png");
  background-color: #121318;
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-origin: content-box;
}

.button.file-btn:hover:after {
  background-color: #e73741;
  height: 50px;
  width: 50px;
}

.button.alt.file-btn:after {
  background-image: url("graphics/svg/file.svg");
  background-color: none;
}

.button.ico-btn {
  padding-right: 75px;
}

.button.ico-btn .ico {
  background: #121318;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.button.ico-left, .button.ico-right, .button.ico-left:hover, .button.ico-right:hover {
  background: transparent;
  border: 1px solid #5C6567;
  color: #5C6567;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left span, .button.ico-right span {
  line-height: 1;
  display: inline-block;
  margin-bottom: -4px;
}

.button.ico-left {
  padding-left: 50px;
  padding-right: 25px;
}

.button.ico-right {
  padding-right: 50px;
  padding-left: 25px;
}

.button.ico-left .ico, .button.ico-right .ico {
  position: absolute;
  top: 0;
  padding: 15px;
  box-sizing: border-box;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.ico-left .ico {
  left: 0;
}

.button.ico-right .ico {
  right: 0;
}

.button.alt.ico-left, .button.alt.ico-right, .button.alt.ico-left:hover, .button.alt.ico-right:hover {
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left:before, .button.ico-right:before,
.button.ico-left:after, .button.ico-right:after {
  display: none;
}

.button.only-ico {
  padding-left: 50px;
  padding-right: 0;
  min-width: 0;
  width: 0;
  overflow: visible;
}

.updated {
  font-size: 0.8rem;
  font-weight: bold;
  color: #e73741;
}

.breadcrumps {
  font-size: 0.9rem;
}

.breadcrumps a, .breadcrumps span {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumps img, .breadcrumps svg {
  margin: 0 4px;
}

.img-placeholder {
  background-color: #e9e9e9;
  background-image: none;
  border-radius: 8px;
}

.PAGE {
  min-height: 0;
}

.container, .container.alt, #TOP .container.full {
  padding: 0 70px;
}

.container.full {
  padding: 0;
}

.social-sharing-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.social-sharing-module > span.sharing-title {
  margin: 0;
  margin-right: 1.8em;
  font-size: 1.1em;
}

#copy_link_sharing {
  position: relative;
}

#copy_link_sharing:after {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #519c46;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms;
  transform: scale(0);
}

#copy_link_sharing.link-copied:after {
  transform: scale(1);
}

.links ul li {
  list-style: none;
  margin-left: 0;
}

.links ul li a {
  text-decoration: none;
  transition: all 300ms;
}

.video-wrapper .mp4-video video {
  display: block;
  max-width: 100%;
}

.cb-table table {
  table-layout: fixed;
  max-width: 1000px;
}

.cb-table table tr td, .cb-table table tr th {
  vertical-align: middle;
}

.cb-table table tr td .button, .cb-table table tr th .button {
  margin: 0;
}

.footer {
  text-align: center;
}

.header {
  padding-bottom: 40px;
}

#START .header {
  max-width: 1620px;
}

.header.with-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.header.with-button .button {
  margin: 0;
  margin-bottom: 10px;
}

.header.with-button h2 {
  margin-bottom: 10px;
  margin-right: 30px;
}

.header .controls {
  margin-top: 50px;
}

.header.columns-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding-bottom: 80px;
}

#START .header.columns-header h2,
.header.columns-header h2 {
  margin-bottom: 0;
}

.header.columns-header .text-wrapper {
  flex: 1;
  max-width: 100%;
  margin-bottom: 10px;
}

.header.columns-header .text-wrapper p {
  max-width: 500px;
}

.header.columns-header .controls {
  margin-bottom: 10px;
  margin-top: 0;
}

.card .image-wrapper .img-placeholder, .card .image .img-placeholder {
  padding-bottom: 100%;
}

.columns.x1 .tile {
  max-width: 900px;
}

.tile .image-wrapper {
  width: 150px;
}

.tile .content {
  padding-top: 15px;
}

.tile .controls {
  left: 150px;
  padding-left: 40px;
  text-align: left;
  bottom: 15px;
}

.tile .image-wrapper .img-placeholder {
  padding-bottom: 100%;
}

.card h3 {
  font-size: 1.3rem;
}

.logo-box {
  margin: 15px 0;
}

.logo-box .thb {
  filter: grayscale(100%);
  transition: filter 600ms;
}

.logo-box:hover .thb {
  filter: grayscale(0);
}

.logobox-wrapper .slick-dots {
  display: none !important;
}

.icon-card {
  text-align: left;
}

.icon-card .icon {
  margin: 0;
}

.icon-card-lux-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 90px;
}

.icon-card-lux-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
}

.icon-card-lux-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.icon-card-lux-section .container {
  position: relative;
  z-index: 1;
}

.icon-card-lux-section .icon-card .content {
  color: #fff;
}

.icon-card-lux-section .icon-card h3 {
  color: #e73741;
}

.icon-card-lux-section .icon-card .icon-wrapper {
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(90deg, #e73741, #121318);
  width: 120px;
  height: 120px;
  margin: 0 auto 1em auto;
}

.icon-card-lux-section .icon-card .icon-wrapper .icon {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.icon-card-lux-section .icon-card .icon-wrapper .icon img {
  width: 50%;
  height: 50%;
}

.photo-box-wrapper .content h3 {
  margin-top: 0;
}

.photo-link-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.photo-link-box > div.content {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.photo-link-box > div.photo-box {
  width: 100%;
}

.photo-link-box > div.photo-box .controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  text-align: left;
}

.photo-link-box > div.photo-box .controls .button {
  margin: 0;
}

.photo-box .content.with-button {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.photo-box .content.with-button h3,
.photo-box .content.with-button h4 {
  flex: 1;
  margin: 0;
}

.photo-box {
  overflow: hidden;
}

.photo-box .image {
  transform: scale(1);
  transition: all 2s;
}

.photo-box a:hover .image {
  transform: scale(1.05);
}

.photo-box {
  padding-bottom: 90%;
}

.columns[data-grid=photo-box] {
  margin: 0;
}

.columns[data-grid=photo-box] > div {
  padding: 0;
}

.separate-subtitle span.subtitle {
  position: absolute;
  left: 40px;
  top: 14px;
}

.quote-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 180px 0;
}

.quote-section .container {
  position: relative;
  z-index: 1;
}

.quote-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.quote-section h2, .quote-section blockquote, .quote-section p, .quote-section span, .quote-section a {
  color: #fff;
}

.quote-section h2 {
  text-align: center;
}

.quote-section .header {
  padding-bottom: 0;
}

.quote-section blockquote, .quote-section span.signature {
  text-align: center;
  display: block;
}

blockquote span.signature {
  text-transform: uppercase;
}

.quote-section .slick-next, .quote-section .slick-prev {
  display: none !important;
}

.simple-logobox-wrapper {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.simple-logobox-wrapper .simple-logobox {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  max-width: 130px;
}

nav.desktop .nav-button > a {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

nav.desktop .nav-button > a span {
  position: relative;
}

nav.desktop .nav-button > a span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: #121318;
  transition: all 300ms;
}

nav.desktop .nav-button > a:hover span:after,
nav.desktop .nav-button.urhere > a span:after {
  height: 2px;
}

nav.desktop > ul {
  height: 100%;
}

nav.desktop .submenu {
  background: #121318;
  border: 0;
}

nav.desktop .submenu ul li a {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 15px 20px;
  transition: all 300ms;
  position: relative;
}

nav.desktop .submenu ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: #e73741;
  transition: all 300ms;
}

nav.desktop .submenu ul li a:hover {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  padding-left: 25px;
}

nav.desktop .submenu ul li a:hover:after {
  width: 5px;
}

.header-modules {
  float: right;
  height: 100%;
}

#TOP {
  border: 0;
  background: #121318;
}

#TOP-MAIN .header-modules {
  padding-left: 20px;
  margin-left: 20px;
  position: relative;
}

#TOP-MAIN .header-modules:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  height: 14px;
  width: 1px;
  background: #ddd;
}

.flags {
  margin-right: 10px;
}

#logo {
  width: 200px;
  height: 90px;
  left: 0;
}

.sticked #logo {
  height: 100%;
}

.header-modules .button {
  margin: 0;
  min-width: 220px;
}

.header-modules .phone-wrapper {
  margin-left: 30px;
}

.phone-wrapper .button .ico {
  padding: 10px;
}

#TOP .social-icon svg path,
#TOP .social-icon svg circle {
  fill: rgba(255, 255, 255, 0.7);
}

.header-modules.flags {
  display: none;
}

.opSlider-indicators {
  right: auto;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  box-sizing: border-box;
  max-width: 1620px;
  margin: 0;
  bottom: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 0 70px;
  margin: 0 -10px;
}

.opSlider-indicators li {
  opacity: 1;
  height: 2px;
  width: 50px;
  margin-right: 7px;
  margin-left: 7px;
}

.opSlider-indicators .active {
  background-color: #e73741;
  height: 4px;
}

.opSlider-control-prev, .opSlider-control-next {
  display: none;
}

.banner-content {
  padding-bottom: 30vh;
}

.banner-content h1, .banner-content h2 {
  margin-bottom: 0.8em;
}

.banner-content h1,
.banner-content h2,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: left;
}

.banner-content .text-wrapper {
  max-width: 600px;
}

.banner-content .text-wrapper p:last-child {
  margin-bottom: 0;
}

#START .banner-content h1,
#START .banner-content h2,
.banner-content h1,
.banner-content h2 {
  font-size: 6rem;
}

#START .banner-content h1 .subtitle,
#START .banner-content h2 .subtitle,
.banner-content h1 .subtitle,
.banner-content h2 .subtitle {
  font-size: 0.4em;
}

.banner-content .controls {
  margin-top: 50px;
}

.article-section.padding-top h2:first-child {
  margin-top: 0;
}

#BOTTOM {
  padding: 100px 0;
}

#BOTTOM .foot-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

#BOTTOM .foot-area > div {
  flex: 1;
}

#BOTTOM .foot-area > div.col-1 {
  flex: 1.5;
}

#BOTTOM, #SYSTEM-FOOT {
  background: #141414;
}

#BOTTOM h3:first-child {
  margin-top: 0;
}

#BOTTOM, #BOTTOM h3, #BOTTOM p, #BOTTOM span, #BOTTOM a, #BOTTOM strong {
  color: #848484;
}

#BOTTOM .social-links {
  margin-top: 1em;
}

#BOTTOM .social-icon {
  width: 22px;
  height: 22px;
  margin-right: 20px;
}

#BOTTOM .social-icon svg path {
  fill: #fff;
}

#BOTTOM .links ul li {
  padding-bottom: 5px;
}

#BOTTOM .links ul li a:hover {
  color: white;
}

#SYSTEM-FOOT {
  border-top: 1px solid #474747;
}

#SYSTEM-FOOT .container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#START h2 {
  text-align: left;
  margin-bottom: 0.3em;
}

#START .subtitle {
  font-weight: normal;
}

.photo-bg-section {
  background-color: #111319;
  background-image: url("graphics/kompaktowe-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.photo-bg-section.type2 {
  background-image: none;
  background-color: #fff;
}

#START .photo-bg-section .header h2,
.photo-bg-section .header h2,
#START .photo-bg-section span.subtitle,
.photo-bg-section span.subtitle {
  color: #fff;
}

#START .photo-bg-section.type2 .header h2,
.photo-bg-section.type2 .header h2,
#START .photo-bg-section.type2 span.subtitle,
.photo-bg-section.type2 span.subtitle {
  color: #000000;
}

.photo-bg-section .text-wrapper {
  color: rgba(255, 255, 255, 0.6);
}

.photo-bg-section.type2 .text-wrapper {
  color: #5C6567;
}

.flex-col.flex-col-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.photo-bg-section .flex-col-content {
  padding-right: 180px;
  padding-left: 40px;
}

.photo-bg-section .flex-col .slick-slider {
  margin-right: -500px;
}

.photo-bg-section.type2 .flex-col .slick-slider {
  margin-right: 0;
}

.photo-bg-section.type2 .flex-col-content {
  padding-left: 180px;
  padding-right: 40px;
}

.photo-bg-section.type2 .photo-box {
  padding-bottom: 80%;
}

.map-container {
  position: relative;
}

.map-container .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.map-container .contact_label {
  position: absolute;
}

.map-container .contact_label.label1 {
  top: 15px;
  left: 145px;
}

.map-container .contact_label.label2 {
  top: 260px;
  left: 145px;
}

.map-container .contact_label.label3 {
  top: 110px;
  right: 145px;
}

.map-container .contact_label.label4 {
  top: 365px;
  right: 145px;
}

.contact_data_map {
  font-size: 19px;
  width: 400px;
}

.map-container .contact_label.right .contact_data_map {
  text-align: right;
}

.map-container .contact_label.right .phone-wrapper {
  justify-content: flex-end;
}

.map-container a {
  color: #5C6567;
}

#contact_section h2, #partners h2, #page-contactus .map h2,
#contact_section .header > h3, #partners .header > h3, #page-contactus .map h3 {
  text-align: center;
}

.contact_data_map h3 {
  position: relative;
  font-size: 3rem;
  margin: 0 0 40px;
}

.contact_data_map h3:after {
  content: "";
  position: absolute;
  background: #333333;
  left: 0;
  bottom: -20px;
  height: 2px;
  width: 100%;
}

.photo-bg-section .slick-slide .photo-box .image {
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  transition: all 300ms;
}

.photo-bg-section .slick-slide.slick-current.slick-active .photo-box .image {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.article-section.alt-bg-color {
  background-color: #121318;
}

#START .article-section.alt-bg-color h2,
.article-section.alt-bg-color h2,
#START .article-section.alt-bg-color h3,
.article-section.alt-bg-color h3 {
  color: #fff;
}

.article-section.alt-bg-color a.art-link {
  color: #fff;
}

.article-section.alt-bg-color .art-link:before {
  background-color: #fff;
}

span.h2 {
  font-size: 6rem;
  text-align: left;
  margin-bottom: 0.3em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-top: 90px;
  text-transform: uppercase;
}

.knowledge-listing-mod {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 80px;
       column-gap: 80px;
  width: 100%;
}

.knowledge-listing-mod .header {
  width: 40%;
}

.knowledge-listing-mod .header h3 {
  margin-top: 0;
}

.knowledge-listing-mod .knowledge-mod-content {
  flex: 1;
}

.art-link {
  width: 100%;
  max-width: 500px;
  display: block;
  position: relative;
  padding: 10px 0;
}

.art-link:after, .art-link:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  transition: all 500ms;
}

.art-link span.arrow {
  position: absolute;
  top: 100%;
  right: 100%;
  opacity: 0;
  height: 16px;
  margin-top: -7px;
  width: 8px;
  display: block;
  background-image: url("graphics/svg/arrow-2p.svg");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 500ms;
}

.art-link:after {
  right: 100%;
  background: #e73741;
}

a.art-link {
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
}

a.art-link:hover:after {
  right: 0;
}

a.art-link:hover span.arrow {
  opacity: 1;
  right: -2px;
}

.hpl-product-card,
.hpl-category-card,
.hpl-decor-card {
  display: block;
  text-decoration: none !important;
}

.hpl-product-card .image-wrapper,
.hpl-category-card .image-wrapper,
.hpl-decor-card .image-wrapper {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  border: 1px solid #ddd;
  overflow: hidden;
}

.hpl-category-card .image-wrapper,
.hpl-decor-card .image-wrapper {
  border: 0;
}

.hpl-product-card .image-wrapper .ribbon {
  position: absolute;
  top: 4px;
  left: 4px;
  margin: 0;
  font-size: 0.8rem;
}

.hpl-product-card .image-wrapper .img-placeholder {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  padding: 0 !important;
}

.hpl-product-card .image-wrapper .image,
.hpl-category-card .image-wrapper .image,
.hpl-decor-card .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hpl-decor-card .image-wrapper {
  border: 1px solid #ddd;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: all 500ms;
}

.hpl-product-card .image-wrapper .hover-mask,
.hpl-category-card .image-wrapper .hover-mask,
.hpl-decor-card .image-wrapper .hover-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hpl-product-card h3,
.hpl-decor-card h3 {
  font-size: 1.2rem;
}

.hpl-decor-card h3 span.subtitle {
  font-size: 0.7em;
}

a.hpl-product-card .image,
a.hpl-category-card .image {
  transform: scale(1);
  transition: transform 2s;
}

a.hpl-decor-card:hover .image-wrapper {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

a.hpl-product-card:hover .image,
a.hpl-category-card:hover .image {
  transform: scale(1.05);
}

#page-catalog_product .product-lead-content {
  border-bottom: 1px solid #ddd;
}

#page-hpl_product_listing #TOP-PLACEHOLDER,
#page-hpl_product #TOP-PLACEHOLDER,
#page-realization #TOP-PLACEHOLDER {
  display: none;
}

.PAGE-BANNER-WRAPPER {
  height: 0;
  padding-bottom: 790px;
  position: relative;
  margin-bottom: 70px;
  overflow: hidden;
}

#page-hpl_product_listing .PAGE-BANNER-WRAPPER {
  padding-bottom: 100vh;
}

.PAGE-BANNER {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #121318;
}

.PAGE-BANNER .page-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.PAGE-BANNER .dark-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 19, 24, 0.5);
}

.PAGE-BANNER .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.PAGE-BANNER .video-wrapper > div {
  width: 100%;
  height: 100%;
  padding: 0 !important;
}

.PAGE-BANNER .video-wrapper .video iframe,
.PAGE-BANNER .video-wrapper .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding-top: 140px;
  padding-bottom: 50px;
  transform: translate(0, -50%);
}

.page-banner-content h1,
.page-banner-content h1 .subtitle {
  color: #fff;
  margin-top: 0;
}

.page-banner-content .breadcrumps a,
.page-banner-content .breadcrumps span {
  color: #ddd;
}

.page-banner-content .text-wrapper {
  color: rgba(255, 255, 255, 0.8);
}

.main-product-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 80px;
       column-gap: 80px;
}

.main-product-lead > div {
  flex: 1;
  width: 50%;
}

.main-product-lead > .image-wrapper {
  flex: 0.2;
}

.ribbon {
  display: inline-flex;
  padding: 5px 10px;
  background-color: #ee343f;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.page-banner-content .controls {
  padding-top: 50px;
}

.main-image-wrapper {
  height: 500px;
  overflow: hidden;
  padding-bottom: 30px;
  max-width: 500px;
}

.main-image-wrapper .slick-slide {
  padding: 0 !important;
}

.main-image-wrapper .slick-list {
  margin-left: 0px;
  margin-right: 0px;
}

.article-columns.side .side {
  border-left: 1px solid #ddd;
}

.related_realization .photo-box {
  padding-bottom: 67%;
}

.icon-tile .content {
  margin-bottom: 0;
}

.icon-tile .content h3 {
  font-size: 1rem;
}

.icon-card h2, .icon-card h3 {
  font-size: 1rem;
}

#START .icon-card h4 {
  font-size: 2.8rem;
  margin-top: 0;
}

.hash-nav-list-wrapper .hash-nav-item {
  padding: 12px 10px 12px 35px;
  transition: all 100ms;
  color: #5C6567;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  line-height: 1.4;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: normal;
}

.hash-nav-list-wrapper li:hover a.hash-nav-item,
.hash-nav-list-wrapper li.urhere a.hash-nav-item {
  color: #000000;
  text-decoration: none;
  font-weight: normal;
}

.hash-nav-list-wrapper ul li .hash-nav-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  bottom: 0;
  width: 1px;
  background-color: transparent;
  transition: all 100ms;
}

.hash-nav-list-wrapper li:hover a.hash-nav-item:after,
.hash-nav-list-wrapper li.urhere a.hash-nav-item:after {
  width: 4px;
  background: #e73741;
  left: 0px;
}

.full-tree li {
  margin: 0;
}

.full-tree li a, .full-tree li a.main {
  padding: 12px 10px 12px 35px;
  transition: all 100ms;
  color: #5C6567;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  line-height: 1.4;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: normal;
  border: 0;
  background: none;
}

.full-tree li a:hover,
.full-tree li a.urhere {
  color: #000000;
  text-decoration: none;
  font-weight: normal;
  background: none;
  border: 0;
  padding: 12px 10px 12px 35px;
}

.full-tree li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  bottom: 0;
  width: 1px;
  background-color: transparent;
  transition: all 100ms;
}

.full-tree li a.urhere:after,
.full-tree li a:hover:after {
  width: 4px;
  background: #e73741;
  left: 0px;
}

.full-tree li > ul {
  padding-left: 0;
}

.full-tree li > ul li a,
.full-tree li > ul li a:hover,
.full-tree li > ul li a.urhere {
  padding-left: 45px;
}

.image-card .image-wrapper {
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  position: relative;
}

.image-card .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.image-card .image-wrapper .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-card .image-content {
  padding-top: 15px;
}

.image-card .image-content h3 {
  margin-top: 0;
}

.image-card .image-content p {
  line-height: 1.4;
  font-size: 0.9rem;
}

.realization-section {
  background-color: #121318;
}

#page-realization .PAGE-BANNER-WRAPPER {
  padding-bottom: 100vh;
  overflow: hidden;
}

#page-realization .PAGE-BANNER-WRAPPER .main-product-lead > div {
  width: 60%;
}

#page-realization .PAGE-BANNER-WRAPPER .main-product-lead {
  height: 100vh;
}

#page-realization .PAGE-BANNER-WRAPPER .main-image-wrapper {
  height: auto;
  max-width: 75vh;
  box-sizing: border-box;
}

#page-realization .PAGE-BANNER .page-banner-image,
#page-hpl_product .PAGE-BANNER .page-banner-image {
  filter: blur(8px);
}

#page-realization .slick-dotted.slick-slider {
  height: 100%;
}

#page-realization .PAGE-BANNER .dark-mask,
#page-hpl_product .PAGE-BANNER .dark-mask {
  background-color: rgba(18, 19, 24, 0.9);
}

#page-realizations #CANVAS {
  background-color: #121318;
}

#page-realizations #CANVAS .article-footer-controls .ico {
  filter: invert(80%);
}

#page-realizations #CANVAS .article-footer-controls .button {
  color: rgba(255, 255, 255, 0.8);
}

#page-realizations h1 {
  color: #fff;
}

.realization-item h3, .realization-item h4 {
  font-size: 1.6rem;
  color: #fff;
}

#START .realization-item h3,
#START .realization-item h4 {
  font-size: 2.4rem;
}

#START .realization-item span.subtitle,
.realization-item span.subtitle {
  font-size: 1.2rem;
  color: #fff;
}

#START .realization-item h3 .subtitle,
.realization-item h3 .subtitle,
#START .realization-item h4 .subtitle,
.realization-item h4 .subtitle {
  color: #fff;
}

.realization-item .content {
  padding: 20px;
}

.realization-item .content .button.only-ico {
  margin-bottom: 0;
}

#START .realization-item .content {
  padding: 40px;
}

#page-realizations .realization-item .img-placeholder {
  padding-bottom: 90% !important;
}

.realization-item a {
  overflow: hidden;
}

.realization-item a .image {
  transform: scale(1);
  transition: all 2s;
}

.realization-item a:hover .image {
  transform: scale(1.05);
}

a.tile.hpl-product-tile {
  display: block;
  color: #5C6567;
  text-decoration: none;
}

.tile.hpl-product-tile .image-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  border: 1px solid #ddd;
}

.tile.hpl-product-tile .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.filters-wrapper {
  border: 0px solid #ddd;
  padding: 30px 0 15px 0;
  margin-bottom: 60px;
  position: relative;
}

.filters-wrapper > h3 {
  margin: 0;
  padding: 5px 10px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 20px;
  transform: translate(0, -50%);
}

.filters-wrapper h5 {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.filters-wrapper h5:first-child {
  margin-top: 0;
}

.filters-area {
  overflow: hidden;
}

.filters-area .columns > div {
  padding-bottom: 5px;
}

.filters-wrapper .controls {
  padding-top: 30px;
  text-align: right;
}

.filters-wrapper .controls .button {
  margin-bottom: 0;
}

.filters-wrapper input[type=checkbox] + label::before {
  margin-top: -1px;
}

#filter-btn.urhere {
  border-color: #e73741;
}

.filters-area {
  height: 0;
  transition: all 500ms;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

.filters-area .filters-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  padding: 30px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.main-filters-area .filters-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.main-filters-area .filters-container > .button {
  margin-bottom: 10px;
}

.main-filters-area .filters-container > .input-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
}

.main-filters-area .filters-container .input-wrapper input {
  display: block;
}

.main-filters-area .filters-container > span {
  margin-right: 15px;
  display: block;
}

.main-filters-area .filters-container .input-combo > .button {
  margin-right: 0;
}

.filters-count {
  margin: 0;
  margin-top: 0;
  margin-left: 3px;
  min-width: 20px;
  height: 20px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  background-color: #e73741;
  color: #fff;
  border-radius: 50%;
  line-height: 1;
}

.filters-count > span {
  margin-bottom: -2px !important;
}

.product-lead-wrapper .product-lead-content .product-image-wrapper {
  border: 0;
  width: 540px;
  padding-bottom: 400px;
}

#page-catalog_decor .product-lead-wrapper .product-lead-content .product-image-wrapper {
  width: 540px;
  padding-bottom: 540px;
}

.product-lead-wrapper .product-lead-content {
  min-height: 400px;
  padding-right: 650px;
}

#page-catalog_decor .product-lead-wrapper .product-lead-content {
  padding-right: 600px;
  min-height: 540px;
}

#page-catalog_decor table tr td,
#page-catalog_decor table tr th {
  text-align: left;
  border: 0;
  border-bottom: 1px solid #ddd;
  padding: 10px 2px;
  vertical-align: middle;
  color: #000000;
}

#page-catalog_decor table tr td:first-child {
  color: #707070;
}

#page-catalog_decor table {
  border: 0;
  border-top: 1px solid #ddd;
}

.tile.group .image-wrapper,
.tile.product .image-wrapper,
.tile.manufacturer .image-wrapper,
.tile.strukture .image-wrapper {
  width: 100px;
  min-width: 100px;
}

.tile.group .content,
.tile.product .content,
.tile.manufacturer .content,
.tile.strukture .content {
  padding-left: 20px;
}

.tile.group,
.tile.product,
.tile.manufacturer,
.tile.strukture {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  min-height: 142px;
  box-sizing: border-box;
}

a.tile.group,
a.tile.product,
a.tile.manufacturer,
a.tile.strukture {
  text-decoration: none;
  color: #5C6567;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}

.tile.group h3,
.tile.product h3,
.tile.manufacturer h3,
.tile.strukture h3 {
  margin-bottom: 0;
}

.tile.group p,
.tile.product p,
.tile.manufacturer p,
.tile.strukture p {
  margin-top: 8px;
}

.page-stat-summary {
  padding-top: 60px;
}

.counter-stat-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.counter-stat-wrapper .count {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 8px 5px 5px 5px;
  border-radius: 50%;
  color: #000000;
  font-size: 1.4rem;
  border: 2px solid #ddd;
  line-height: 1;
}

.counter-stat-wrapper .count-name {
  padding-left: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.seo-text .tile .image-wrapper {
  display: none;
}

.seo-text .tile .content {
  padding-left: 0;
}

#START h1 {
  margin-bottom: 0.3em;
}

.main-seo .header {
  padding-bottom: 0;
}

.main-seo .content {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 21px;
       column-gap: 21px;
}

#START .page-section.main-seo {
  padding: 120px 70px;
}

#page-contactus .columns .contact_data h3:first-child,
#page-contactus .columns .form-wrapper h2:first-child {
  margin-top: 0;
}

#page-contactus .columns .form-wrapper h2 {
  font-size: 1.6em;
}

.company_name, .add_company_name, .address, .phone, .email, .hours, .add_descr, .fax {
  display: block;
}

.company_name, .add_company_name, .address, .phones-wrapper, .emails-wrapper, .hours, .add_descr, .fax {
  margin-bottom: 1em;
}

.contact-section-icon {
  overflow: hidden;
}

.contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-icon .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin: 0;
  margin-right: 20px;
  margin-top: -8px;
}

.contact-icon a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-icon .button {
  margin: 0;
}

.contact-icon strong {
  display: block;
  margin-bottom: 5px;
  color: #000000;
  font-family: roc-grotesk, Montserrat, tahoma, arial, sans-serif;
}

.contact-icon .hours {
  margin-top: 0;
}

.contact_data_footer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.contact_data_footer .phones-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact_data_footer .phones-wrapper .phone-wrapper {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
  color: #848484;
}

.contact_data_footer .phones-wrapper .phone-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 12px;
  margin-top: -6px;
  width: 1px;
  background: #848484;
}

.contact_data_footer .phones-wrapper .phone-wrapper:last-child:after {
  display: none;
}

.contact_data_footer h4:first-child, #BOTTOM h4:first-child, #BOTTOM span.h4 {
  margin-top: 0;
  color: #fff;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact_data_footer .company_name,
.contact_data_footer .add_company_name,
.contact_data_footer .address,
.contact_data_footer .phones-wrapper,
.contact_data_footer .emails-wrapper,
.contact_data_footer .hours,
.contact_data_footer .add_descr,
.contact_data_footer .fax {
  margin-bottom: 0;
}

.contact_data_icon .address .ico, .contact_data_icon .phones-wrapper .ico, .contact_data_icon .emails-wrapper .ico, .contact_data_icon .hours .ico {
  display: block;
  top: 5px;
}

.contact_data_icon .address .ico img,
.contact_data_icon .phones-wrapper .ico img,
.contact_data_icon .emails-wrapper .ico img,
.contact_data_icon .hours .ico img {
  margin: 0;
  display: block;
}

.email-wrapper .email, .phone-wrapper .phone {
  display: none;
}

.email-wrapper.show-email .email, .phone-wrapper.show-phone .phone {
  display: flex;
}

.email-wrapper.show-email .button.show-btn, .phone-wrapper.show-phone .button.show-btn {
  display: none;
}

.email-wrapper.show-email, .phone-wrapper.show-phone {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.phone-number > a:hover {
  text-decoration: none;
}

.map iframe {
  width: 100% !important;
}

.contact-simple-layout {
  overflow: hidden;
}

.contact-simple-layout > div {
  float: left;
}

.contact-simple-layout > div h2:first-child, .contact-layout > div h3:first-child {
  margin-top: 0;
}

.contact-simple-layout > div.contact-content {
  width: 35%;
}

.contact-simple-layout > div.contact-form {
  width: 65%;
}

.form-fields-wrapper {
  overflow: visible;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.form-fields-wrapper > .col1,
.form-fields-wrapper > .col2 {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

.form-fields-wrapper > .col1 {
  padding-right: 5px;
}

.form-fields-wrapper > .col2 {
  padding-left: 5px;
}

.form-fields-wrapper .input-wrapper.field-rodo {
  clear: both;
}

.form-fields-wrapper > .col2 .input-wrapper {
  height: calc(100% - 10px);
}

.form-fields-wrapper > .col2 textarea {
  min-height: 120px;
  height: 100%;
}

.form-fields-wrapper .input-wrapper input, .form-fields-wrapper .input-wrapper textarea {
  display: block;
}

.contact-data-form-section {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid #121318;
}

.contact-data-form-section > div {
  box-sizing: border-box;
  padding: 50px;
}

.contact-data-form-section > div.contact-col {
  background: #121318;
  position: relative;
  width: 52%;
}

.contact-data-form-section > div.contact-col:after {
  content: "";
  position: absolute;
  top: 60px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #121318;
  transform: rotate(45deg);
}

#START .contact-data-form-section > div.contact-col,
#START .contact-data-form-section > div.contact-col h2,
#START .contact-data-form-section > div.contact-col h2 .subtitle,
.contact-data-form-section > div.contact-col,
.contact-data-form-section > div.contact-col h2,
.contact-data-form-section > div.contact-col h2 .subtitle {
  color: #fff;
}

.contact-data-form-section > div.add-module-col {
  width: 60%;
}

.contact-data-form-section h2, #START .contact-data-form-section h2,
.contact-data-form-section h3, #START .contact-data-form-section h3 {
  margin-top: 0;
  text-align: left;
  font-size: 2.8rem;
}

.contact-data-form-section .contact_data .button {
  min-width: 180px;
}

.contact-data-product-section {
  border: 1px solid #ddd;
  padding: 50px;
}

.contact-data-product-section > div {
  float: left;
  box-sizing: border-box;
  padding-right: 80px;
}

.contact-data-product-section > div.contact-col {
  position: relative;
  width: 35%;
}

.contact-data-product-section > div.add-module-col {
  width: 65%;
  padding-right: 0;
}

.contact-data-product-section h2, #START .contact-data-product-section h2,
.contact-data-product-section h3, #START .contact-data-product-section h3 {
  margin-top: 0;
  text-align: left;
  font-size: 2.6rem;
}

.contact-data-product-section .contact_data {
  padding-top: 40px;
}

.contact-data-product-section .button-style .button,
.contact-data-product-section .email-wrapper .button {
  min-width: 180px;
}

.contact-data-section .contact-box {
  padding: 50px 50px 20px 50px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  position: relative;
}

.contact-data-section .contact-box.small {
  padding-right: 50%;
}

.contact-data-section .contact-box.small .image-wrapper {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: -15px;
  width: 40%;
}

.contact-data-section .contact-box.small .image-wrapper .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-data-section .form-fields-wrapper textarea {
  min-height: 179px;
}

.contact-data-section h2, #START .contact-data-section h2,
.contact-data-section h3, #START .contact-data-section h3 {
  margin-top: 0;
  text-align: left;
  font-size: 2.6rem;
}

.contact-data-section .phone-wrapper .button,
.contact-data-section .email-wrapper .button,
.contact-data-product-section .phone-wrapper .button,
.contact-data-product-section .email-wrapper .button,
.contact-data-form-section .phone-wrapper .button,
.contact-data-form-section .email-wrapper .button {
  min-width: 180px;
}

.contact-data-product-section .contact-icon, .contact-data-form-section .contact-icon {
  align-items: center;
  color: #fff;
}

.contact-data-product-section .contact-icon *,
.contact-data-form-section .contact-icon * {
  color: #fff;
  fill: #e73741;
}

.contact-data-form-section .contact_data {
  padding-top: 30px;
}

#BOTTOM .contact_data_icon .phones-wrapper,
#BOTTOM .contact_data_icon .emails-wrapper {
  margin-bottom: 0;
}

.contact_data_icon .phones-wrapper a,
.contact_data_icon .emails-wrapper a {
  color: #5C6567;
}

.bg-color {
  background: linear-gradient(90deg, #e73741, #121318);
}

.bg-color h1, .bg-color h2, .bg-color h3,
.bg-color .subtitle, #START .bg-color .subtitle,
.bg-color p, .bg-color a, .bg-color span {
  color: #fff;
}

.bg-color .green-alert, .bg-color .red-alert, .bg-color .yellow-alert {
  color: inherit;
}

.photo-link-box.check-onscreen,
.check-onscreen .banner-header,
.card.check-onscreen,
.image-card.check-onscreen {
  position: relative;
}

.photo-link-box.check-onscreen.offscreen-bottom,
.card.check-onscreen.offscreen-bottom,
.image-card.check-onscreen.offscreen-bottom {
  top: 100px;
  opacity: 0;
  transition: all 400ms;
}

.photo-link-box.check-onscreen.onscreen,
.card.check-onscreen.onscreen,
.image-card.check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: all 600ms;
}

.check-onscreen .banner-header,
.check-onscreen .header h2 {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: all 1s;
}

.check-onscreen.onscreen .banner-header,
.check-onscreen.onscreen .header h2 {
  left: 0;
  opacity: 1;
}

.type2 .check-onscreen .header h2 {
  left: auto;
  right: -100px;
}

.type2 .check-onscreen.onscreen .header h2 {
  right: 0;
}

.check-onscreen .controls {
  opacity: 0;
  transition: all 1s;
}

.check-onscreen.onscreen .controls {
  opacity: 1;
}

.blur-up {
  filter: blur(5px);
  transition: filter 400ms;
}

.blur-up.lazyloaded {
  filter: blur(0);
}

.slick-prev, .slick-next {
  display: none !important;
}

.slick-dots {
  text-align: left !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.slick-dots li, .photo-bg-section.type2 .slick-dots li {
  height: 2px !important;
  background: #333 !important;
  width: 40px !important;
}

.photo-bg-section .slick-dots li {
  background: #fff !important;
}

.slick-dots li {
  position: relative !important;
}

.slick-dots li button {
  width: 100% !important;
  height: 100% !important;
  background: none !important;
  padding: 0 !important;
}

.slick-dots li button:before {
  width: 100% !important;
  height: 20px !important;
  top: -9px !important;
}

.slick-dots li.slick-active, .photo-bg-section.type2 .slick-dots li.slick-active {
  background-color: #e73741 !important;
}

.b24-form-wrapper {
  max-width: 100% !important;
}

.b24-form-wrapper * {
  font-family: roc-grotesk, lato, tahoma, arial, sans-serif !important;
}

.b24-form-padding-side {
  margin-left: -31px;
  margin-right: -31px;
}

.b24-form-btn-block {
  max-width: 200px;
  padding-top: 30px !important;
}

.b24-form-btn {
  background-color: #e73741 !important;
}

.b24-form-btn-container {
  justify-content: flex-end;
}

.b24-form-basket-label {
  text-align: left;
}

.b24-form-basket {
  border: 0 !important;
}

.b24-form-control-string .b24-form-control, .b24-form-control-list .b24-form-control, .b24-form-control-text .b24-form-control, .b24-form-control-select .field-item {
  background-color: #fff !important;
  border-color: #ddd !important;
}

.b24-form-wrapper input[type=checkbox] {
  position: static;
}

.b24-form-wrapper input[type=checkbox] + p,
.b24-form-wrapper input[type=checkbox] + span {
  display: inline;
}

div[data-carousel].carousel-loading > * {
  opacity: 0;
  transition: opacity 1s;
}

div[data-carousel] > * {
  opacity: 1;
  transition: opacity 1s;
}

#advanced-cookie-info .button-wrapper .button.cta {
  background-color: #ee343f;
  padding: 5px 25px;
  color: #fff;
}

#advanced-cookie-info .container img {
  max-height: 50px;
}

#advanced-cookie-info .container {
  max-width: 575px;
}

#advanced-cookie-info .button-wrapper .button.cta::after,
#advanced-cookie-info .button-wrapper .button.cta::before {
  display: none;
}

#page-article #map .info-panel h4 {
  padding-right: 15px;
  margin-top: 5px;
}
#page-article #map .info-panel p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}
#page-article #map .info-panel a {
  color: #000;
}

.gm-style .gm-style-iw-c {
  max-width: 250px !important;
  padding-left: 15px;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
}

.gm-style-iw-chr {
  position: absolute;
  top: 0;
  right: 0;
}

.gm-style-iw-ch {
  display: none;
}

.gm-style-iw-d {
  padding-top: 12px;
}

.map-cards {
  padding-top: 30px;
}
.map-cards .card {
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
}
.map-cards .card h4 {
  margin-top: 0;
}
.map-cards .card a {
  color: #000;
}

.map-search-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-bottom: 0;
}
.map-search-input h2 {
  margin: 0;
}
.map-search-input input {
  width: 250px;
}

#partners, .photo-bg-section {
  overflow: hidden;
}

.button.cta.nav {
  background-color: #ee343f;
  color: #fff;
  padding: 5px 10px;
  float: right;
  margin-top: 25px;
  min-width: 6em;
  margin-right: 0;
  height: 40px;
  border-radius: 0;
  font-size: 1em;
}

#TOP.sticked .button.cta.nav {
  margin-top: 15px;
}

.button.cta.nav::after, .button.cta.nav::before {
  display: none;
}

.contact-simple-layout > div.contact-content {
  display: none;
}

.contact-simple-layout > div.contact-form {
  width: 100%;
}/*# sourceMappingURL=theme.css.map */