* { border: none; margin: 0px; padding: 0px;  }

:root {
  --grey: #cfcfcf;
  --orange: #df5610;
}

html {
	overflow: auto;
	scrollbar-color: var(--orange) #fff;
	scrollbar-width: thin;
}

body {
	width: 100%;
	max-width: 100vw;
	height: 100%;
	font-family: 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #434242;
	line-height: 1.6;
	background-color: #fff;
	overflow: auto;
	overflow-x: hidden;	
}

body.overflow {
	overflow: hidden;
}

div:focus,
a:focus,
input:focus,
textarea:focus,
button:focus {
	outline: 0;
}

a {
	color: #434242;
	font-weight: 300;
	text-decoration: none;
	cursor: pointer;
	
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

a:hover {
	color: var(--orange);
	text-decoration: none;
	
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

h1 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	padding: 0px 0 15px 0;
}

h2 {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.fit {
	width: 100%;
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 3%;
	box-sizing: border-box;
}

#container {
	padding: 0;
}


#homeContent {
	position: relative;
	border: 1px solid #cfcfcf;
}

	#homeContent header {
		width: 100%;
		z-index: 10;
	}

		#homeContent header #header {
			display: flex;
			align-items: center;
		}

		#homeContent header #logo {
			position: relative;
			display: block;
			padding: 20px 3%;
		}
		
			#homeContent header #logo a {
				display: block;
			}
			
			#homeContent header #logo img {
				display: block;
				width: 260px;
				height: auto;
			}
				
		#show_menu {
			margin-left: auto;
			display: inline-flex;
			flex-direction: column;
			justify-content: center;
			align-items: flex-end;
			width: 35px;
			height: 35px;
			margin: 22px 0 22px auto;
			padding-right: 3%;
			text-align: right;
			transition: all 0.3s ease;
		}
		
		header.fixed #show_menu {
			margin: 12px 0 12px auto;
			transition: all 0.3s ease;
		}
		
			#show_menu div#one {
				width: 32px;
				height: 4px;
				border-radius: 5px;
				background: var(--orange);
				
				transform-origin: top right;
				transform: rotate(0);
				transition: all 0.3s ease;
			}
		
			#show_menu div#two {
				width: 22px;
				height: 4px;
				border-radius: 5px;
				background: var(--orange);
				margin: 7px 0;
				transition: all 0.3s ease;
			}
		
			#show_menu div#three {
				width: 32px;
				height: 4px;
				border-radius: 5px;
				background: var(--orange);
				transform-origin: bottom right;
				transform: rotate(0);
				transition: all 0.3s ease;
			}
		
			#show_menu.on div#one {
				width: 35px;
				height: 4px;
				border-radius: 5px;
				background: var(--orange);
				transform: rotate(-42deg);
				transition: all 0.3s ease;
			}
		
			#show_menu.on div#two {
				width: 0%;
				height: 4px;
				border-radius: 5px;
				background: var(--orange);
				margin: 7px 0;
				transition: all 0.3s ease;
			}
		
			#show_menu.on div#three {
				width: 35px;
				height: 4px;
				border-radius: 5px;
				background: var(--orange);
				transform: rotate(42deg);
				transition: all 0.3s ease;
			}
		
		#menu {
			position: absolute;
			z-index: 999;
			top: 75px;
			left: 3vw;
			width: calc(100% - 6vw);
			max-height: 0;
			overflow: hidden;
			visibility: hidden;
			transition: all 0.3s ease;
		}
		
		#menu.on {
			max-height: 100vh;
			overflow: hidden;
			visibility: visible;
			transition: all 0.3s ease;
		}
		
		#menu nav {
			position: relative;
			z-index: 1;
			background: linear-gradient(0deg, rgba(236,236,236,1) 0%, rgba(250,250,250,1) 50%, rgba(236,236,236,1) 100%);
		}
		
			#menu nav ul {
				list-style: none;
				display: flex;
				width: 100%;
				text-align: center;
				flex-direction: column;
				gap: 0;
				padding: 15px 0;
			}
			
			#menu nav ul li {
				position: relative;
				padding: 5px 0;
			}
			
			#menu nav ul li:not(:last-child):after {
				content: "";
				display: block;
				width: 1px;
				height: 100%;
				background: #bbb;
				
				position: absolute;
				top: 0;
				right: 0px;
				z-index: 1;
			}
				
				#menu nav ul li a {
					display: block;
					width: 100%;
					box-sizing: border-box;
					padding: 12px 20px;
					
					font-size: 20px;
					font-weight: 700;
					color: #000;
				}
					
					#menu nav ul li a span {
						display: block;
						padding: 0 15px;
					}
					
				#menu nav ul li.home a {
					position: relative;
					display: block;
					width: 100%;
					height: 50px;
					padding: 12px 20px;
				}
						
					#menu nav ul li.home a:before {
						content: "";
						display: block;
						width: 22px;
						height: 22px;
						
						position: absolute;
						left: 50%;
						top: 50%;
						transform: translate(-50%, -50%);
						
						background-image: url(../graf/ico_home.svg);
						background-position: 50% 50%;
						background-repeat: no-repeat;
						background-size: contain;
						transition: all 0.2s ease;
					}
					
					#menu nav ul li.home a span {
						display: none;
					}
			
				#menu nav ul li.current-page-ancestor a,
				#menu nav ul li.current-menu-item a,
				#menu nav ul li a:hover {
					background: var(--orange);
					color: #fff;
				}
			
				#menu nav ul li.current-menu-item.home a:before,
				#menu nav ul li.home a:hover:before {
					filter: brightness(0) invert(1);
					transition: all 0.2s ease;
				}
					
					
	#homeContent #slider {
		position: relative;
		display: block;
		width: 100%;
		height: 60vw;
		min-height: 400px;
	}

		#homeContent #slider .swiper-slide {
			position: relative;
			display: block;
			
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 50% 50%;
		}
		
			#homeContent #slider .swiper-slide .slider_content {
				position: absolute;
				bottom: 40px;
				left: 3%;
				z-index: 10;
				width: 65%;
			}
			
			#homeContent #slider .swiper-slide .slider_content h2 {
				color: #fff;
				font-size: clamp(35px, 7vw, 85px);
				font-weight: 400;
				line-height: 1;
				text-shadow: 3px 3px #2c2d2d;
			}
		
	#homeContent #slider #pobierzPDF {
		display: none !important;
	}			
			
	#homeContent #kontakt {
		position: fixed;
		right: 3vw;
		bottom: 3vw;
		z-index: 999;
	}
			
		#homeContent #kontakt .kontakt_inner {
			
		}
		
			#homeContent #kontakt .kontakt_inner strong {
				display: none;
			}
			
			#homeContent #kontakt .kontakt_inner a {
				display: block;
				color: #fff;
				width: 55px;
				height: 55px;
				background: var(--orange);
				border-radius: 50%;
				
				background-image: url(../graf/ico_tel.svg);
				background-size: 35px auto;
				background-repeat: no-repeat;
				background-position: 50% 50%;
				
				box-shadow: 0 0 10px 5px rgba(0 0 0 / 0.1);
			}
						
			#homeContent #kontakt .kontakt_inner a span {
				display: none;
			}
				
			#homeContent #kontakt .kontakt_inner em {
				display: none;
			}
			
			
			
