:root {
	--black: #29292a;
	--primary: #0095da;
	--secondary: #33b249;
	--lightBlue: #d9eff9;
	--lighterBlue: #f5fcfe;
	--lighterBlue2: #ebf7fc;
	--focus: red;
	--gray: #d7d7d7;
	--gray2: #ebebeb;
	--lightGray: #f8f8f8;
	--lightGray2: #e4e4e4;
	--error: #cf4d4d;
	--filterPrimary: brightness(0) saturate(100%) invert(37%) sepia(75%) saturate(2262%) hue-rotate(174deg) brightness(98%) contrast(101%);
	--headerXl: 5.2rem;
	--headerLgPlus: 4.3rem;
	--headerLg: 3.9rem;
	--headerMdPlus: 3.2rem;
	--headerMd: 2.8rem;
	--headerSmPlus: 2.5rem;
	--headerSm: 2rem;
	--textLg: 1.8rem;
	--textMd: 1.6rem;
	--textSmPlus: 1.5rem;
	--textSm: 1.4rem;
	--textXsPlus: 1.3rem;
	--textXs: 1.2rem;
	--margin: 7vw;
	--gap: 16rem;
	--gapMd: 6rem;
}
@supports (color: oklch(0% 0 0)) {
	:root {
		--black: oklch(28.133% 0.00184 286.028);
		--primary: oklch(63.835% 0.1457 239.788);
		--secondary: oklch(67.261% 0.18209 145.941);
		--lightBlue: oklch(93.897% 0.02698 226.927);
		--lighterBlue: oklch(98.639% 0.00795 217.285);
		--lighterBlue2: oklch(96.865% 0.01446 224.815);
		--focus: oklch(62.793% 0.25768 29.223);
		--gray: oklch(87.917% 0.0001 271.152);
		--gray2: oklch(94.007% 0.00011 271.152);
		--lightGray: oklch(97.913% 0.00011 271.152);
		--lightGray2: oklch(91.887% 0.0001 271.152);
		--error: oklch(59.578% 0.16516 23.539);
	}
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body,
input,
textarea,
button {
	font-family: 'Poppins', sans-serif, system-ui, -apple-system;
	font-size: var(--textMd);
	color: var(--black);
}
body {
	max-width: 2500px;
	margin: 0 auto;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	padding-bottom: 10vh;
}
a,
a:visited,
a:active,
a:focus {
	color: var(--black);
	text-decoration: none;
}
a:hover {
	color: var(--primary);
	text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 700;
	text-align: left;
}
h1,
h2 {
	font-size: var(--headerLg);
	margin-bottom: 2.5rem;
	font-weight: 600;
	color: var(--black);
}
h3 {
	font-size: var(--headerMd);
	color: var(--primary);
	margin-bottom: 2.5rem;
}
h4 {
	font-size: var(--headerSm);
}
h5 {
	font-size: var(--textLg);
}
h6 {
	font-size: var(--textMd);
}
p {
	margin-top: 0;
	line-height: 1.4;
}
p:last-child {
	margin-bottom: 0;
}
ul,
ol {
	margin-top: 0;
}
ul {
	padding-left: 0;
}
figure {
	margin: 0;
}
ul li {
	list-style: none;
	margin-bottom: 1rem;
}
ul li:before {
	content: '';
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-image: url(../../../images/ikony/chevron-up-blue.svg);
	background-repeat: no-repeat;
	background-size: contain;
	translate: 0 .4rem;
	rotate: 90deg;
}
li li {
	list-style: initial;
	padding-left: 0;
	list-style-position: inside;
}
ul ul {
	margin-block-start: 1rem;
}
ol li li {
	list-style-type: disc;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
table {
	width: 100%;
}
video {
	width: 100% !important;
	height: auto !important;
}
iframe[src*='youtube'] {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
button {
	border: 0;
}
.container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 1240px) {
	.container {
		max-width: 1210px;
	}
}
.pt-lg {
	padding-top: var(--gap);
}
.pb-lg {
	padding-bottom: var(--gap);
}
.pt-md {
	padding-top: var(--gapMd);
}
.pb-md {
	padding-bottom: var(--gapMd);
}
.container-fluid {
	padding-left: var(--margin);
	padding-right: var(--margin);
}
.t4-section, .com-content-article {
	overflow: hidden;
}
.t4-section.t4-main-body, .t4-section.t4-header {
	overflow: initial;
}
.btn:not(.btn.dropdown-toggle), .formResponsive button[type=submit] {
	background: var(--primary);
	cursor: pointer;
	color: #fff;
	font-weight: 600;
	font-size: var(--textSmPlus);
	padding: 1.1rem .5rem;
	display: inline-block;
	text-align: center;
	width: 21rem;
	border-radius: 4rem;
	border: 2px solid var(--primary);
	text-shadow: none;
	box-shadow: none;
}
.btn:not(.btn.dropdown-toggle):hover,
.formResponsive button[type=submit]:hover,
.productsList .subCategoryContainer:hover .btn {
	background: #fff;
	color: var(--primary);
	text-shadow: none;
}
.btn-medium {
	width: 18rem !important;
	font-size: var(--textSm) !important;
	padding: 1.35rem .5rem !important;
	border-width: 1px !important;
}
.btn-small {
	width: 11rem !important;
	border-radius: 2rem !important;
	font-size: var(--textXsPlus) !important;
	border-width: 1px !important;
	padding: .55rem .5rem !important;
	font-weight: 500 !important;
}
.btn-green {
	background: var(--secondary) !important;
	border-color: var(--secondary) !important;
	color: #fff !important;
}
.btn-inverse {
	background: #fff !important;
	color: var(--primary) !important;
	border-color: var(--primary) !important;
}
.btn-square {
	width: initial !important;
	color: var(--primary) !important;
	background: #fff !important;
	text-transform: uppercase;
	border-radius: 0 !important;
	font-size: var(--textXsPlus) !important;
	font-weight: 500 !important;
	padding: 1.4rem 5.35rem !important;
	border: 1px solid var(--primary) !important;
}
.btn-square:hover {
	color: #fff !important;
	background: var(--primary) !important;
}
.btn-green:hover {
	background: #fff !important;
	color: var(--secondary) !important;
}
.btn-inverse:hover {
	background: var(--primary) !important;
	color: #fff !important;
}
.btn-white {
	background: #fff !important;
	color: var(--primary) !important;
}
.btn-white:hover {
	color: var(--black) !important;
}
.wf-columns {
	gap: 3rem;
}
.wf-column p:empty {
	display: none;
}
.wf-columns-gap-medium,
.wf-columns {
	gap: 3rem;
}
.wf-columns-gap-large {
	gap: 7rem;
}
.wf-columns-gap-small {
	gap: 1.2rem;
}
.wf-columns-gap-none {
	gap: 0;
}
.breadcrumb {
	margin-bottom: 5rem;
	margin-top: 5rem;
	font-size: var(--textSm);
	flex-wrap: wrap;
	list-style: none;
	display: flex;
	padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 0.8rem;
}
.breadcrumb-item + .breadcrumb-item:before {
	content: '';
	float: left;
	background: url(../../../images/ikony/chevron-right-light.svg) no-repeat right center;
	background-size: contain;
	height: 24px;
	width: 24px;
	margin-right: 0.8rem;
	color: var(--black);
	translate: 0 -1px;
}
.breadcrumb-item.active {
	font-weight: 600;
}
.view-categories .t4-main-body,
.view-category .t4-main-body {
	padding-bottom: var(--gap);
}
.accordion-wrapper {
	max-width: 800px;
	margin: 0 auto;
}
.accordion-header {
    display: flex;
	padding: 1.7rem 1.2rem;
	align-items: center;
	justify-content: space-between;
    cursor: pointer;
    width: 100%;
	border: 1px solid var(--lightGray2);
}
.accordion-item:not(:last-child) .accordion-header {
	border-bottom: 0;
}
.accordion-item:not(:last-child) .accordion-desc {
	border-bottom: 0;
}
.accordion-item:last-child .accordion-desc {
	border-top: 0;
}
.accordion-title {
	font-size: var(--textMd);
	color: var(--black);
	margin-bottom: 0;
	font-weight: 400;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    background: url(../../../images/ikony/chevron-down.svg) no-repeat;
    background-size: 24px;
    background-position: center center;
}
.accordion-desc {
	display: none;
	padding: 1.7rem 1.2rem;
	border: 1px solid var(--lightGray2);
}
.accordion-header:hover,
.accordion-header.active {
	background: var(--gray2);
}
.accordion-header:hover .accordion-title {
	color: var(--primary);
}
.accordion-header.active .accordion-title {
	font-weight: 600;
	color: var(--primary);
}
.accordion-header.active .accordion-icon {
	rotate: 180deg;
	filter: var(--filterPrimary);
}
.standard-li ul {
	padding-left: 4rem;
}
.standard-li li {
	list-style: disc;
	padding-left: 0;
}
.standard-li li:before {
	content: none;
}
.primary-li li::marker {
	color: var(--primary);
}
/* ANIMACJE */
.animation {
	opacity: var(--opacity, 0);
	transform: var(--transform, none);
	filter: var(--filter, none);
}
.end {
	transition-property: opacity, transform, filter;
	transition-duration: var(--duration, 0.7s), var(--duration, 0.7s), var(--duration, 0.7s);
	transition-delay: var(--delay, 0s), var(--delay, 0s), var(--delay, 0s);
	transition-timing-function: var(--easing, 'ease-in-out'), var(--easing, 'ease-in-out'), var(--easing, 'ease-in-out');
	opacity: 1;
	transform: none;
	filter: none;
	animation: var(--customAnimation, none);
}
@keyframes flip-in-ver-right {
	0% {
		transform: rotateY(-80deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0);
		opacity: 1;
	}
}
@keyframes tracking-in-expand {
	0% {
		letter-spacing: -0.5em;
		opacity: 0;
	}
	40% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}
@keyframes tilt-in-fwd-tr {
	0% {
		transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px) skew(-35deg, 10deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
		opacity: 1;
	}
}
@keyframes jello-horizontal {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}
@keyframes swing-in-left-fwd {
	0% {
		transform: rotateY(100deg);
		transform-origin: left;
		opacity: 0;
	}
	100% {
		transform: rotateY(0);
		transform-origin: left;
		opacity: 1;
	}
}
@keyframes flip-in-hor-bottom {
	0% {
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0);
		opacity: 1;
	}
}
/* Formularze */
.formularz-kontaktowy strong.formRequired {
	display: none;
}
select,
textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
.inputbox {
	width: 100%;
	padding: 0.6rem 1.2rem;
	display: block;
	border: 1px solid var(--gray);
	border-radius: 4px;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
select:focus,
textarea:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='time']:focus,
input[type='week']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='color']:focus,
.inputbox:focus {
	border-color: #66afe9;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 15px rgba(55, 242, 161, 0.6);
}
input[type='checkbox'],
input[type='radio'] {
	position: absolute;
	cursor: pointer;
	margin-left: -2rem;
}
.rsform-type-checkboxgroup, .rsform-type-radiogroup {
	margin-bottom: 1.5rem;
}
.rsform-type-checkboxgroup label, .rsform-type-radiogroup label {
	font-size: var(--textXs);
	cursor: pointer;
	padding-left: 2rem;
	display: block;
}
.rsform-type-freetext {
	text-align: justify;
	font-size: var(--textXs);
}
.rsform-type-submitbutton .formBody {
	text-align: right;
}
.rsform-submit-button {
	margin-top: 2rem;
	cursor: pointer;
}
.formValidation {
	display: block;
	margin-top: 1rem;
}
.rsform-block {
	margin-bottom: 1.5rem;
}
.rsform-type-radiogroup .formControls .formBody {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1rem;
}
.rsform-type-radiogroup .formControlLabel {
	padding-left: 0;
	margin-bottom: 0.5rem;
}
.rsform-type-radiogroup label {
	font-size: var(--textMd);
}
.rsform-type-radiogroup .formValidation {
	width: 100%;
}
strong.formRequired {
	display: none;
}
.help-block {
	position: absolute;
	margin-top: 0;
}
div[id^='rsform_error_'] {
	margin-bottom: 1rem;
}
.formError, div[id^='rsform_error_'] p {
	color: var(--error);
}
.formRow {
	display: flex;
	gap: 2rem;
}
.formSpan6 {
	width: 50%;
}
@media(max-width: 580px) {
	.formRow {
		gap: 0;
		flex-wrap: wrap;
	}
	.formSpan6 {
		width: 100%;
	}
}
.hidden {
	display: none !important;
}
.t4-masthead-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2rem var(--margin);
	height: 500px;
}
.t4-masthead-inner:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
	background: #000;
}
.t4-masthead-title {
	color: #fff;
	text-align: left;
}
.t4-navbar {
	position: relative;
	padding: 0;
}
.t4-navbar .dropdown-item.dropdown-toggle {
	position: relative;
}
.t4-navbar .dropdown-item.dropdown-toggle::after {
	position: absolute;
	right: 1rem;
	top: 50%;
	margin-top: -2px;
}
.t4-navbar .nav-item {
	position: relative;
	background-image: none;
}
.nav-align-left .t4-megamenu .navbar-nav > li > a,
.nav-align-left .t4-megamenu .navbar-nav > li > span {
	padding-left: 0;
	padding-right: 0;
	margin-right: 2rem;
}
.t4-megamenu .mega-inner {
	padding-bottom: 1rem;
	padding-top: 1rem;
}
.t4-megamenu .mega-nav,
.t4-megamenu .dropdown-menu .mega-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.t4-megamenu .mega-nav > li a,
.t4-megamenu .dropdown-menu > li a {
	padding: 0.5rem 1rem;
}
.t4-megamenu .mega-nav .dropdown-submenu > a::after {
	margin-right: 0;
}
.t4-megamenu .nav .caret,
.t4-megamenu .dropdown-submenu .caret,
.t4-megamenu .mega-menu .caret {
	display: none;
}
.t4-megamenu .dropdown-toggle:after {
	display: none;
}
.t4-megamenu .dropdown-toggle .item-caret {
	display: none;
}
.t4-megamenu .dropdown-toggle .item-caret::before {
	content: none;
}
.t4-megamenu .mega-align-left > .dropdown-menu {
	left: 0;
}
.t4-megamenu .mega-align-right > .dropdown-menu {
	left: auto;
	right: 0;
}
.t4-megamenu .mega-align-center > .dropdown-menu {
	left: 50%;
	transform: translate(-50%, 0);
}
.t4-megamenu .dropdown-submenu.mega-align-left > .dropdown-menu {
	left: 100%;
}
.t4-megamenu .dropdown-submenu.mega-align-right > .dropdown-menu {
	left: auto;
	right: 100%;
}
.t4-megamenu .mega-align-justify {
	position: static;
}
.t4-megamenu .mega-align-justify > .dropdown-menu {
	left: 0;
	right: 0;
	margin-left: 0;
	top: auto;
}
.t4-megamenu .nav-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.t4-megamenu.animate .dropdown > .dropdown-menu {
	backface-visibility: hidden;
	opacity: 0;
}
.t4-megamenu.animate .dropdown.animating > .dropdown-menu {
	display: block;
}
.t4-megamenu.animate .dropdown.show.animating > .dropdown-menu,
.t4-megamenu.animate .dropdown.animating.open > .dropdown-menu {
	opacity: 1;
}
.t4-megamenu.animate.zoom .dropdown > .dropdown-menu {
	transform: scale(0, 0);
	transform-origin: 20% 20%;
}
.t4-megamenu.animate.zoom .dropdown.show.animating > .dropdown-menu {
	transform: scale(1, 1);
}
.t4-megamenu.animate.zoom .level0 > .mega-align-center > .dropdown-menu {
	transform: scale(0, 0) translate(-50%, 0);
	transform-origin: 0% 20%;
}
.t4-megamenu.animate.zoom .level0 > .mega-align-center.show.animating > .dropdown-menu {
	transform: scale(1, 1) translate(-50%, 0);
}
.t4-megamenu.animate.elastic .dropdown > .dropdown-menu {
	transform: scale(0, 1);
	transform-origin: 10% 0;
}
.t4-megamenu.animate.elastic .dropdown.show.animating > .dropdown-menu {
	transform: scale(1, 1);
}
.t4-megamenu.animate.elastic .level0 > .dropdown > .dropdown-menu {
	transform: scale(1, 0);
}
.t4-megamenu.animate.elastic .level0 .show.animating > .dropdown-menu {
	transform: scale(1, 1);
}
.t4-megamenu.animate.elastic .level0 > .mega-align-center > .dropdown-menu {
	transform: scale(1, 0) translate(-50%, 0);
}
.t4-megamenu.animate.elastic .level0 > .mega-align-center.show.animating > .dropdown-menu {
	transform: scale(1, 1) translate(-50%, 0);
}
.t4-megamenu.animate.slide .dropdown > .dropdown-menu {
	backface-visibility: hidden;
	margin-top: -30%;
	z-index: 1000;
}
.t4-megamenu.animate.slide .dropdown.show.animating > .dropdown-menu {
	margin-top: 0%;
}
.t4-megamenu.animate.slide .dropdown .dropdown-menu {
	min-width: 0;
	margin-top: -1rem;
	transition-property: margin-top, opacity;
	transition-timing-function: ease;
}
.t4-megamenu.animate.slide .dropdown .dropdown-menu > div {
	min-width: 350px;
	margin-top: 0;
	margin-left: -500px;
	width: 100%;
}
.t4-megamenu.animate.slide .dropdown.animating > .dropdown-menu > div {
	margin-left: 0;
}
.t4-megamenu.animate.flipping .dropdown > .dropdown-menu {
	transform-origin: 50% 0%;
	transform: perspective(600px) rotateX(-90deg);
	transition-property: transform;
	transition-timing-function: ease;
}
.t4-megamenu.animate.flipping .dropdown.show.animating > .dropdown-menu {
	transform: perspective(600px) rotateX(0deg);
}
.t4-megamenu.animate.fading .dropdown.show.animating > .dropdown-menu {
	transition-property: opacity;
	transition-timing-function: ease;
}
.t4-megamenu.animate:is(.zoom, .elastic) .dropdown.show.animating > .dropdown-menu {
	transition-property: transform;
	transition-timing-function: ease;
}
.t4-megamenu.animate .animating.show {
	z-index: 2000;
}
.t4-megamenu .navbar-nav > li > :is(a, .nav-link) > span {
	display: block;
}
.t4-megamenu .navbar-nav > li > :is(a, .nav-link) .menu-item-title {
	margin-top: 4px;
	display: block;
}
.t4-megamenu .navbar-nav > li > :is(a, .nav-link) {
	color: var(--black);
}
.t4-megamenu ul li {
	padding-left: 0;
	margin-bottom: 0;
}
.t4-megamenu .navbar-nav > li > :is(a, .nav-link) .item-caret {
	display: none;
}
.t4-megamenu .navbar-nav > li > a:is(:hover, :focus, :active),
.t4-megamenu .navbar-nav > li > .nav-link:is(:hover, :focus, :active) {
	color: var(--primary);
}
.t4-megamenu .navbar-nav > li > a:is(:hover, :focus, :active) .item-caret,
.t4-megamenu .navbar-nav > li > .nav-link:is(:hover, :focus, :active) .item-caret {
	border-top-color: var(--primary);
}
.t4-megamenu .navbar-nav > li.show > :is(a, .nav-link) {
	color: var(--primary);
}
.t4-megamenu .navbar-nav > li.show > a .item-caret,
.t4-megamenu .navbar-nav > li.show > .nav-link .item-caret {
	border-top-color: var(--primary);
}
.t4-megamenu .navbar-nav > li.active > :is(a, .nav-link) {
	color: var(--primary);
}
.t4-megamenu .navbar-nav > li.active > :is(a, .nav-link) .item-caret {
	border-top-color: var(--primary);
}
.t4-megamenu .navbar-nav > li:last-child > :is(a, .nav-link) {
	border: 0;
}
.t4-megamenu .dropdown-menu {
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
	border-radius: 0;
	border: 0;
	min-width: 15rem;
	margin-top: 0;
}
@media (min-width: 992px) {
	.t4-megamenu .dropdown-menu {
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
			0 3px 1px -2px rgba(0, 0, 0, 0.2);
	}
}
.t4-megamenu .dropdown-menu a {
	color: var(--black);
}
.t4-megamenu .dropdown-menu a:is(:hover, :focus, :active) {
	background-color: rgba(0, 0, 0, 0);
	color: var(--primary);
}
.t4-megamenu .dropdown-menu li:last-child {
	border: 0;
}
.t4-megamenu .dropdown-menu li > :is(a, .nav-link),
.t4-megamenu .dropdown-menu li .dropdown-item {
	color: var(--black);
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	white-space: normal;
	height: auto;
}
.dropdown-menu li > a span {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.dropdown-menu li > a span img {
	width: 20px;
	height: 20px;
}
.t4-megamenu .dropdown-menu li > a:is(:hover, :focus, :active),
.t4-megamenu .dropdown-menu li > .nav-link:is(:hover, :focus, :active),
.t4-megamenu .dropdown-menu li .dropdown-item:is(:hover, :focus, :active) {
	color: #fff;
	background: var(--primary);
}
.t4-megamenu .dropdown-menu li.active > a {
	color: var(--primary);
}
.t4-megamenu .dropdown-toggle:after {
	margin-top: 0.5rem;
	float: right;
}
.t4-megamenu .dropdown ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.t4-megamenu .t4-module {
	border-radius: 0;
	border: 0;
}
.t4-megamenu .t4-module .nav li.nav-item,
.t4-megamenu .mega-col-module .navbar li.nav-item {
	list-style: none;
	flex-basis: 100%;
}
.t4-megamenu .t4-module .nav li.nav-item a,
.t4-megamenu .mega-col-module .navbar li.nav-item a {
	display: block;
	padding: 0.5rem 0;
}
.t4-megamenu .t4-module .nav li.nav-item a:is(:hover, :focus, :active),
.t4-megamenu .mega-col-module .navbar li.nav-item a:is(:hover, :focus, :active) {
	background-color: rgba(0, 0, 0, 0);
}
.t4-megamenu .dropstart .dropdown-menu {
	right: 100%;
	top: 0px;
}
.t4-megamenu .dropend .dropdown-menu {
	left: 100%;
	top: 0;
}
div.t4-megamenu:not(.show) {
	height: auto;
}
.t4-megamenu.collapse:not(.show) {
	overflow: visible;
}
.t4-megamenu .nav-item.dropdown:focus-within > .dropdown-menu {
	opacity: 1;
	margin-top: 0;
	display: block;
}
.t4-megamenu .nav-item.dropdown:focus-within > .dropdown-menu > div {
	margin-left: 0;
}
.t4-megamenu.animate .dropdown.animating > .dropdown-menu {
	transition-duration: 400ms;
}
#t4-megamenu-main-menu > ul > li > a .image-title {
	display: none;
}
#t4-megamenu-main-menu > ul > li > a img {
	width: 24px;
}
#t4-megamenu-main-menu > ul > li > a:is(:hover, :focus, :active) img {
	filter: invert(64%) sepia(63%) saturate(526%) hue-rotate(103deg) brightness(89%) contrast(86%);
}
.nav {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.nav-link {
	display: block;
	padding: 2rem;
	background: none;
	border: 0;
}
.nav-link:hover,
.nav-link:focus {
	color: var(--primary);
}
.nav-link:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 0.25rem var(--focus);
}
.nav-link.disabled,
.nav-link:disabled {
	color: var(--lightGray);
	pointer-events: none;
	cursor: default;
}
.nav-tabs {
	border-bottom: 2px solid var(--primary);
}
.nav-tabs .nav-link {
	margin-bottom: -2px;
	border: 2px solid rgba(0, 0, 0, 0);
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
	isolation: isolate;
	border-color: var(--primary);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: var(--primary);
	background-color: #fff;
	border-color: var(--primary);
}
.nav-tabs .dropdown-menu {
	margin-top: -2px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.nav-pills .nav-link {
	border-radius: 4px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: var(--primary);
}
.nav-underline {
	gap: 1rem;
}
.nav-underline .nav-link {
	padding-right: 0;
	padding-left: 0;
	border-bottom: 4px solid rgba(0, 0, 0, 0);
}
.nav-underline .nav-link:is(:hover, :focus) {
	border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
	font-weight: 700;
	color: var(--primary);
	border-bottom-color: currentcolor;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
	flex: 1 1 auto;
	text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
	flex-basis: 0;
	flex-grow: 1;
	text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
	width: 100%;
}
.tab-content > .tab-pane {
	display: none;
}
.tab-content > .active {
	display: block;
}
.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.navbar-nav {
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
}
.navbar-nav .nav-link:is(.active, .show) {
	color: var(--primary);
}
.navbar-nav .dropdown-menu {
	position: static;
}
.navbar-text {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: var(--black);
}
.navbar-text a:is(:hover, :focus) {
	color: var(--primary);
}
.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}
.navbar-expand-xl .navbar-collapse {
	display: none;
}
@media (min-width: 1200px) {
	.navbar-expand-xl {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-xl .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: 2rem;
		padding-left: 2rem;
	}
	.navbar-expand-xl .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-xl .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-xl .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: rgba(0, 0, 0, 0) !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}
	.navbar-expand-xl .offcanvas .offcanvas-header {
		display: none;
	}
	.navbar-expand-xl .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}
}
.t4-offcanvas {
	background: #fff;
}
.t4-offcanvas .t4-off-canvas-header {
	background-color: var(--lightGray);
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1.5rem;
}
.t4-offcanvas .t4-off-canvas-header a img {
	max-height: 4rem;
	outline: none;
}
.t4-offcanvas .t4-off-canvas-header .close {
	background-color: #fff;
	border: 0;
	border-radius: 50%;
	height: 32px;
	outline: none;
	margin-left: auto;
	padding: 0;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	text-shadow: none;
	width: 32px;
}
.t4-offcanvas .t4-off-canvas-header .close:is(:hover, :focus, :active) {
	background-color: rgba(0, 0, 0, 0.05);
}
.t4-offcanvas .t4-off-canvas-header .close:is(:hover, :focus, :active) {
	transform: rotate(180deg);
}
.t4-offcanvas .t4-off-canvas-header .close:focus {
	border: 2px solid #000;
}
.t4-offcanvas .t4-off-canvas-header .close span {
	display: block;
	font-size: 24px;
	transition: all 0.35s ease;
}
.t4-offcanvas .logo-img {
	width: 100%;
}
.t4-offcanvas .navbar-nav > li > a > span img {
	display: none;
}
.t4-offcanvas .navbar-nav li:before {
	content: none;
}
.t4-offcanvas .t4-off-canvas-body .navbar {
	display: block;
	padding: 0;
}
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-toggle::after {
	display: none;
}
.t4-offcanvas .t4-off-canvas-body .navbar .nav-item .dropdown-menu .nav-item {
	border-bottom: 0;
	padding-right: 0;
}
.t4-offcanvas .t4-off-canvas-body .navbar .nav-link,
.t4-offcanvas .t4-off-canvas-body .navbar .separator {
	padding: 0.75rem 1rem;
	width: 100%;
}
.t4-offcanvas .t4-off-canvas-body .navbar .btn-toggle {
	background-color: var(--lightGray);
	border-radius: 50%;
	display: block;
	position: absolute;
	right: 0;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
	padding: 0;
	text-align: center;
	width: 30px;
	cursor: pointer;
}
.t4-offcanvas .t4-off-canvas-body .navbar .btn-toggle:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../../../images/ikony/chevron-up-blue.svg);
	background-size: 17px;
	background-repeat: no-repeat;
	background-position: 7px;
	rotate: 90deg;
	cursor: pointer;
}
.t4-offcanvas .t4-off-canvas-body .navbar .btn-toggle:is(:hover, :focus, :active) {
	background-color: var(--primary);
	color: var(--black);
}
.t4-offcanvas .t4-off-canvas-body .navbar .btn-toggle:is(:hover, :focus, :active):after {
	background-image: url(../../../images/ikony/chevron-up.svg);
	background-size: 17px;
	background-repeat: no-repeat;
	background-position: 7px;
	filter: brightness(10);
}
.t4-offcanvas .t4-off-canvas-body .navbar .btn-toggle.is-active::after {
	color: var(--primary);
	transform: rotate(180deg);
}
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu {
	border-radius: 0;
	border: 0;
	min-width: auto;
	padding: 0 0 0 1rem;
}
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu .dropdown-item,
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu .nav-link {
	width: 100%;
	padding: 0.75rem 1rem;
}
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu .dropdown-item:is(:hover, :focus, :active),
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu .nav-link:is(:hover, :focus, :active) {
	background: rgba(0, 0, 0, 0);
	color: var(--primary);
}
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu .dropdown-item:before,
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu .nav-link:before {
	display: none;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect {
	overflow: hidden;
}
.t4-offcanvas .t4-off-canvas-body .navbar .sub-menu-back {
	display: none;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .sub-menu-back {
	display: flex;
	align-items: center;
	font-weight: 700;
	text-transform: uppercase;
	background: var(--lightBlue);
	color: var(--black);
	font-size: var(--textMd);
	border-radius: 0;
	padding: 1rem;
	cursor: pointer;
	width: 100%;
}
.t4-offcanvas .t4-off-canvas-body .navbar .sub-menu-back:is(:hover, :focus, :active) {
	background-color: var(--primary);
	color: #fff;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .sub-menu-back:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../../../images/ikony/arrow-right.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	transform: rotateY(180deg);
}
.t4-offcanvas
	.t4-off-canvas-body
	.navbar.drilldown-effect
	.sub-menu-back:is(:hover, :focus, :active):before {
	background-image: url(../../../images/ikony/arrow-right-white.svg);
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .navbar-nav {
	position: relative;
	width: 100%;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .navbar-nav .nav-item {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	position: static;
	margin-bottom: 0;
}
.t4-offcanvas
	.t4-off-canvas-body
	.navbar.drilldown-effect
	.navbar-nav
	.btn-toggle.is-active::after {
	color: var(--gray);
	transform: rotate(0deg);
}
.t4-offcanvas .t4-off-canvas-body .navbar .navbar-nav .nav-item.active {
	background: var(--primary);
}
.t4-offcanvas .t4-off-canvas-body .navbar .navbar-nav .nav-item.active > a {
	color: #fff;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .navbar-nav .dropdown-menu {
	position: absolute;
	top: 0;
	left: 100%;
	padding-left: 0;
	width: 100%;
	margin-top: 0;
}
.t4-offcanvas .t4-off-canvas-body.menu-item-always-show .navbar .sub-menu-toggle {
	display: none;
}
.t4-offcanvas .t4-off-canvas-body.menu-item-always-show .navbar .dropdown-menu {
	display: block;
}
.t4-offcanvas .navbar-nav,
.t4-offcanvas .oc-level-0 .drilldown-effect .navbar-nav {
	transform: translateX(0);
	transition: all 0.35s ease-in-out;
}
.t4-offcanvas.oc-level-1 .drilldown-effect .navbar-nav {
	transform: translateX(-100%);
}
.t4-offcanvas.oc-level-2 .drilldown-effect .navbar-nav {
	transform: translateX(-200%);
}
.t4-offcanvas .t4-off-canvas-body {
	display: flex;
	flex-flow: column wrap;
	padding-bottom: 10vh;
}
.t4-offcanvas .t4-off-canvas-body .navbar .nav-item {
	border-bottom: 1px solid var(--lightGray);
}
.t4-offcanvas nav > .nav > .nav-item {
	overflow: hidden;
	position: relative;
}
.t4-offcanvas .t4-off-canvas-body .navbar:not(.drilldown-effect) .btn-toggle {
	width: 25px;
	height: 25px;
	rotate: 90deg;
	translate: -10px -34px;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .btn-toggle {
	right: 1.5rem;
	margin-top: 3.5px;
}
.t4-offcanvas .t4-off-canvas-body .navbar .dropdown-menu {
	padding-left: 0;
}
.t4-offcanvas .t4-off-canvas-body .navbar.drilldown-effect .navbar-nav .nav-item .dropdown-menu .nav-item {
	border-bottom: 1px solid var(--lightGray);
	padding-left: 0;
}
.off-canvas-toggle {
	border-radius: 0;
	border: 0;
	padding: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: var(--primary);
	cursor: pointer;
	position: fixed;
	top: 6px;
	right: 2rem;
	z-index: 1002;
}
.off-canvas-toggle .bar {
	background-color: #ffffff;
	display: block;
	height: 2px;
	position: absolute;
	left: 15px;
	width: 20px;
	transition: all 0.25s;
}
.off-canvas-toggle span.bar-first {
	top: 18px;
}
.off-canvas-toggle span.bar-mid {
	top: 24px;
}
.off-canvas-toggle span.bar-last {
	top: 30px;
}
.off-canvas-toggle.is-active span.bar-mid {
	display: none;
}
.off-canvas-toggle.is-active span.bar-first {
	top: 24px;
	transform: rotate(45deg);
}
.off-canvas-toggle.is-active span.bar-last {
	top: 24px;
	transform: rotate(-45deg);
}
.nav li {
	list-style: none;
}
.dropdown-menu {
	display: none;
}
.dropdown-menu.show {
	display: block;
}
#back-to-top {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	display: none;
	position: fixed;
	right: 1rem;
	bottom: 4.5rem;
	cursor: pointer;
	height: 40px;
	text-align: center;
	transition: all 0.35s ease;
	width: 40px;
}
#back-to-top::after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background: #fff;
	-webkit-mask-image: url(../../../images/ikony/chevron-up.svg);
	mask-image: url(../../../images/ikony/chevron-up.svg);
	mask-repeat: no-repeat;
	mask-position: center;
}
#back-to-top:hover,
#back-to-top:focus,
#back-to-top:active {
	background-color: var(--primary);
	color: #fff;
}
#back-to-top i {
	color: #fff;
	line-height: 36px;
}
.top-away #back-to-top {
	display: block;
}
.t4-content {
	padding-top: 99px;
}
header {
	background: var(--lighterBlue);
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--lightGray2);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}
header > div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 2.7rem;
}
.itemBody header {
	position: initial;
	background: none;
	border: none;
}
.itemBody header > div {
	display: initial;
}
.header-row {
	flex: 1;
}
.header-subrow-1, .header-subrow-2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-img {
	width: 60px;
}
.img-wrapper {
	overflow: hidden;
}
.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 3rem;
}
.item {
	display: block;
}
.item img {
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.35s;
}
.item:hover img {
	scale: 1.1;
}
:is(.categories, .category) .title {
	margin-top: 1rem;
	font-size: var(--textLg);
}
.category-content:has(> img) {
	margin-bottom: 5rem;
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 3rem;
}
.t4-row:has(.sidebar-l, .sidebar-r) {
	display: grid;
	gap: 5rem;
	grid-template-columns: 1fr 3fr;
}
.t4-module .navbar {
	padding-left: 0;
	padding-right: 0;
}
/* fix for disable overflow for position sticky on specific pages */
.t4-wrapper:has(.nasz-zespol-article) {
	overflow: visible;
}
.sidebar-l {
	order: -1;
}
.sidebar-l :is(.t4-module, .module-inner, .module-ct) {
	height: 100%;
}
.com-content-article p {
	text-align: justify;
}
.com-content-article :is(.item-image, .img-wrapper) {
	overflow: hidden;
	border: 2px solid var(--secondary);
	margin-bottom: 3rem;
}
.has-offcanvas--visible {
	overflow: hidden;
}
.category-desc {
	margin-bottom: 5rem;
}
.t4-masthead-description {
	color: #fff;
	position: relative;
	max-width: 1000px;
	font-size: var(--textMd);
	margin-bottom: 2rem;
}
.scroll-anchor {
	position: absolute;
	transform: translateY(-140px);
	visibility: hidden;
}
.droppicspictures {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.droppicspictures .wimg {
	margin: 0;
	width: 100% !important;
	height: 100% !important;
	float: initial;
}
.droppicsgallerydefault .wimg a {
	display: block;
	width: 100%;
	position: relative;
}
.droppicspictures .wimg img {
	margin-top: 0 !important;
	aspect-ratio: 168/192;
	width: 100%;
	object-fit: cover !important;
}
.droppicsgallerydefault .wimg a:hover img,
.productView .itemImage:hover img {
	opacity: .55;
}
.droppicsgallerydefault .img {
	border: 0 !important;
	border-radius: 0 !important;
	margin: 0 !important;
}
body:has(.cboxPhoto) {
	overflow: hidden;
}
.pagination {
	display: flex;
	gap: 1rem;
}
.pagination li {
	padding: 0;
}
.pagination li a {
	border: 1px solid var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: 15px;
}
.pagination li.active a {
	background: var(--primary);
	border: 1px solid var(--primary);
}
.pagination li a:hover {
	background: var(--secondary);
	color: #fff;
}
.pagination li:before {
	content: none;
}
/* for anchors */
a:not([href]) {
	transform: translateY(-70px);
	position: absolute;
}
@media (max-width: 1580px) {
	.wf-columns-stack-xlarge > .wf-column {
		width: 100%;
		flex: auto;
	}
}
@media (min-width: 1200px) {
	.off-canvas-toggle {
		display: none;
	}
}
@media (max-width: 1199px) {
	.wf-columns-stack-large > .wf-column {
		width: 100%;
		flex: auto;
	}
	.sidebar-l {
		order: 2;
	}
	.t4-row:has(.sidebar-l, .sidebar-r) {
		grid-template-columns: 1fr;
	}
	.droppicspictures {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 991px) {
	.wf-columns-stack-medium > .wf-column {
		width: 100%;
		flex: auto;
	}
	.droppicspictures {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767px) {
	.wf-columns-stack-small > .wf-column {
		width: 100%;
		flex: auto;
	}
	.t4-masthead-inner {
		height: 300px;
	}
	.category-content {
		grid-template-columns: 1fr;
	}
}
/* blog */
.blog .grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 7rem;
}
.blog .item {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 4rem;
}
.blog .blog-btn-wrapper {
	margin-top: 1.5rem;
}
.blog .item:hover .intro-text {
	color: var(--black);
}
.blog .item:hover .blog-btn-wrapper .btn {
	color: #fff !important;
	background: var(--secondary);
}
.ostatnie-artykuly {
	position: sticky;
	top: 100px;
}
.ostatnie-artykuly .wrapper {
	display: block;
}
.ostatnie-artykuly .img-wrapper {
	border-radius: 0;
}
.ostatnie-artykuly .img-wrapper img {
	border-radius: 10px;
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: 0.35s ease-in-out;
	border-radius: 20px;
}
.ostatnie-artykuly .item:hover img {
	scale: 1;
	filter: brightness(1.1);
}
.ostatnie-artykuly .item {
	display: grid !important;
	grid-template-columns: 1fr 2fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.ostatnie-artykuly .item .title {
	font-size: var(--textSm);
	color: var(--black);
}
.ostatnie-artykuly .item:hover .title {
	color: var(--primary);
}
.ostatnie-artykuly .module-title {
	margin-bottom: 1.5rem;
}
@media(max-width: 767px) {
	.ostatnie-artykuly .item {
		grid-template-columns: 1fr;
	}
	.ostatnie-artykuly .item .title {
		font-size: var(--textMd);
	}
}
/* blog */
.t4-navbar li:before,
.splide__arrows li:before {
	content: none;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper {
	border: 0;
	background: #fff;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu {
	background: #fff;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu .level1 .group,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu ul.level1,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu ul.level2,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu ul.level3 {
	font-family: 'Poppins', sans-serif;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.megacss span.megacss,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.megacss a.megacss,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .megaMenuToggle {
	border-left: 0;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.megacss span.megacss,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.megacss a.megacss,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .megaMenuToggle {
	color: var(--black);
	font-size: var(--textMd);
	padding: 12px 15px;
	font-weight: 600;
	box-shadow: none;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss > span.megacss,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss > a.megacss {
	display: block;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss > span.megacss:after,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss > a.megacss:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: var(--lighterBlue);
	translate: 0 5px;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss {
	border: 0;
	color: var(--black);
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss .image-title,
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss:hover > a.megacss {
	background: none !important;
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss a {
	transition: none !important;
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .childcontent {
	box-shadow: none !important;
	font-size: 14px !important;
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss>.childcontent {
	margin: -20px 0 0 270px;
	right: initial !important;
	top: 20px !important;
	z-index: 1002;
}
.theme-blackwhite.mod_jux_megamenu ul.level1 li.megacss a.megacss {
	padding: 8px 15px !important;
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss.active > span.megacss,
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss:hover > span.megacss,
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss.active > a.megacss,
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss:hover > a.megacss {
	background: #fff !important;
	color: var(--primary) !important;
}
.theme-blackwhite.mod_jux_megamenu ul.megamenu li.haschild.megacss:hover>div.childcontent.adddropdown, .theme-blackwhite.mod_jux_megamenu .childcontent.open>.jux-dropdown-menu {
	padding: 0;
}
.mod_jux_megamenu .megamenu-wrapper .childcontent .jux_modules_content {
	padding: 10px !important;
}
.mod_jux_megamenu .megamenu-wrapper .childcontent-inner:not(:has(.jux_modules_content)) {
	width: initial !important;
}
.mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss span.megacss img, .mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss a.megacss img {
	width: 35px;
	max-width: 35px !important;
	margin-right: 10px !important;
}
.mod_jux_megamenu .megamenu-wrapper .submenu-column {
	background: none !important;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss:hover > a.megacss,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.active > a.megacss {
	background: rgba(24, 182, 241, 0.05) !important;
	color: var(--primary) !important;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss:hover > a.megacss:after,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.active > a.megacss:after {
	background: var(--primary);
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss:hover > a.megacss .image-title:after,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.active > a.megacss .image-title:after {
	filter: var(--filterPrimary);
	rotate: 180deg;
	translate: 7px 0px;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 > li.megacss:hover > a.megacss > span,
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level0 li.active > a > .menu-inner > span {
	color: var(--primary) !important;
}
.mod_jux_megamenu .megamenu-wrapper .level2 .childcontent-inner-wrap {
	width: 358px;
}
.mod_jux_megamenu .megamenu-wrapper .level2 {
	background: #fff;
}
.theme-blackwhite.mod_jux_megamenu ul.level0 li a.haschild.megacss span.menu-title,
.theme-blackwhite.mod_jux_megamenu ul.level0 li span.haschild.megacss span.menu-title,
.theme-blackwhite.mod_jux_megamenu ul.level0 li a.haschild-over.megacss span.menu-title,
.theme-blackwhite.mod_jux_megamenu ul.level0 li span.haschild-over.megacss span.menu-title {
	background-position: right 13px !important;
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .childcontent .childcontent-inner a {
	color: var(--black);
}
.mod-languages {
	margin-right: 16px;
}
.artykuly-do-menu {
	background: #fff;
}
.artykuly-do-menu ul {
	display: flex;
	flex-wrap: wrap;
}
.artykuly-do-menu ul li {
	width: min-content;
	min-width: 25%;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	margin-bottom: 0;
	padding: 10px !important;
}
.artykuly-do-menu ul li img {
	min-width: 90px;
	min-height: 90px;
	object-fit: contain;
	transition: .35s;
}
.artykuly-do-menu ul li .moduleItemIntrotext {
	overflow: hidden;
}
.artykuly-do-menu ul li:hover img {
	transform: scale(1.1);
}
.artykuly-do-menu .moduleItemTitle {
	padding-top: 4px;
	order: 2;
}
.artykuly-do-menu ul li:hover .moduleItemTitle {
	color: var(--primary) !important;
}
.theme-blackwhite.mod_jux_megamenu .megamenu-wrapper ul.level1 li.wozki-elektryczne-submenu>.childcontent {
	top: -120px !important;
}
.ue-page .itemImageBlock {
	display: none;
}
.mod_jux_megamenu :is(#Sklep, #BaffinAcademy, #Edukacja, #Blog, #Education) {
	display: none;
}
.visually-hidden {
	font-size: 0;
	display: block;
}
.btn.dropdown-toggle {
	background: #fff;
	color: var(--black) !important;
	cursor: pointer;
	padding: 0 3px;
	font-size: var(--textSm);
	font-weight: 600;
}
.header-2 {
	display: flex;
	align-items: center;
}
.kontakt-top .wf-columns {
	gap: 2rem;
	align-items: center;
}
.kontakt-top a {
	font-size: var(--textSm);
	font-weight: 600;
}
.kontakt-top .wf-columns .wf-column:nth-child(2) {
	min-width: 160px;
}
.kontakt-top .wf-columns .wf-column img {
	margin-right: 3px;
	translate: 0 -2px;
}
.mod_jux_megamenu .megamenu-wrapper ul.level1 li.megacss {
	list-style: none;
}
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > a.megacss {
	display: flex;
	box-shadow: 7px 8px 14px 0px rgba(0, 0, 0, 0.03);
	padding: 14px 10px !important;
}
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > a.megacss .image-title {
	font-weight: 400;
	font-size: var(--textMd);
}
.level0 > li > .childcontent > .childcontent-inner-wrap > .childcontent-inner > .megacol {
	width: 336px !important;
}
.level1 > li > .childcontent > .childcontent-inner-wrap > .childcontent-inner > .megacol {
	width: 336px !important;
}
.table-flex tr, .extra-field tr {
    display: flex;
	gap: 2rem;
}
.table-flex td, .extra-field td {
    flex: 1 0;
    text-align: justify;
}
.extra-field td iframe[src*='youtube'] {
    width: auto !important;
    height: auto !important;
}
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > a.megacss:hover .image-title {
	color: var(--primary);
}
.mod_jux_megamenu .megamenu-wrapper .megacol {
	border: 1px solid var(--gray);
}
div.mod-languages .dropdown-menu {
	background: #fff;
	z-index: 1000;
}
.caret {
	display: inline-block;
	background: url(../../../images/ikony/caret-black.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 10px;
	rotate: 90deg;
	position: absolute;
	margin-top: 4px;
	margin-left: 2px;
	border: 5px solid transparent;
	box-sizing: content-box;
}
.eb-inst {
	z-index: 2001;
}
.lang-block a {
	font-size: var(--textSm);
	font-weight: 600;
}
.lang-block img {
	width: 23px;
	margin-right: 4px;
	translate: 0 -2px;
}
.mod_jux_megamenu.horizontal ul.level0 .haschild .image-title {
	background: none !important;
	padding-right: 0 !important;
}
.mod_jux_megamenu.horizontal ul.level0 > li > .haschild > .menu-inner > .image-title:after {
	content: '';
	display: inline-block;
	width: 18px;
	height: 12px;
	padding-left: 7px;
	box-sizing: content-box;
	background: url(../../../images/ikony/chevron-down.svg) no-repeat right center;
	background-size: 18px;
}
.mod_jux_megamenu.horizontal ul.level0 a.haschild .image-title,
.mod_jux_megamenu.horizontal ul.level0 span.haschild .image-title {
	padding-right: 24px;
}
.navbar .theme-blackwhite.mod_jux_megamenu .megamenu-wrapper .js-megamenu,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level0>li.megacss.active>a.megacss {
	background: var(--lighterBlue) !important;
}
.baffin-academy-blog-linki a {
	font-size: var(--textSm);
	padding: 12px 15px;
	display: block;
	white-space: nowrap;
}
.baffin-academy-blog-linki .wf-columns {
	gap: 1rem;
}
.js-finder-search-query {
	background: var(--lighterBlue);
	border: 1px solid var(--black) !important;
	border-radius: 8px !important;
	height: 3.2rem;
	font-size: var(--textSm);
	width: clamp(150px, 300px, 300px) !important;
	background: url(../../../images/ikony/search.png) no-repeat;
	background-origin: content-box;
	background-position: right;
	background-size: 21px;
}
.js-finder-search-query::placeholder {
	color: var(--black);
	font-style: italic;
	font-size: var(--textSm) !important;
}
.splide__pagination {
	gap: .7rem;
}
.splide__pagination li {
	background-image: none;
	padding-left: 0;
}
.splide__pagination__page {
	background: #fff;
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid var(--primary);
}
.splide__pagination__page.is-active {
	background: var(--primary);
	transform: none;
}
.baner-video {
	position: relative;
	/* height: 540px; */
	height: calc(100vh - 191px);
	min-height: 540px;
}
.baner-video video {
	height: 100% !important;
	object-fit: cover !important;
}
.baner-video .btn {
	margin-top: 50px;
	margin-left: 156px;
}
.baner-video .desc {
	margin-top: 30px;
}
.baner-video .content {
	padding-right: var(--margin);
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 2.7rem;
	width: 756px;
}
.banery-glowna .img,
.banery-glowna video {
	position: absolute;
	object-fit: contain;
	right: 0;
	width: initial;
	height: 700px;
}
.banery-glowna .mask {
	width: 100%;
	position: absolute;
	left: -34vw;
}
.banery-glowna .splide__slide {
	height: 700px;
}
.banery-podstrony .splide__slide,
.banery-podstrony .img {
	height: 540px;
}
.banery-glowna .container {
	height: 100%;
}
.banery-glowna .content {
	padding-left: 0;
	text-align: left;
	justify-content: center;
	max-width: 915px;
}
.banery-glowna .title {
	color: var(--black);
	text-shadow: none;
	font-size: var(--headerLgPlus);
	font-weight: 600;
	line-height: 1.35;
}
.banery-glowna .desc {
	color: var(--black);
	text-shadow: none;
	font-size: var(--textLg);
	margin-right: 60px;
	font-weight: 500;
}
:is(.banery-glowna, .opinie, .custom-splide-navigation) .splide__arrows {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 30px;
	left: 50%;
	translate: -50% 0;
}
:is(.banery-glowna, .opinie, .custom-splide-navigation) .splide__arrow {
	position: initial;
}
:is(.banery-glowna, .opinie, .custom-splide-navigation) .splide__pagination {
	position: initial;
}
.splide__pagination__page {
	opacity: 1;
}
.licznik .item {
	background: none;
	padding: 0;
	padding-left: 2rem;
	padding-right: 2rem;
}
.licznik .item:hover {
	background: none;
}
.licznik .counter {
	color: var(--primary);
	font-size: var(--headerMdPlus);
	font-weight: 600;
}
.licznik .item .item-title {
	font-size: var(--textMd);
	font-weight: 500;
	margin-bottom: 0;
	margin-top: 1.8rem;
}
.licznik .item:hover .item-title {
	color: var(--black);
}
.grid-text {
	max-width: 980px;
	margin: 0 auto 4rem;
	text-align: center;
}
.grid-text h2,
.grid-text .pre-header {
	text-align: center;
}
.grid-text .text {
	font-size: var(--textLg);
	margin-bottom: 0;
}
.grid-container .item {
	padding: 0;
	border-radius: 0;
}
.grid-container .item,
.grid-container .item:hover {
	background: none;
}
.grid-container .item-img-wrapper {
	border: none;
	overflow: hidden;
	background: none;
	border-radius: 0;
}
.grid-container .item:hover .item-title,
.grid-container .item:hover .item-desc {
	color: var(--black);
}
.grid-container .read-more-wrapper {
	text-align: center;
	margin-top: 4rem;
}
.nasza-oferta .item {
	padding: 0;
	text-align: center;
}
.nasza-oferta .item,
.nasza-oferta .item:hover {
	background: none;
}
.nasza-oferta .item-img-wrapper {
	width: 180px;
	height: 180px;
	margin: 0 auto;
}
.nasza-oferta .item-img-wrapper img {
	width: 180px;
	height: 180px;
	object-fit: cover;
}
.nasza-oferta .item-title {
	font-weight: 500;
	font-size: var(--textMd);
	margin-top: 1.5rem;
	margin-bottom: 0;
}
.nasza-oferta .item:hover .item-title {
	color: var(--primary);
}
.nasza-oferta .item:hover img {
	filter: brightness(1.1);
}
.pre-header {
	font-weight: 500;
	color: var(--primary);
	font-size: var(--textMd);
	margin-bottom: 1rem;
}
.bg-gray {
	background: var(--lightGray);
}
.t4-section:has(.bg-gray) {
	background: var(--lightGray);
}
.bg-blue {
	background: var(--primary);
}
.t4-section:has(.bg-blue) {
	background: var(--primary);
}
.bg-light-blue {
	background: var(--lighterBlue);
}
footer:has(.bg-light-blue) {
	background: var(--lighterBlue);
}
#Neurorehabilitacja .submenu-column,
#Rowerytrójkołowe .submenu-column,
#Dotacjeidofinansowania .submenu-column {
	transform: translateY(-70%) !important;
}
.loga-przewijane {
	margin-top: 5rem;
}
.loga-przewijane img {
	height: 30px;
	object-fit: contain;
}
.loga-przewijane img:hover {
	scale: initial;
}
.splide__arrow {
	background: url(../../../images/ikony/caret-blue.svg) no-repeat;
	background-size: 10px 18px;
	background-position: center;
	opacity: 1;
	height: 30px;
	width: 30px;
	transform: none;
}
.splide__arrow--prev {
	transform: rotateY(180deg);
}
.splide__arrow--prev {
	transform: rotateY(180deg);
}
.loga-przewijane .splide__arrow--prev,
.loga-przewijane .splide__arrow--next {
	top: var(--gapMd);
}
.loga-przewijane .splide__arrow--prev {
	left: -20px;
}
.loga-przewijane .splide__arrow--next {
	right: -20px;
}
.loga-przewijane .splide__track {
	margin-left: 3.5rem;
	margin-right: 3.5rem;
}
.co-nas-wyroznia .item {
	padding: 0;
}
.co-nas-wyroznia .item-img-wrapper {
	margin: 0 auto;
}
.co-nas-wyroznia .item-img-wrapper,
.co-nas-wyroznia .item-img-wrapper img {
	width: 55px;
	height: 55px;
}
.co-nas-wyroznia .item:hover img {
	scale: none;
}
.co-nas-wyroznia .item-title {
	font-size: var(--textMd);
	font-weight: 500;
	margin-top: 1.6rem;
	margin-bottom: 0;
}
.co-nas-wyroznia .item:hover .item-title {
	color: var(--black);
}
.columns-2 .wf-columns {
	align-items: center;
	font-size: var(--textLg);
}
.columns-2 .wf-columns img {
	max-width: 480px;
	height: auto;
	margin: 0 auto;
	display: block;
}
.columns-2 .btn {
	margin-top: 1rem;
}
.jak-dzialamy .item-img-wrapper,
.jak-dzialamy .item-img-wrapper img {
	width: 25px;
	height: 25px;
}
.jak-dzialamy .grid-wrapper {
	max-width: 635px;
	margin: 0 auto;
	column-gap: 7.5rem;
	row-gap: 3rem;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(var(--itemsCount), 1fr);
	grid-auto-flow: column;
	padding-left: 3.2rem;
}
.jak-dzialamy .krok-wrapper {
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	font-weight: 700;
	text-transform: uppercase;
}
.jak-dzialamy .item {
	text-align: left;
}
.jak-dzialamy .item:hover img {
	scale: none;
}
.jak-dzialamy .item-title {
	margin-top: 1.4rem;
	margin-bottom: 0;
	font-size: var(--textLg);
	font-weight: 600;
}
.jak-dzialamy .item-desc {
	font-size: var(--textLg);
}
.opinie .pre-header,
.opinie h2,
.opinie .desc {
	color: #fff;
}
.opinie .grid-text {
	max-width: 1100px;
}
.opinie .splide__track {
	margin-bottom: 3rem;
}
.opinie .item {
	padding: 3.1rem 2.2rem;
	background: #fff;
	height: 100%;
}
.opinie .title-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.opinie .title {
	font-size: var(--textLg);
}
.opinie img {
	aspect-ratio: auto;
	width: 40px;
}
.opinie .splide__pagination__page.is-active {
	background: var(--black);
}
.opinie .splide__arrow {
	filter: grayscale(1) brightness(10);
}
.produkty-przewijane .item,
.productsList .subCategoryContainer {
	border: 1px solid var(--gray);
	padding: 2.3rem;
	position: relative;
}
.produkty-przewijane .item:hover .logo {
	scale: none;
}
.produkty-przewijane .img-wrapper,
.productsList .subCategoryContainer .subCategoryImage {
	overflow: visible;
	text-align: center;
}
.produkty-przewijane .img,
.productsList .subCategoryImage img {
	aspect-ratio: 122/171;
	width: auto;
	max-width: 122px;
	object-fit: contain;
}
.produkty-przewijane .img {
	scale: 1.1;
}
.produkty-przewijane .item:hover .img {
	scale: 1.2;
}
.com-finder__results .subCategoryImage img {
	aspect-ratio: 1/1;
}
html[lang="en-gb"] .dzial-eksportu {
	padding-top: 0 !important;
}
.produkty-przewijane .logo,
.productsList .subCategoryContainer .logo,
.productView .logo {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	aspect-ratio: auto;
	max-width: 70px;
	height: auto;
	object-fit: contain;
}
.produkty-przewijane .title,
.productsList .subCategoryContainer .title {
	font-size: var(--textLg);
	font-weight: 700;
	margin-top: 2.4rem;
	margin-bottom: 1rem;
}
.produkty-przewijane .text {
	font-size: var(--textSm);
}
.produkty-przewijane .btn {
	margin-top: 1.5rem;
}
.produkty-przewijane .splide__arrows {
	bottom: calc(var(--gap) - 5rem);
}
.poznaj-wyroby-medyczne h3 {
	color: #fff;
}
.poznaj-wyroby-medyczne .wf-columns {
	align-items: center;
}
.poznaj-wyroby-medyczne .wf-column * {
	color: #fff;
}
.poznaj-wyroby-medyczne .wf-column:first-child {
	width: 860px;
}
.ja-social-share-inner {
	display: none;
}
.stopka .wf-columns {
	column-gap: 0;
}
.stopka .wf-column:nth-child(1) {
	max-width: 60px;
}
.stopka .wf-column:nth-child(2) {
	min-width: 295px;
	padding-left: 15px;
}
.stopka .wf-column * {
	font-size: var(--textSm);
}
.stopka h4 {
	font-weight: 400;
	margin-bottom: 1.5rem;
	font-size: var(--textLg) !important;
}
.stopka li a {
	font-size: var(--textSm);
}
.stopka .kontakt-top a {
	color: var(--primary);
}
.stopka ul li:before {
	translate: 0 .45rem;
}
.stopka .kontakt-top .wf-columns {
	flex-direction: column;
	align-items: flex-start;
}
.stopka .kontakt-top .wf-column {
	max-width: 100%;
}
.stopka .wf-column:nth-child(3) {
	padding-left: 7rem;
}
.stopka .wf-column:nth-child(4) {
	padding-right: 7rem;
}
.stopka .kontakt-top .wf-column:nth-child(2) {
	padding-left: 0;
}
.stopka .kontakt-top img {
	filter: var(--filterPrimary);
}
.copyrights {
	padding: 1rem;
	text-align: center;
	background: var(--lightBlue);
}
.copyrights * {
	font-size: var(--textXsPlus);
}
.menu-boczne-oferta li:before {
	content: none;
}
.menu-boczne-oferta img {
	width: 4.3rem;
	margin-right: .7rem;
}
@media(min-height: 910px) {
	.menu-boczne-oferta nav {
		position: sticky;
		top: 10rem;
	}
}
.menu-boczne-oferta .dropdown-menu {
	display: none !important;
}
.menu-boczne-oferta li a {
	display: flex;
	align-items: center;
	padding: .7rem 1.1rem;
	box-shadow: 3px 3px 5px 0px rgba(213, 211, 211, 0.38);
}
.menu-boczne-oferta li a:hover {
	background: var(--gray2);
}
.menu-boczne-oferta .item-149 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu149:hover .image-title {
	color: #dc413e;
}
.menu-boczne-oferta .item-151 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu151:hover .image-title {
	color: #e3ac47;
}
.menu-boczne-oferta .item-150 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu150:hover .image-title {
	color: #7f3f98;
}
.menu-boczne-oferta .item-152 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu152:hover .image-title {
	color: #87c763;
}
.menu-boczne-oferta .item-460 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu460:hover .image-title {
	color: #a02c48;
}
.menu-boczne-oferta .item-464 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu464:hover .image-title {
	color: #a7a9ac;
}
.menu-boczne-oferta .item-153 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu153:hover .image-title {
	color: #e36d4a;
}
.menu-boczne-oferta .item-260 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu260:hover .image-title {
	color: #4ac2c6;
}
.menu-boczne-oferta .item-154 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu154:hover .image-title {
	color: #0095da;
}
.menu-boczne-oferta .item-317 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu317:hover .image-title {
	color: #ec008c;
}
.menu-boczne-oferta .item-155 a:hover,
:is(#jux_megamenu115, #jux_megamenu159) .megamenu-wrapper ul.level1 li.megacss > #menu155:hover .image-title {
	color: #293c92;
}
.menu-boczne-oferta li a span {
	display: flex;
	align-items: center;
}
.menu-boczne-oferta li.current a,
.menu-boczne-oferta li.active a {
	background: var(--primary);
	color: #fff;
}
.menu-boczne-oferta li.current a:hover,
.menu-boczne-oferta li.active a:hover {
	color: #fff;
}
.menu-boczne-oferta .image-title {
	text-transform: initial;
	box-shadow: none;
	text-shadow: none;
}
.menu-boczne-oferta .active .image-title {
	color: #fff;
}
.productsList .itemListSubCategories {
    display: grid;
    grid-template-columns: repeat(2, min(380px, 50%));
	justify-content: flex-end;
    gap: 2rem;
}
.extra-field-wrapper.productsList .itemListSubCategories {
    grid-template-columns: repeat(3, min(380px, 50%));
}
.productsList .subCategoryImage img {
	max-width: 200px;
	transition: .35s;
}
.productsList .subCategoryContainer:hover .subCategoryImage img {
	scale: 1.1;
}
.productsList .karta-produktu-info {
	font-size: var(--textSm);
	white-space: pre-line;
	margin-bottom: 1rem;
}
.subCategoryContainer:hover .karta-produktu-info {
	color: var(--black);
}
.pobierz-nasz-najnowszy-katalog .wf-columns {
	align-items: center;
}
.pobierz-nasz-najnowszy-katalog p {
	font-weight: 700;
	color: var(--primary);
	font-size: var(--headerMdPlus);
	max-width: 580px;
	margin: 0 auto;
}
.pobierz-nasz-najnowszy-katalog .wf-column:nth-child(2) a {
	position: relative;
	display: inline-block;
	background: #fff;
}
.pobierz-nasz-najnowszy-katalog .wf-column:nth-child(2) a:hover img {
	opacity: .55;
}
.pobierz-nasz-najnowszy-katalog .wf-column:nth-child(2) a:hover:after,
.droppicsgallerydefault .wimg a:hover:after,
.productView .itemImage:hover:after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	background: rgba(0, 0, 0, 0.5) url(../../../images/ikony/download.png) no-repeat;
	background-size: 30px;
	background-position: center;
}
.droppicsgallerydefault .wimg a:hover:after,
.productView .itemImage:hover:after {
	background: rgba(0, 0, 0, 0.5) url(../../../images/ikony/search2.png) no-repeat;
	background-size: 30px;
	background-position: center;
}
.mapa-kolumny .content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.mapa-kolumny .column-2 {
	padding: 4.3rem;
	background: var(--lightBlue);
}
.mapa-kolumny .content-title {
	font-size: var(--headerSmPlus);
	font-weight: 600;
	margin-bottom: 2rem;
}
.mapa-kolumny .content-desc {
	font-size: var(--textLg);
	font-weight: 600;
	margin-bottom: 1.2rem;
}
.mapa-kolumny .content-phone,
.mapa-kolumny .content-email {
	display: block;
	font-size: var(--textMd);
	font-weight: 600;
	margin-bottom: 1.6rem;
	color: var(--primary);
}
.mapa-kolumny .content-phone img,
.mapa-kolumny .content-email img {
	filter: var(--filterPrimary);
	margin-right: 7px;
}
.mapa-kolumny .content-location {
	font-size: var(--textMd);
	white-space: pre-line;
}
.mapa-kolumny .content-location img {
	float: left;
	margin-bottom: 23px;
}
.mapa-kolumny .column-2 img {
	width: 20px;
	margin-right: 7px;
}
.mapa-kolumny .content-btn {
	text-align: center;
	margin-top: 2.3rem;
}
.mapa-kolumny .read-more-wrapper {
	text-align: center;
	margin-top: 3rem;
}
.submenu-placeholder {
	padding-top: 7.9rem;
	height: 62px;
}
.products-submenu {
	position: sticky;
	top: 105px;
	z-index: 7;
	display: flex;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--primary);
	margin-top: 7.9rem;
}
.products-submenu > a {
	padding: 1.8rem 1rem;
	font-size: var(--textMd);
}
.upper-offer {
	display: grid;
	grid-template-columns: 280px 1fr;
	column-gap: 12rem;
}
.offer-back {
	font-size: var(--textSm);
	margin-bottom: 1.1rem;
	display: inline-block;
}
.offer-back img {
	rotate: -180deg;
}
.offer-back:hover {
	filter: var(--filterPrimary);
}
.productsList .catDescription {
	display: none;
}
.productView .itemTitle {
	font-size: var(--headerLgPlus);
	font-weight: 400;
	text-align: center;
}
.offer-intro-columns {
	display: grid;
	grid-template-columns: 300px 400px;
	gap: 8.2rem;
}
.kolorystyka {
	margin-top: 2rem;
}
.kolorystyka p {
	display: flex;
	justify-content: center;
	gap: 1.8rem;
}
.kolorystyka img {
	width: 22px;
}
.productView .droppicsgallerydefault {
	margin-top: 4rem;
}
.productView .opis-wstep li {
	margin-bottom: 0.4rem;
	font-size: var(--textSmPlus);
}
/* <p> has next item <ul> */
.productView .opis-wstep p:has(+ ul) {
	margin-bottom: 0.4rem;
}
.offer-przyciski-wrapper {
	margin-top: 2.5rem;
	display: flex;
	gap: 2rem;
}
.opis-pod-przyciskami {
	margin-top: 2.5rem;
	font-size: var(--textXs);
}
.extra-field-wrapper {
	margin-top: 6rem;
}
.extra-field-header {
	font-size: var(--textLg);
	font-weight: 500;
	color: var(--primary);
	padding-bottom: 0.7rem;
	border-bottom: 2px solid var(--primary);
	margin-bottom: 4.5rem;
}
.productView .itemImage {
	display: block;
	position: relative;
	cursor: pointer;
}
#colorbox.droppics #cboxClose {
	background: var(--lightGray) url(../../../images/ikony/x-blue.png) no-repeat center;
	background-size: 22px;
	width: 42px;
	height: 42px;
	bottom: auto;
	right: 1rem;
	top: 1rem;
	left: auto;
}
#cboxOverlay.droppics {
	background-color: rgba(56, 50, 50, 0.443);
	backdrop-filter: blur(4px);
	opacity: 1 !important;
}
#colorbox.droppics #cboxContent {
	border-radius: 0;
}
#colorbox.droppics #cboxPrevious,
#colorbox.droppics #cboxNext {
	background: none !important;
	opacity: 1 !important;
}
#colorbox.droppics #cboxPrevious:after,
#colorbox.droppics #cboxNext:after {
	content: '';
	position: absolute;
	display: block;
	top: calc(50% - 3rem);
	right: 10px;
	width: 6rem;
	height: 6rem;
	background: var(--lightGray) url(../../../images/ikony/chevron-up-blue.svg) no-repeat !important;
	background-size: 5rem !important;
	background-position: 6px 4px !important;
}
#colorbox.droppics #cboxNext:after {
	rotate: 90deg;
}
#colorbox.droppics #cboxPrevious:after {
	rotate: -90deg;
	background-position: 4px 4px !important;
}
.specyfikacja-wrapper table tr:nth-child(odd) {
	background: var(--lighterBlue2) !important;
}
.specyfikacja-wrapper table {
	width: 790px !important;
	margin: 0 auto;
}
.specyfikacja-wrapper td {
	padding: 1.3rem 1rem;
	width: 50%;
	text-align: center;
}
.extra-field.specyfikacja-wrapper table td:nth-child(1) {
	font-weight: 600 !important;
	text-transform: uppercase;
}
#Cechy + .extra-field li::marker {
	color: var(--primary);
}
div.itemAttachmentsBlock {
	padding-top: 10px;
	border-bottom: 0;
}
div.itemAttachmentsBlock .jattachment {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.8rem;
}
div.itemAttachmentsBlock .jattachment form {
	height: 130px;
	border: 0 !important;
	display: flex;
	align-items: center;
}
div.itemAttachmentsBlock .jattachment form .__name {
	height: 100%;
	width: 100%;
}
div.itemAttachmentsBlock .jattachment form a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding-left: 150px;
	padding-left: 80px;
	padding-right: 5px;
	font-weight: 600;
	background: url(../../../images/ikony/pdf.png) no-repeat 16px;
	background-size: 44px;
	border: 1px solid var(--gray);
	transition: .35s;
}
div.itemAttachmentsBlock .jattachment form a:hover {
	color: var(--primary);
	background-size: 50px;
}
div.itemAttachmentsBlock .jattachment form a:after {
	content: "Pobierz";
	display: inline-block;
	margin-top: .7rem;
	color: var(--primary);
	background: url(../../../images/ikony/download-blue.png) no-repeat;
	background-size: 19px;
	background-position: right;
	padding-right: 30px;
	width: fit-content;
}
html[lang="en-GB"] div.itemAttachmentsBlock .jattachment form a:after {
	content: "Download";
}
.jattachment .__size {
	display: none;
}
.jfile a.__title {
	margin-left: 0;
}
.jfile .__name {
	font-weight: 400;
}
.jattachment .jfile {
	padding: initial;
}
.jattachment {
	border: none;
}
.zapytaj-o-produkt-columns:has(.specjalista) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.specjalista {
	position: sticky;
	top: 30%;
}
.specjalista h4 {
	font-size: var(--textLg);
	font-weight: 700;
	margin-bottom: 3.5rem;
}
.specjalista-content {
	font-size: var(--textSm);
}
.specjalista-specjalizacja {
	margin-bottom: 1.5rem;
	font-size: var(--textMd);
	font-weight: 600;
}
.specjalista-telefon-email {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
}
.specjalista-telefon, .specjalista-email {
	color: var(--primary);
	font-weight: 600;
}
.specjalista-telefon img,
.specjalista-email img {
	filter: var(--filterPrimary);
	margin-right: .7rem;
}
.specjalista-wrapper {
	display: grid;
	grid-template-columns: 17rem 3fr;
	grid-gap: 2rem;
}
.specjalista-wrapper > img {
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: top;
	height: 100%;
	width: 100%;
	max-height: 170px;
}
.catDescriptionShortBtn {
	cursor: pointer;
	color: #626669 !important;
	padding-top: 18px !important;
	padding-bottom: 18px !important;
	font-size: 14px !important;
	text-transform: initial !important;
	border-radius: 4px !important;
	font-weight: 400 !important;
	background: #fff !important;
	border: 1px solid #ddd !important;
	width: 100% !important;
}
.catDescriptionShortBtn:hover {
	border-color: #0095da !important;
}
.dzial-eksportu .specjalista {
	margin-bottom: 2rem;
}
.map-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.map-wrapper .addresses-wrapper {
	order: -1;
}
.map-wrapper .addresses-wrapper ul {
	padding-left: 0;
}
.kontakt-page .specjalista {
	position: initial;
	height: 175px;
}
.map-wrapper li {
	list-style: none;
}
.itemBody h1 {
	font-size: var(--headerXl);
	margin-bottom: 6.2rem;
}
.wojewodztwo-title {
	font-size: var(--textLg);
	font-weight: 700;
	margin-bottom: 2rem;
}
.wojewodztwo-title span {
	color: var(--primary);
	text-transform: lowercase;
}
.css-map {
	scale: .95;
	translate: -30px;
}
.css-map-container {
	width: 600px !important;
}
.css-map-container a {
	text-transform: lowercase;
}
.map-wrapper .css-map-container li.focus .bg {
	filter: brightness(0) saturate(100%) invert(1);
}
.map-wrapper .css-map-container li.active-region .bg {
	filter: var(--filterPrimary);
}
.map-h2 {
	font-size: var(--textLg);
	font-weight: 700;
	text-align: center;
	margin-bottom: 0;
	margin-top: 2px;
}
.dzial-eksportu .wf-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
.dzial-eksportu .wf-column {
	padding: 4.2rem;
	padding-left: 1rem;
	box-shadow: 5px 5px 16px 0px rgba(215, 215, 215, 0.35);
	border: 1px solid var(--gray);
}
.dzial-eksportu h3 {
	font-weight: 700;
	font-size: var(--headerSm);
	margin-bottom: 3.9rem;
	color: var(--black);
}
.dzial-eksportu .specjalista-telefon-email {
	flex-direction: column;
	align-items: flex-start;
}
.dzial-eksportu .btn {
	border-width: 1px !important;
}
.formularz-kontaktowy h3 {
	font-weight: 600;
	font-size: var(--textLg);
	color: var(--black);
	margin-bottom: 1.5rem;
}
.formularz-kontaktowy p {
	margin-bottom: .7rem;
}
.formularz-kontaktowy .wf-column:first-child {
	padding-top: 2.5rem;
}
.formularz-kontaktowy .wf-column:first-child a {
	color: var(--primary);
}
.formularz-kontaktowy .wf-column:first-child a img {
	filter: var(--filterPrimary);
}
.mapa-google .wf-column:nth-child(2) p {
	height: 100%;
}
.mapa-google h2 {
	margin-bottom: 3.5rem;
}
.kategorie-edukacja {
	flex-direction: row;
	margin-bottom: 2.5rem;
}
.kategorie-edukacja li {
	margin-bottom: 0;
}
.kategorie-edukacja li:before {
	content: none;
}
.kategorie-edukacja li a {
	padding: 0.2rem 1.5rem;
	font-size: var(--textLg);
	border-left: 3px solid var(--primary);
}
.kategorie-edukacja li:last-child a {
	border-right: 3px solid var(--primary);
}
.kategorie-edukacja li.current a {
	background: var(--primary);
	color: #fff;
}
.b24-form-wrapper {
	background: var(--lighterBlue2) !important;
	padding-bottom: 3rem;
	border-bottom: 0 !important;
}
.b24-form-wrapper input, .b24-form-wrapper textarea {
	background: #fff !important;
	border-radius: 0 !important;
}
.b24-form-wrapper textarea {
	min-height: 200px;
}
.b24-form-wrapper * {
	font-family: 'Poppins', sans-serif, system-ui, -apple-system !important;
}
.b24-form-wrapper .b24-form-header-title {
	font-weight: 700 !important;
	font-size: var(--headerSm) !important;
}
.b24-form-wrapper .b24-form-control-desc {
	font-size: var(--textSm) !important;
}
.b24-form-wrapper .b24-form-control-container:has(input[type="checkbox"]) {
	margin-left: 2rem;
}
.b24-form-wrapper .b24-form-btn {
	background: var(--primary) !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: var(--textSmPlus) !important;
	padding: 1.1rem .5rem !important;
	display: inline-block !important;
	text-align: center !important;
	width: 21rem !important;
	border-radius: 4rem !important;
	border: 2px solid var(--primary) !important;
}
.b24-form-wrapper .b24-form-btn:hover {
	background: #fff !important;
	color: var(--primary) !important;
}
.b24-form-wrapper .b24-form-btn-block {
	text-align: center;
}
.table-flex tr {
	display: flex;
}
.table-flex td {
    flex: 1 0;
}
.partnerzy-page.itemView tr {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.partnerzy-page.itemView td:last-child {
	flex: 2 0;
}
.itemBody {
	padding-bottom: var(--gap);
}
.kontakt-page .itemBody {
	padding-bottom: 0;
}
.ue-page .catItemView .catItemImage,
.blog-page .catItemView .catItemImage {
	display: block;
	overflow: hidden;
}
.ue-page .catItemView .catItemImage img,
.blog-page .catItemView .catItemImage img {
	object-fit: contain;
	height: 250px !important;
	transition: .35s;
}
.blog-page .catItemView .catItemImage img {
	object-fit: cover;
}
.ue-page div.catItemHeader .catItemTitle,
.blog-page div.catItemHeader .catItemTitle {
	font-size: var(--textMd);
	text-align: center;
	color: var(--black);
}
.ue-page div.catItemHeader .catItemTitle,
.blog-page div.catItemHeader .catItemTitle {
	font-weight: 400;
}
.ue-page #itemListLeading,
.blog-page #itemListLeading {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
}
.ue-page .itemContainer,
.blog-page .itemContainer {
	width: 100% !important;
}
div.itemHeader span.itemDateCreated {
	font-size: var(--textSm);
	display: block;
	margin-bottom: 1rem;
}
div.catItemHeader span.catItemDateCreated {
	display: block;
	margin-top: 1rem;
	font-size: var(--textXs);
}
.ue-page a.catItemView,
.blog-page a.catItemView {
    display: flex;
    flex-flow: column;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    padding: 1.5rem;
	height: 100%;
}
.ue-page div.catItemHeader,
.blog-page div.catItemHeader {
	order: 2;
}
.ue-page a.catItemView:hover .catItemTitle,
.blog-page a.catItemView:hover .catItemTitle {
	color: var(--primary);
}
.ue-page a.catItemView:hover img,
.blog-page a.catItemView:hover img {
	scale: 1.1;
}
.blog-page .catItemTitle {
	margin-top: 1rem;
}
.blog-page h1 {
	text-align: center;
}
.blog-page h1:after {
	content: "";
	display: block;
	background: var(--primary);
	width: 50%;
	height: 3px;
	margin-top: 1rem;
	margin-bottom: 7rem;
	margin-left: 25%;
}
.blog-page .itemImage {
	text-align: center;
}
.opinie-page.itemView td {
	padding: 2rem 1rem;
	position: relative;
}
.opinie-page.itemView td:first-child:before {
	content: "";
	background: url(../../../images/ikony/chevron-up-blue.svg) no-repeat;
	width: 24px;
	height: 24px;
	display: block;
	background-size: contain;
	position: absolute;
	rotate: 90deg;
	top: calc(50% - 12px);
}
.opinie-page.itemView td:first-child p, .opinie-page.itemView td:first-child h5 {
	padding-left: 4rem;
}
.opinie-page.itemView tr {
	border-bottom: 2px solid #0095da;
	display: flex;
	justify-content: space-between;
}
.opinie-page.itemView img {
	width: 40px;
	min-width: 40px;
	object-fit: contain;
}
.formResponsive textarea, .formResponsive input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem;
	min-height: 35px;
	border-radius: 0;
}
.formResponsive > h2 {
	text-align: center;
}
.rsform-block label {
	font-weight: 400;
}
.formResponsive .formHorizontal .rsform-block {
	margin-bottom: 0;
}
.rsform-type-submitbutton .formBody {
	text-align: left;
}
.formResponsive .formControls {
	position: relative;
}
.formResponsive .formControls input[type="checkbox"] {
	left: 0;
}
.formResponsive .formControls label {
	margin-left: 2rem;
}
.k2ItemsBlock.menu-boczne-aktualnosci {
	position: sticky;
	top: 110px;
}
.t4-module.menu-boczne-aktualnosci {
	padding-bottom: var(--gap);
}
.view-category .t4-module.menu-boczne-aktualnosci {
	padding-bottom: 0;
}
.blog-page .fields-container {
	padding-bottom: var(--gap);
}
.menu-boczne-aktualnosci li a {
	gap: 1rem;
	font-size: var(--textSm);
}
.menu-boczne-aktualnosci img {
	margin-right: 0;
	min-width: 60px;
	width: 60px;
	height: 60px;
	object-fit: cover;
}
.menu-boczne-aktualnosci .modulePretext {
	text-transform: uppercase;
	color: var(--primary);
}
.menu-boczne-aktualnosci .btn {
	margin-top: 1.5rem;
}
ul.lang-block li:before {
	content: none;
}
.captionTitle {
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	padding: 10px 0;
	display: inline-block;
	width: 100%;
}
.captionDesc {
	font-size: 14px;
	text-align: left;
}
.com-finder__search {
	border: 0;
}
.com-finder__search .form-inline,
.com-finder__search .form-inline .input-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.com-finder__search .form-inline .input-group {
	gap: 5rem;
}
.com-finder__search .form-inline .input-group input {
	height: 49px;
	font-size: var(--textMd);
	width: clamp(150px, 450px, 450px) !important;
}
.com-finder {
	padding-bottom: var(--gap);
}
.com-finder.productsList .itemListSubCategories {
    grid-template-columns: repeat(3, min(380px, 50%));
	justify-content: initial;
}
.t4-offcanvas .mod-finder {
	margin: 2rem 1rem;
}
.t4-offcanvas .js-finder-search-query {
	width: 100% !important;
}
.t4-offcanvas .lang-block,
.t4-offcanvas .lang-block li a {
	display: block;
	width: 100%;
}
.t4-offcanvas .mod-languages__select > button,
.t4-offcanvas .mod-languages__select .sub-menu-back {
	display: none !important;
}
.t4-offcanvas .kontakt-top {
	margin: 2rem 1rem;
}
.standard-li .navbar-nav {
	padding-left: 0;
}
.itemView.blog-page :is(p, span) {
	font-size: var(--textMd) !important;
}
.formResponsive .formHorizontal p.formDescription {
	margin-top: 0;
}
.kontakt-page {
	--gap: 10rem;
}
.mask-2 {
	background: #fff;
	position: absolute;
	top: 0;
	right: 47%;
	width: 756px;
	height: 100%;
	opacity: .75;
	transform: skewX(340deg);
}
.ebox-yes-no {
	padding: 15px;
}
@media(max-width: 1800px) {
	.banery-glowna .content {
		max-width: 850px;
	}
}
@media(max-width: 1700px) {
	.banery-glowna .content {
		max-width: 750px;
	}
}
@media(max-width: 1380px) {
	.banery-glowna .mask {
		left: -55vw;
		scale: 1.5;
	}
	.offer-intro-columns {
		grid-template-columns: 1fr 1fr;
	}
	.com-finder.productsList .itemListSubCategories {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media(max-width: 1199px) {
	:root {
		--headerXl: 4.2rem;
		--headerLgPlus: 3.7rem;
		--headerLg: 3.2rem;
		--headerMdPlus: 2.7rem;
		--headerMd: 2.4rem;
		--headerSmPlus: 2.2rem;
		--headerSm: 1.8rem;
		--textLg: 1.6rem;
		--textMd: 1.5rem;
		--textSmPlus: 1.4rem;
		--textSm: 1.3rem;
		--textXsPlus: 1.2rem;
		--gap: 10rem;
		--gapMd: 5rem;
	}
	.products-submenu {
		flex-wrap: wrap;
		padding: 10px 30px;
	}
	.products-submenu > a {
		padding: 5px 10px;
		font-size: var(--textSm);
	}
	.banery-glowna .img,
	.banery-glowna .splide__slide {
		height: 500px;
	}
	.banery-glowna .content {
		max-width: 640px;
	}
	.banery-podstrony .img,
	.banery-podstrony .splide__slide {
		height: 400px;
	}
	.t4-navbar,
	.baffin-academy-blog-linki {
		display: none;
	}
	.header-subrow-1 {
		margin-bottom: 1rem;
	}
	.header-subrow-1, .header-subrow-2 {
		justify-content: flex-start;
	}
	.nasza-oferta .grid-wrapper {
		justify-self: center;
	}
	.stopka .wf-column:nth-child(2),
	.stopka .wf-column:nth-child(3) {
		padding-left: 0;
	}
	.upper-offer {
		gap: 7rem;
	}
	.productsList .itemListSubCategories {
		grid-template-columns: 1fr 1fr;
	}
	.productsList .subCategoryImage img {
		max-width: 122px;
	}
	.offer-intro-columns {
		gap: 3rem;
	}
	.offer-intro-columns {
		grid-template-columns: 1fr;
	}
	.specyfikacja-wrapper table {
		width: 100% !important;
	}
	div.itemAttachmentsBlock .jattachment {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.kontakt-page .specjalista {
		height: initial;
		margin-bottom: 2rem;
	}
	.specjalista-wrapper {
		grid-template-columns: 13.7rem 3fr;
	}
	.css-map-container {
		width: 500px !important;
	}
	.css-map {
		scale: 0.75;
		translate: -75px;
	}
	.baner-video video {
		width: 100%;
	}
	.baner-video .btn {
		margin-left: 0;
	}
}
@media(max-width: 991px) {
	.baner-video video {
		width: 100% !important;
	}
	.banery-glowna .content {
		max-width: 420px;
	}
	.banery-glowna .desc {
		display: none;
	}
	.banery-glowna .title {
		font-size: var(--headerMd);
	}
	.header-2 {
		margin-top: 1rem;
		max-width: 215px;
	}
	.products-submenu {
		top: 130px;
	}
	.zapytaj-o-produkt-columns:has(.specjalista) {
		grid-template-columns: 1fr;
		gap: 5rem;
	}
	.map-wrapper {
		grid-template-columns: 1fr;
	}
	.map-wrapper .addresses-wrapper {
		order: 2;
	}
	.css-map-container {
		margin-top: 0 !important;
	}
	.mapa-google .wf-column:nth-child(2) {
		height: 300px;
	}
}
@media(max-width: 767px) {
	:root {
		--headerXl: 3.2rem;
		--headerLgPlus: 3rem;
		--headerLg: 2.7rem;
		--headerMdPlus: 2.4rem;
		--headerMd: 2.2rem;
		--headerSmPlus: 2rem;
		--headerSm: 1.7rem;
		--textLg: 1.5rem;
		--textMd: 1.4rem;
		--textSmPlus: 1.3rem;
		--textSm: 1.2rem;
		--textXsPlus: 1.1rem;
		--textXs: 1.1rem;
		--gap: 7rem;
		--gapMd: 4rem;
	}
	.css-map {
		translate: -70px;
	}
	.upper-offer {
		grid-template-columns: 1fr;
	}
	.sidebar {
		order: 2;
	}
	.produkty-przewijane .item, .productsList .subCategoryContainer {
		padding: 1rem;
	}
	.table-flex tr, .extra-field tr {
		flex-wrap: wrap;
		gap: 2rem;
	}
	.table-flex td, .extra-field td {
		flex: 100%;
	}
	.banery-glowna .mask {
		left: -58vw;
	}
	.banery-glowna .title {
		font-size: var(--textLg);
	}
	.banery-glowna .content {
		max-width: 56%;
	}
	.baner-video .content {
		max-width: 60%;
	}
	.slideshow .btn:not(.btn.dropdown-toggle) {
		width: 15rem;
		font-size: var(--textSm);
		border-width: 1px;
		padding-top: .5rem;
		padding-bottom: .5rem;
	}
	.banery-glowna .img,
	.banery-glowna .splide__slide {
		height: 300px;
	}
	.splide__pagination,
	.splide__arrows {
		display: none !important;
	}
	.licznik .item .item-title {
		font-size: var(--textSm);
	}
	.grid-counter .grid-wrapper {
		grid-gap: 3rem;
	}
	.jak-dzialamy .grid-wrapper {
		gap: 3rem;
	}
	.columns-2 .wf-columns {
		font-size: var(--textMd);
	}
	.banery-podstrony .img,
	.banery-podstrony .splide__slide {
		height: 250px;
	}
	.menu-boczne-oferta .navbar-nav {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	.mapa-kolumny .content-title,
	.pobierz-nasz-najnowszy-katalog p {
		font-size: var(--headerSm);
	}
	.dwie-kolumny .content-wrapper {
		grid-template-columns: 1fr;
	}
	.mapa-kolumny .column-1 {
		height: 300px;
	}
	div.itemAttachmentsBlock .jattachment {
		grid-template-columns: 1fr 1fr;
	}
	.productView .sidebar {
		order: 0;
	}
	.productView .menu-boczne-oferta {
		display: none;
	}
	.productView .upper-offer {
		gap: 2rem;
	}
	.offer-back {
		margin-bottom: 0;
		font-size: var(--textLg);
		border-bottom: 2px solid var(--primary);
		min-width: 100px;
		padding: 1rem;
		background: var(--lightGray);
	}
	.offer-back:hover {
		filter: none;
		color: #fff;
		background: var(--primary);
	}
	.productView .itemTitle {
		font-size: var(--headerMd);
		text-align: left;
	}
	.b24-form-header-description {
		font-size: var(--textMd) !important;
	}
	.b24-form-wrapper input, .b24-form-wrapper textarea {
		font-size: var(--textMd) !important;
	}
	.b24-form-control-label {
		font-size: var(--textSm) !important;
	}
	#colorbox.droppics #cboxPrevious:after, #colorbox.droppics #cboxNext:after {
		width: 4rem;
		height: 4rem;
		background-size: 3rem !important;
	}
	#colorbox.droppics #cboxPrevious,
	#colorbox.droppics #cboxNext {
		width: 5rem;
	}
	#colorbox.droppics #cboxNext {
		right: -5px;
	}
	.com-finder__search .form-inline .input-group {
		gap: 1rem;
	}
	.com-finder.productsList .itemListSubCategories {
		grid-template-columns: 1fr 1fr;
	}
	.ue-page #itemListLeading, .blog-page #itemListLeading {
		grid-template-columns: 1fr 1fr;
	}
	.dzial-eksportu .wf-columns {
		grid-template-columns: 1fr;
	}
	.kategorie-edukacja {
		flex-direction: column;
		margin-left: auto;
		margin-right: auto;
	}
	.kategorie-edukacja li a {
		display: block;
		text-align: center;
		border-right: 3px solid var(--primary);
		width: 190px;
		font-size: var(--headerSm);
		padding: 1rem .5rem;
	}
	.kategorie-edukacja li:first-child a {
		border-top: 3px solid var(--primary);
	}
	.kategorie-edukacja li:last-child a {
		border-bottom: 3px solid var(--primary);
	}
	.specjalista-content {
		max-width: 58vw;
	}
	.baner-video {
		height: calc(100vh - 123px);
		min-height: initial;
		max-height: 500px;
	}
	.columns-2 .wf-columns img {
		max-width: 100%;
	}
	.produkty-przewijane .img {
		scale: initial;
	}
}
@media(max-width: 579px) {
	.pobierz-nasz-najnowszy-katalog {
		text-align: center;
	}
	.menu-boczne-oferta .navbar-nav {
		grid-template-columns: 1fr;
		width: 100%;
	}
	.specjalista-wrapper > img {
		height: initial;
	}
	.productsList .subCategoryImage img {
		max-width: 185px;
	}
	div.itemAttachmentsBlock .jattachment form a {
		background: none;
		padding: 10px;
	}
	.specjalista-wrapper {
		gap: 1.5rem;
	}
	.stopka .wf-column:nth-child(2) {
		min-width: 100%;
	}
	.com-finder__search .form-inline .input-group input {
		width: 100% !important;
	}
	.com-finder.productsList .itemListSubCategories,
	.productsList .itemListSubCategories {
		grid-template-columns: 1fr;
	}
	.produkty-przewijane .title, .productsList .subCategoryContainer .title {
		margin-top: 1rem;
	}
	.css-map-container {
		height: 390px;
	}
	.css-map {
		position: absolute;
		scale: .5;
		translate: -50% -120px;
		left: 50%;
	}
	.m660 .css-map > li a {
		font-size: var(--headerMd);
	}
	.table-flex tr, .extra-field tr {
		flex-wrap: wrap;
	}
	.table-flex td, .extra-field td {
		flex: 100%;
	}
	.mask-2 {
		right: 38%;
	}
	.css-map-container {
		width: 100% !important;
	}
	.wojewodztwo-title, .map-h2 {
		text-align: center !important;
	}
}
@media(max-width: 439px) {
	h1, h2 {
		font-size: var(--headerMd);
	}
	.map-h2 {
		text-align: left;
	}
	.offer-przyciski-wrapper {
		flex-direction: column;
	}
	.banery-glowna .img, .banery-glowna .splide__slide {
		height: 250px;
	}
	.banery-glowna .img {
		object-fit: cover;
		object-position: right;
		translate: 20px;
	}
	.banery-glowna .mask {
		left: -63vw;
		scale: 1.7;
		top: 40px;
	}
	.slideshow .content {
		gap: 1.7rem;
	}
	header .kontakt-top,
	header .mod-languages,
	header .header-search {
		display: none;
	}
	.logo-image {
		margin-top: 1rem;
		margin-bottom: .3rem;
	}
	.logo-img {
		width: 32px;
	}
	.t4-content {
		padding-top: 62px;
	}
	.nasza-oferta .item-img-wrapper,
	.nasza-oferta .item-img-wrapper img {
		width: 110px;
		height: 110px;
	}
	.grid-text .text {
		font-size: var(--textMd);
	}
	.jak-dzialamy .grid-wrapper {
		gap: 2rem;
		padding-left: 0;
	}
	.produkty-przewijane .title, .productsList .subCategoryContainer .title {
		font-size: var(--textMd);
		font-weight: 600;
	}
	.productsList .itemListSubCategories {
		gap: 1rem;
	}
	.droppicspictures {
		grid-template-columns: repeat(2, 1fr);
	}
	.products-submenu {
		top: 70px;
		padding: 0;
		margin-left: -15px;
		margin-right: -15px;
	}
	.products-submenu > a {
		padding: 3px 7px;
		font-size: var(--textSm);
	}
	.ue-page #itemListLeading, .blog-page #itemListLeading {
		grid-template-columns: 1fr;
	}
	.blog-page .catItemView .catItemImage img {
		object-fit: contain;
	}
	.breadcrumb {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	.css-map-container {
		height: 320px;
	}
	.css-map {
		scale: .4;
		translate: -50% -160px;
	}
	.specjalista-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.specjalista-telefon-email {
		flex-direction: column;
		align-items: center !important;
	}
	.dzial-eksportu .wf-column {
		padding-right: 1rem;
	}
	.dzial-eksportu h3 {
		text-align: center;
	}
	.opinie-page.itemView td:first-child:before {
		content: none;
	}
	.opinie-page.itemView td:first-child p, .opinie-page.itemView td:first-child h5 {
		padding-left: 0;
	}
	.specjalista-wrapper > img {
		height: initial;
		width: initial;
		display: block;
		margin: 0 auto;
	}
	.specjalista-content {
		max-width: 90vw;
	}
}