#homeBoxes {
	display: grid; 
	grid-auto-columns: 1fr; 
	grid-template-columns: repeat(2, 1fr); 
	grid-template-rows: auto auto auto; 
	gap: 20px 20px; 
}
			
	#homeBoxes .witamy {
		grid-area: 1 / 1 / 2 / 3;
		padding: 0 3%;
		box-sizing: border-box;
	}
		
		#homeBoxes .witamy .witamy_inner {
			border-top: 6px solid #cfcfcf;
			padding: 30px 0;
			display: flex;
			align-items: flex-start;
			gap: 20px;
		}
		
		#homeBoxes .witamy figure {
			position: relative;
			flex-basis: 120px;
			max-width: 120px;
			min-width: 120px;
		}
		
			#homeBoxes .witamy figure:before {
				content: "";
				
				position: absolute;
				z-index: 1;
				right: 0;
				bottom: 0;
				
				display: block;
				width: 0px;
				height: 0px;
				border-style: solid;
				border-width: 0 0 60px 50px;
				border-color: transparent transparent #fff transparent;
				transform: rotate(0deg);
			}
			
			#homeBoxes .witamy figure img {
				display: block;
				width: 100%;
				height: auto;
			}
		
		#homeBoxes .witamy .txt {
			
		}
		
			#homeBoxes .witamy .txt strong {
				display: block;
				font-size: 18px;
				letter-spacing: 1px;
				padding-bottom: 15px;
			}
			

	#homeBoxes .licencja {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 3%;
		box-sizing: border-box;
	}
		
		#homeBoxes .licencja strong {
			display: block;
			font-size: 18px;
			letter-spacing: 1px;
			padding-bottom: 15px;
			text-align: center;

		}
			
		#homeBoxes .licencja a {
			display: block;
			margin: 0 auto;
			width: 100%;
			max-width: 300px;
			height: 150px;
			overflow: hidden;
			border: 2px solid #cfcfcf;
		}
			
		#homeBoxes .licencja a:hover {
			border: 2px solid var(--orange);
		}
			
			#homeBoxes .licencja a img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: 50% 50%;
			}
			
		
			
	#homeBoxes .pobierzPDF {
		grid-area: 2 / 2 / 3 / 3;
		
		background: #f1f1f1;
		padding: 30px;
		box-sizing: border-box;
	}
	
		#homeBoxes .pobierzPDF a {
			text-align: center;
			
			display: block;
		}
		
			#homeBoxes .pobierzPDF a:hover {
				color: #000;
			}
				
				#homeBoxes .pobierzPDF a strong {
					grid-area: 1 / 1 / 2 / 2;
					line-height: 1.3;
				}
				
					#homeBoxes .pobierzPDF a strong br {
						content: "";
						padding: 0 3px;
						display: inline-block;
					}
				
				#homeBoxes .pobierzPDF a span {
					display: block;
					grid-area: 2 / 1 / 3 / 2;
					opacity: 0.7;
					font-size: 12px;
				}
				
				#homeBoxes .pobierzPDF a img {
					grid-area: 1 / 2 / 3 / 3;
					display: inline-block;
					width: 70px;
					height: auto;
					margin-top: 15px;
				}
				
				
	#homeBoxes .kontakt {
		grid-area: 3 / 1 / 4 / 3; 
		 
		padding: 30px 0 0 0;
		text-align: center;
		box-sizing: border-box;
	}
		
		#homeBoxes .kontakt .skontaktujSie {
			background: var(--orange);
			display: block;
			width: 100%;
			
			position: relative;
			z-index: 5;
			
			padding: 30px 3% 30px 3%;
			box-sizing: border-box;
			
			color: #fff;
			line-height: 1.4;
		}
			
			#homeBoxes .kontakt .skontaktujSie strong {
				display: block;
				padding-bottom: 5px;
				font-size: 18px;
				letter-spacing: 1px;
				width: 100%;
				color: #fff;
				text-transform: uppercase;
			}
			
			#homeBoxes .kontakt .skontaktujSie a {
				color: #fff;
				font-weight: 600;
			}
			
			#homeBoxes .kontakt .skontaktujSie a:hover {
				color: #000;
			}
			
@media screen and (max-width: 450px) {
	#homeBoxes {
		display: flex;
		flex-direction: column;
	}
	
	#homeBoxes .licencja {
		padding: 0 3% 20px 3%;
	}
}
			
			
#subpageHeader {
	border: 1px solid var(--grey);
	padding: 0 3%;
	box-sizing: border-box;
}

	#subpageHeader #header {
		position: relative;
		z-index: 5;
		display: flex;
		flex-direction: column;
		gap: 0;
		align-items: center;
	}
			
		#subpageHeader #header #headerBG {
			display: none !important;
		}
					
		#subpageHeader #header #headerMenu {
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			position: relative;
			z-index: 99;
		}
						
			#subpageHeader #header #headerMenu #logo {
				display: block;
				width: 210px;
			}
						
				#subpageHeader #header #headerMenu #logo a {
					display: block;
					width: 100%;
				}
						
					#subpageHeader #header #headerMenu #logo a img {
						display: block;
						width: 100%;
						height: auto;
					}
					
			#subpageHeader #header #headerMenu figure {
				display: block;
				
				position: absolute;
				z-index: -1;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
			}
			
				#subpageHeader #header #headerMenu figure img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: cover;
					object-position: 50% 50%;
				}
			
		#subpageHeader #header #kontakt {
			position: relative;
			z-index: 5;
			width: 100%;
			background: var(--orange);
			box-sizing: border-box;
			
			display: flex;
			justify-content: flex-end;
		}
		
			#subpageHeader #header #kontakt > figure {
				z-index: -1;
				position: absolute;
				left: 0;
				top: 0;
				
				display: block;
				width: 90%;
				height: 100%;
			}
		
				#subpageHeader #header #kontakt > figure img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: cover;
					object-position: 50% 50%;
				}
				
			#subpageHeader #header #kontakt .kontakt_inner {
				box-sizing: border-box;
				color: #fff;
				padding: 30px 20px 30px 70px;
				background: var(--orange);
				clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
			}
			
			
			#subpageHeader #header #kontakt .kontakt_inner #kontaktDane {
				position: fixed;
				right: 3vw;
				bottom: 3vw;
				z-index: 999;
			}
			
				#subpageHeader #header #kontakt .kontakt_inner #kontaktDane strong {
					display: none;
				}
				
				#subpageHeader #header #kontakt .kontakt_inner #kontaktDane a {
					display: block;
					color: #fff;
					width: 55px;
					height: 55px;
					background: var(--orange);
					border-radius: 50%;
					
					background-image: url(../graf/ico_tel.svg);
					background-size: 35px auto;
					background-repeat: no-repeat;
					background-position: 50% 50%;
					
					box-shadow: 0 0 10px 5px rgba(0 0 0 / 0.1);
				}
							
					#subpageHeader #header #kontakt .kontakt_inner #kontaktDane a:hover {
						color: #000;
					}
							
					#subpageHeader #header #kontakt .kontakt_inner #kontaktDane a span {
						display: none;
					}
					
				#subpageHeader #header #kontakt .kontakt_inner #kontaktDane em {
					display: none;
				}
				
			
				
				
				
			#subpageHeader #header #kontakt .kontakt_inner #pobierzPDF a {
				display: grid; 
				grid-auto-columns: 1fr; 
				grid-template-columns: auto 50px;
				grid-template-rows: auto auto; 
				gap: 0px 10px; 
				
				align-items: center;
				
				text-align: right;
				font-size: 14px;
				color: #fff;
			}
				
			#subpageHeader #header #kontakt .kontakt_inner #pobierzPDF a:hover {
				color: #000;
			}
				
				#subpageHeader #header #kontakt .kontakt_inner #pobierzPDF a strong {
					grid-area: 1 / 1 / 2 / 2;
					line-height: 1.3;
				}
				
				#subpageHeader #header #kontakt .kontakt_inner #pobierzPDF a span {
					grid-area: 2 / 1 / 3 / 2;
					opacity: 0.7;
					font-size: 12px;
				}
				
				#subpageHeader #header #kontakt .kontakt_inner #pobierzPDF a img {
					grid-area: 1 / 2 / 3 / 3;
					display: block;
					width: 100%;
					height: auto;
				}

			
			@media screen and (max-width: 500px) {
				#subpageHeader #header #kontakt .kontakt_inner {
					padding: 30px 10px 30px 40px;
				}
				
				#subpageHeader #header #kontakt .kontakt_inner #pobierzPDF a {
					grid-template-columns: auto 40px;
				}
			}
			
			
#content.page {
	padding: 30px 30px 60px 30px;
	box-sizing: border-box;
}

	#content h2,
	#content h3 {
		display: block;
		padding: 25px 0 10px 0;
	}
				
	#content p {
		padding: 7px 0;
	}
				
	#content ul {
		padding: 5px 0 5px 25px;
	}
				
		#content ul li {
			padding: 3px 0;
		}
				
				
.wp-block-file {
	margin: 15px auto;
	width: 100%;
	max-width: 800px;
}
	
	.wp-block-file a {
		display: flex;
		align-items: center;
		width: 100%;
		padding: 12px 15px;
		box-sizing: border-box;
		
		border: 1px solid var(--grey);
	}

	.wp-block-file a:hover {
		border: 1px solid var(--orange);
	}
		
		.wp-block-file a .name {
			flex-grow: 1;
			font-weight: bold;
			font-size: 15px;
		}

		.wp-block-file a .filesize {
			flex-basis: 20%;
			color: #bbb;
		}

		.wp-block-file a .download {
			display: inline-block;
			padding: 5px 10px;
			background: var(--orange);
			color: #fff;
			font-weight: 600;
			
			margin-left: auto;
			transition: all 0.3s ease;
		}

		.wp-block-file a .download:hover {
			background: #000;
			transition: all 0.3s ease;
		}
		
@media screen and (max-width: 550px) {
	.wp-block-file a {
		flex-direction: column;
		align-items: center;
	}

	.wp-block-file a .download {
		margin: 15px 0 0 0;
	}
}
			
.oferta {
	display: grid; 
	grid-auto-columns: 1fr; 
	grid-template-columns: repeat(1, 1fr); 
	grid-template-rows: repeat(2, 1fr); 
	gap: 30px 30px; 
	box-sizing: border-box;
	
	padding: 15px 0 !important;
}

	.oferta li {
		list-style: none;
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

		.oferta li a {
			position: relative;
			display: block;
			width: 100%;
			height: 60vw;
			max-height: 300px;
		}
		
		.oferta li a .title {
			position: absolute;
			display: inline-block;
			left: 0;
			top: 30px;
			background: var(--orange);
			color: #fff;
			font-size: 20px;
			padding: 7px 20px;
			transition: all 0.2s ease;
		}
		
		.oferta li a .more {
			position: absolute;
			display: inline-block;
			right: 0;
			bottom: 0px;
			background: var(--orange);
			color: #fff;
			font-size: 15px;
			padding: 5px 15px;
			transition: all 0.2s ease;
		}
		
		.oferta li a figure {
			display: block;
			width: 100%;
			height: 100%;
		}
			
			.oferta li a figure img {
				display: block;
				width: 100%;
				height: 100%;
				
				object-fit: cover;
				object-position: 50% 50%;
			}
			
		.oferta li a:hover {
			
		}
		
			.oferta li a:hover .title {
				background: #000;
				transition: all 0.2s ease;
			}
		
			.oferta li a:hover .more {
				background: #000;
				transition: all 0.2s ease;
			}
		
		
			
			
			
footer {
	padding: 20px 0;
	border-top: 1px solid var(--grey);
}
			
	footer .wp-block-columns {
		justify-content: space-between;
		font-size: 14px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
		