/*
Theme Name: BERO
Author: Hashfive Łukasz Widz
Author URI: https://hashfive.dev

*/

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

:root {
  --darkgreen: #0E3E3E;
  --green: #007A62;
  --lightgreen: #D1F8C9;
  --txt: #0D1A28;
  --lighttxt: #F3FFF0;
  --grey: #F1F6FA;
  --dark: #0D1A28;
}



body {
	background: #fff;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: var(--dark);
	overflow-x: hidden;
	position: relative;
}

	body.overflow {
		overflow: hidden;
	}
	
.button a,
a.wp-block-button__link,
button.wp-block-button__link {
	display: inline-block;
	background: var(--dark);
	outline: 2px solid var(--dark);
	border-radius: 50px;
	padding: 12px 30px;
	box-sizing: border-box;
	outline-offset: -2px;
	font-weight: 500;
	transition: all 0.3s ease;
}
	.button a:hover,
	a.wp-block-button__link:hover,
	button.wp-block-button__link:hover {
		background: var(--green);
		outline: 2px solid var(--green);
		color: var(--lighttxt);
		outline-offset: -2px;
		transition: all 0.3s ease;
	}
	
.button.light a,
.light a.wp-block-button__link,
.light button.wp-block-button__link {
	background: var(--lightgreen);
	outline: 2px solid var(--lightgreen);
	color: var(--txt);
	transition: all 0.3s ease;
}

	.button.light a:hover,
	.light a.wp-block-button__link:hover,
	.light button.wp-block-button__link:hover {
		background: var(--green);
		outline: 2px solid var(--green);
		color: var(--lighttxt);
		outline-offset: -2px;
		transition: all 0.3s ease;
	}
	
.button.more a,
.more a.wp-block-button__link,
.more button.wp-block-button__link {
	padding-right: 50px;
	
	background-image: url(../graf/ico_more_light.svg);
	background-repeat: no-repeat;
	background-size: 10px auto;
	background-position: top 50% right 30px;
}

	.button.more a:hover,
	.more a.wp-block-button__link:hover,
	.more button.wp-block-button__link:hover {
		background-image: url(../graf/ico_more_light.svg);
	}
	
.button.light.more a,
.light.more a.wp-block-button__link,
.light.more button.wp-block-button__link {
	padding-right: 50px;
	
	background-image: url(../graf/ico_more.svg);
	background-repeat: no-repeat;
	background-size: 10px auto;
	background-position: top 50% right 30px;
}

	.button.light.more a:hover,
	.light.more a.wp-block-button__link:hover,
	.light.more button.wp-block-button__link:hover {
		background-image: url(../graf/ico_more_light.svg);
	}


.hide-on-mobile {
	display: none;
}
	
	
@media screen and (max-width: 450px) {
	.wp-block-buttons {
		justify-content: center;
	}
	
	.wp-block-buttons .wp-block-button {
		width: 100%;
		text-align: center;
	}
	
	.wp-block-buttons .wp-block-button a {
		display: block;
		width: 100%;
	}
}
	
	
input:focus,
button:focus,
textarea:focus {
	outline: 0;
}	

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

.is-style-fit-1300,
.fit-1300 {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

a {
	color: #2e3192;
	text-decoration: none;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	
	cursor: pointer;
}

	a:hover {
		color: var(--green);
		text-decoration: none;
		
		transition: all .2s ease;
		-webkit-transition: all .2s ease;
		cursor: pointer;
	}

a em {
	display: inline-block;
	position: relative;
	font-style: normal;
}

	a:hover em {
		color: var(--green);
	}
	
	a em:before {
		content: "";
		display: block;
		width: 0;
		height: 2px;
		background: var(--green);
		
		position: absolute;
		left: 0;
		bottom: 0;
		transition: all 0.3s ease;
	}

	a em:hover:before {
		width: 100%;
		transition: all 0.3s ease;
	}


h1 {
	color: var(--txt);
	font-family: "Funnel Display", sans-serif;
	font-weight: 400;
	font-size: clamp(45px, 8vw, 70px);
	line-height: 1;
	opacity: 0;
}

h2 {
	color: var(--txt);
	font-family: "Funnel Display", sans-serif;
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 400;
	line-height: 1.1;
}

h3 {
	font-family: "Montserrat";
}

@media screen and (max-width: 780px) {
	.is-layout-flow > .alignright {
		float: unset;
		width: 100%;
		margin: 0;
		text-align: center;
	}
	
	.is-layout-flow > .alignright img {
		width: 100%;
		max-width: 350px;
		height: auto;
	}
}


header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	box-sizing: border-box;
	
	width: 100%;
}

	header .header_inner {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		align-items: center;
		padding: 15px 15px;
		border-radius: 0;
		transition: all 0.3s ease;
	}

		header .header_inner #logo a {
			display: block;
		}
		
		header .header_inner #logo img {
			display: block;
			width: 100px;
			height: auto;
		}

		header.dark .header_inner #logo img {
			filter: brightness(0) invert(1);
			transition: all 0.3s ease;
		}
		
		header .header_inner #show_menu {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			margin-left: auto;
			gap: 7px;
			width: 30px;
			height: 30px;
		}
			
			header .header_inner #show_menu .span#one {
				position: relative;
				width: 100%;
				height: 2px;
				background: var(--txt);
				transition: all 0.3s ease;
			}
			
			header .header_inner #show_menu .span#two {
				position: relative;
				width: 100%;
				height: 2px;
				background: var(--txt);
				transition: all 0.3s ease;
			}
			
			header .header_inner #show_menu .span#three {
				position: relative;
				width: 100%;
				height: 2px;
				background: var(--txt);
				transition: all 0.3s ease;
			}
			
			header.dark .header_inner #show_menu .span#one,
			header.dark .header_inner #show_menu .span#two,
			header.dark .header_inner #show_menu .span#three {
				background: var(--lighttxt);
			}
			
			header.on .header_inner #show_menu .span#one,
			header.on .header_inner #show_menu .span#two,
			header.on .header_inner #show_menu .span#three {
				background: var(--txt);
			}
			
		header .header_inner #show_menu.on {
			gap: 0;
		}
		
			header.on .header_inner #show_menu .span#one {
				transform: rotate(45deg);
				top: 1px;
				transition: all 0.3s ease;
			}
		
			header.on .header_inner #show_menu .span#two {
				height: 0;
				width: 0;
				transition: all 0.3s ease;
			}
		
			header.on .header_inner #show_menu .span#three {
				transform: rotate(-45deg);
				top: -1px;
				transition: all 0.3s ease;
			
			}
			
			
			
		header .header_inner #menu {
			display: flex;
			flex-direction: column;
			width: 100%;
			align-items: center;
			gap: 20px;
			padding: 0 30px;
			box-sizing: border-box;
			visibility: hidden;
			opacity: 0;
			max-height: 0;
			transition: all 0.3s ease;
		}
		
		
		header .header_inner #menu.on {
			visibility: visible;
			opacity: 1;
			padding: 30px 30px;
			max-height: 800px;
			transition: all 0.3s ease;
		}
		
			header .header_inner #menu nav {
				display: flex;
				justify-content: center;
			}
		
			header .header_inner #menu nav:first-child {
				flex-grow: 1;
				
				display: flex;
				justify-content: center;
			}
		
			header .header_inner #menu nav:last-child {
				
					font-size: 17px;
			}
			
			header .header_inner #menu nav > ul#menu-menu-glowne {
				list-style: none;
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 10px;
			}
			
			header .header_inner #menu > nav > ul#menu-menu-glowne {
				
			}
		
			header .header_inner #menu > nav > ul#menu-umow-spotkanie {
				list-style: none;
			}
			
				header .header_inner #menu > nav:first-child > ul > li {
					position: relative;
					display: block;
					width: 100%;
				}
				
				header .header_inner #menu > nav:first-child > ul > li > a {
					display: block;
					width: 100%;
					text-align: center;
					box-sizing: border-box;
					text-decoration: none;
					position: relative;
					padding: 5px 15px;
					font-size: 18px;
					color: var(--txt);
				}
				
				header .header_inner #menu > nav:first-child > ul > li > a:hover {
					color: var(--green);
				}
				
				header .header_inner #menu > nav:first-child > ul > li.current-menu-parent > a,
				header .header_inner #menu > nav:first-child > ul > li.current-menu-item > a {
					color: var(--green) !important;
					font-weight: 600 !important;
				}
			
				header .header_inner #menu > nav:first-child > ul > li > a span {
					position: relative;
					padding: 5px 0;
					display: inline-block;
				}
						
					header .header_inner #menu > nav:first-child > ul > li > a span:before {
						content: "";
						display: block;
						width: 0;
						height: 1px;
						background: #8ADE9C;
						
						position: absolute;
						left: 0;
						bottom: 0;
						transition: all 0.3s ease;
					}
						
					header .header_inner #menu > nav:first-child > ul > li > a:hover span:before {
						width: 100%;
						transition: all 0.3s ease;
					}
				
				 header.dark .header_inner #menu > nav:first-child > ul > li > a {
					color: var(--txt);
					font-size: 18px;
					font-weight: 400;
					border-radius: 15px 15px 0 0px;
				}
				
				header.dark .header_inner #menu > nav:first-child > ul > li > a:hover {
					color: #8ADE9C;
				}

				header .header_inner #menu > nav:first-child > ul > li.menu-item-has-children > a {
					position: relative;
				}
			
				header .header_inner #menu > nav:first-child > ul > li.menu-item-has-children > a span {
					position: relative;
					display: inline-block;
					padding-right: 25px;
				}
				
				header .header_inner #menu > nav:first-child > ul > li.menu-item-has-children > a span:after {
					content: "";
					display: block;
					width: 6px;
					height:6px;
					border-right: 2px solid var(--txt);
					border-bottom: 2px solid var(--txt);
					
					position: absolute;
					right: 0;
					top: -2px;
					transform: translateY(15px) rotate(45deg);
					transition: all 0.3s ease;
				}
								
				header.dark .header_inner #menu > nav:first-child > ul > li.menu-item-has-children > a span:after {
					border-right: 2px solid var(--txt);
					border-bottom: 2px solid var(--txt);
				}
					
				header .header_inner #menu > nav:first-child > ul > li.menu-item-has-children.current-menu-parent > a span:after {
					border-right: 2px solid #8ADE9C;
					border-bottom: 2px solid #8ADE9C;
				}
					
				header .header_inner #menu > nav:first-child > ul > li.menu-item-has-children.on > a span:after {
					border-right: 2px solid #8ADE9C;
					border-bottom: 2px solid #8ADE9C;
					transform: translateY(18px) rotate(225deg);
					
					transition: all 0.3s ease;
				}
					
			header .header_inner #menu > nav ul.sub-menu {
				padding: 0 0;
				border-radius: 15px;
				
				visibility: hidden;
				opacity: 0;
				max-height: 0;
				overflow: hidden;
				transition: all 0.3s ease;
			}

			header .header_inner #menu > nav li.menu-item-has-children.on ul.sub-menu {
				padding: 5px 0 0px 0;
				visibility: visible;
				opacity: 1;
				max-height: 500px;
				transition: all 0.3s ease;
			}
				
				
				header .header_inner #menu > nav ul.sub-menu li {
					list-style: none;
				}

				header .header_inner #menu > nav ul.sub-menu li a {
					display: block;
					text-align: center;
					font-size: 16px;
					width: 100%;
					padding: 10px 8px;
					box-sizing: border-box;
					color: vaR(--txt);
				}
				
					header .header_inner #menu > nav ul.sub-menu li.current-menu-item a {
						font-weight: 600 !important;
						color: var(--green) !important;
					}
					
					header .header_inner #menu > nav ul.sub-menu li a:hover {
						color: var(--green);
					}
					
				header .header_inner #menu > nav ul.sub-menu li a span {
					display: block;
					width: 100%;
					padding: 0 7px;
					box-sizing: border-box;
					transition: all 0.3s ease;
				}
					
					header .header_inner #menu > nav ul.sub-menu li a:hover span {
						transition: all 0.3s ease;
					}
					
header.fixed {
	
}

	header.on .header_inner,
	header.fixed .header_inner  {
		background: var(--lighttxt);
		transition: all 0.3s ease;
	}

	header.on .header_inner #logo img,
	header.dark.fixed .header_inner #logo img {
		filter: brightness(1) invert(0);
		transition: all 0.3s ease;
	}

	header.fixed .header_inner #show_menu .span#one,
	header.fixed .header_inner #show_menu .span#two,
	header.fixed .header_inner #show_menu .span#three {
		background: var(--txt);
	}


	header.dark.fixed .header_inner #menu nav:first-child ul li a {
		color: var(--txt);
		font-weight: 400;
	}

	header.on .header_inner #menu nav:first-child ul li a span:before,
	header.fixed .header_inner #menu nav:first-child ul li a span:before {
		background: var(--txt);
	}
	
#intro {
	padding-top: 100px;
}

	#intro .wp-block-columns {
		flex-direction: column;
	}
	
	#intro .wp-block-column:first-child {
		align-self: center;
		padding-bottom: 20px;
	}

		#intro .wp-block-column:first-child h1 {
			padding-bottom: 40px;
		}

		#intro .wp-block-column:first-child .txt {
			
		}
		
		#intro .wp-block-column:first-child .wp-block-button {
			padding-top: 50px;
		}
			

	#intro .wp-block-column:last-child {
		align-self: center;
	}

		#intro .wp-block-column:last-child figure img {
			position: relative;
			width: 100%;
			height: auto;
			max-width: 500px;
		}
		
#czymjest {
	margin: 70px auto;
	font-family: "Funnel Display", sans-serif;
}

	#czymjest .wp-block-column:first-child {
		flex-basis: 350px;
		min-width: 350px;
	}

	#czymjest .wp-block-column:last-child {
		flex-grow: 1;
		flex-basis: auto;
	}

@media screen and (max-width: 780px) {
	#czymjest .wp-block-column:first-child {
		width: 100%;
		min-width: unset;
	}
}

#poznaj {
	
}

	#poznaj .wp-block-columns {
		padding: 60px 0;
		gap: 60px;
	}

	#poznaj .wp-block-column:first-child {
		
	}
	
		#poznaj .wp-block-column:first-child h2 {
			padding-bottom: 30px;
		}
	
		#poznaj .wp-block-column:first-child .wp-block-button {
			padding-top: 50px;
		}
		
	#poznaj .wp-block-column:last-child {
		text-align: center;
	}
	
		#poznaj .wp-block-column:last-child img {
			width: 90%;
			max-width: 350px;
			margin: 0 auto;
			height: auto;
		}
	
	
#korzysci {
	margin: 0 auto 0 auto;
	
	padding-top: 60px;
	padding-bottom: 60px;
}

	#korzysci .is-layout-grid {
		margin-top: 50px;
		gap: 15px;
		display: grid; 
		grid-auto-columns: 1fr; 
		grid-template-columns: repeat(3, 1fr); 
		gap: 15px 15px; 
	}
	
	@media screen and (max-width: 750px) {
		#korzysci .is-layout-grid {
			grid-template-columns: repeat(2, 1fr); 
		}
	}
	
	@media screen and (max-width: 500px) {
		#korzysci .is-layout-grid {
			grid-template-columns: repeat(1, 1fr); 
		}
	}
	
	#korzysci .img1 {
		order: 1;
	}
	
	#korzysci .img2 {
		order: 4;
	}
	
	#korzysci .img3 {
		order: 6;
	}
	
	#korzysci .txt1 {
		order: 2;
	}
	
	#korzysci .txt2 {
		order: 3;
	}
	
	#korzysci .txt3 {
		order: 5;
	}
	
	#korzysci .txt4 {
		order: 7;
	}
	
	@media screen and (max-width: 500px) {
		#korzysci .txt1 {
			order: 1;
		}
		
		#korzysci .img1 {
			order: 2;
		}
	
	}
	
	
	#korzysci .txt {
		border: 1px solid #BDC6BF;
		padding: 25px;
		box-sizing: border-box;
		font-size: 12px;
		transition: all 0.3s ease;
	}
		
	#korzysci .txt:hover {
		background: var(--txt);
		color: var(--lighttxt);
		transition: all 0.3s ease;
	}
		
		#korzysci .txt strong {
			font-family: "Funnel Display", sans-serif;
			font-size: 22px;
			font-weight: 400;
			line-height: 1.2;
		}
	
	#korzysci .img {
		display: block;
		width: 100%;
		height: 100%;
	}
	
		#korzysci .img img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: 50% 50%;
		}
		
	#korzysci .hideMobile,
	#korzysci .displayNone {
		display: none;
	}
	
	#korzysci .imgSpan {
		grid-row: span 2;
	}
	
	#korzysci .imgSpan + p {
		
	}

@media screen and (max-width: 1200px) {
	#korzysci .txt {
		padding: 15px;
	}
}

#typy-budynkow {
	padding-top: 60px;
	padding-bottom: 60px;
}

	#typy-budynkow h2 {
		padding-bottom: 20px;
	}

	#typy-budynkow .txt {
		font-weight: 300;
		margin: 0 0 0 0 !important;
	}

	#typy-budynkow .typyBudynkow {
		column-count: 2;
		gap: 0 10px; 
		
		padding-top: 60px;
	}
	
	@media screen and (max-width: 550px) {
		#typy-budynkow .typyBudynkow {
			column-count: 1;
		}
	}

		#typy-budynkow .typyBudynkow a.typ {
			display: block;
			padding: 10px;
			color: var(--lighttxt);
			text-decoration: none;
			margin-bottom: 10px;
			box-sizing: border-box;
		}

			#typy-budynkow .typyBudynkow a.typ img {
				display: block;
				width: 100%;
				height: auto;
			}

			#typy-budynkow .typyBudynkow a.typ h3 {
				font-family: "Funnel Display", sans-serif;
				font-size: 24px;
				font-weight: 400;
				display: block;
				padding: 15px 0;
				line-height: 1.1;
			}
			
			#typy-budynkow .typyBudynkow a.typ .txt {
				display: block;
				width: 100%;
				font-weight: 300;
				font-size: 14px;
			}
			
			#typy-budynkow .typyBudynkow a.typ .more {
				margin-top: 30px;
				font-weight: 500;
				padding-bottom: 10px;
			}
			
			#typy-budynkow .typyBudynkow a.typ .more span {
				display: inline-block;
				position: relative;
				padding-bottom: 5px;
			}
			
			#typy-budynkow .typyBudynkow a.typ .more span:before {
					content: "";
					display: block;
					width: 0;
					height: 2px;
					background: var(--txt);
					
					position: absolute;
					left: 0;
					bottom: 0;
					transition: all 0.3s ease;
				}

		#typy-budynkow .typyBudynkow a.typ:hover {
			background: var(--lighttxt);
			color: var(--txt);
		}
				
			#typy-budynkow .typyBudynkow a.typ:hover .more span:hover:before {
				width: 100%;
				transition: all 0.3s ease;
			}


#realizacje_home {
	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
}

	#realizacje_home .wp-block-columns {
	}

		#realizacje_home .wp-block-column {
			padding: 0;
			flex-grow: unset;
		}

		#realizacje_home .wp-block-column:first-child {
			flex-basis: 450px;
		}

		#realizacje_home .wp-block-column:last-child {
			flex-basis: 500px;
		}
		
			#realizacje_home .wp-block-column:last-child .wp-block-button {
				margin-top: 20px;
			}
		

#realizacje_sub {
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: hidden;
}

	#realizacje_sub > .wp-block-columns {
		border-top: 1px solid #BDC6BF;
		justify-content: space-between;
	}

		#realizacje_sub > .wp-block-columns > .wp-block-column {
			padding: 25px 0 0 0;
			flex-grow: unset;
		}

		#realizacje_sub > .wp-block-columns > .wp-block-column:first-child {
			flex-basis: 450px;
			border-right: 1px solid #BDC6BF;
		}

		#realizacje_sub > .wp-block-columns > .wp-block-column:last-child {
			flex-basis: 530px;
		}

			#realizacje_sub > .wp-block-columns > .wp-block-column:last-child .wp-block-columns {
				align-items: center;
				gap: 10px;
				padding-top: 10px;
			}
			
			#realizacje_sub > .wp-block-columns > .wp-block-column:last-child .wp-block-column:first-child {
				flex-basis: 160px;
				flex-grow: 1;
				
				font-family: "Funnel Display", sans-serif;
				font-size: 56px;
				font-weight: 400;
			}
			
			#realizacje_sub > .wp-block-columns > .wp-block-column:last-child .wp-block-column:last-child {
				flex-basis: auto;
				flex-grow: 1;
			}
			
			
#realizacjeCats,
#realizacjeCatsSub {
	position: relative;
	margin: 60px 0 30px 0;
}

	#realizacjeCats .swiper-wrapper,
	#realizacjeCatsSub .swiper-wrapper {
		justify-content: flex-start;
	}
	
	#realizacjeCats .realizacjeCat,
	#realizacjeCatsSub .realizacjeCat {
		flex-grow: unset;
		width: auto;
		padding: 10px 25px;
		box-sizing: border-box;
		border: 1px solid #8a9e97;
		border-radius: 30px;
		line-height: 1;
		
		cursor: pointer;
		transition: all 0.3s ease;
	}
	
		#realizacjeCats .realizacjeCat:hover,
		#realizacjeCatsSub .realizacjeCat:hover {
			background: var(--green);
			border: 1px solid var(--green);
			color: var(--lighttxt);
			transition: all 0.3s ease;
		}
			
		#realizacjeCats .realizacjeCat.active,
		#realizacjeCatsSub .realizacjeCat.swiper-slide-thumb-active {
			background: var(--darkgreen);
			border: 1px solid var(--darkgreen);
			color: var(--lighttxt);
			transition: all 0.3s ease;
		}
			
#realizacjePostsContainer {
	
}

	#realizacjePostsContainer .realizacjePostsBox {
		display: grid; 
		grid-auto-columns: 1fr; 
		grid-template-columns: repeat(4, 1fr); 
		gap: 15px 15px; 
	}
	
	@media screen and (max-width: 750px) {
		#realizacjePostsContainer .realizacjePostsBox {
			grid-template-columns: repeat(2, 1fr); 
		}
	}
	
	#realizacjePostsContainer .realizacjePostsBox a {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		background: #000;
	}
		
	
		#realizacjePostsContainer .realizacjePostsBox a img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: 50% 50%;
			transition: all 0.3s ease;
		}
		
			#realizacjePostsContainer .realizacjePostsBox a:hover img {
				opacity: 0.5;
				transition: all 0.3s ease;
			}
			
		#realizacjePostsContainer .realizacjePostsBox a h3 {
			position: absolute;
			bottom: 0;
			left: 0;
			
			display: block;
			width: 100%;
			padding: 15px;
			box-sizing: border-box;
			
			color: #fff;
			font-family: "Funnel Display", sans-serif;
			font-size: 20px;
			font-weight: 400;
			opacity: 0;
			transition: all 0.3s ease;
		}
			
			#realizacjePostsContainer .realizacjePostsBox a:hover h3 {
				opacity: 1;
				transition: all 0.3s ease;
			}
			
#realizacjePostsContainerSub {
	padding-top: 30px;
}

	#realizacjePostsContainerSub .realizacjePostsBox {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	
		#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner {
			display: flex;
			gap: 30px;
			align-items: flex-start;
			background: #fff;
			padding: 25px;
			box-sizing: border-box;
		}
	
			#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner figure {
				flex-basis: 250px;
				min-width: 250px;
				max-width: 250px;
				height: 100%;
			}

				#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner figure img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 50% 50%;
				}
				
	
			#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner .txt {
				flex-basis: auto;
			}
				
				#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner .txt h3 {
					font-family: "Funnel Display", sans-serif;
					font-size: 34px;
					font-weight: 400;
				}
				
				#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner .txt .desc {
					padding-top: 15px;
				}
				
				#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner .txt .ul {
					
				}

				#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner .txt ul li {
					position: relative;
					list-style: none;
					padding: 3px 0 3px 13px;
				}

				#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner .txt ul li:before {
					content: "";
					display: block;
					width: 4px;
					height: 4px;
					border-radius: 50%;
					background: var(--txt);
					
					position: absolute;
					left: 0;
					top: 11px;
				}
						
@media screen and (max-width: 650px) {
	#realizacjePostsContainerSub .realizacjePostsBox .realizacjePostsBox_inner {
		flex-direction: column;
	}
}
						
#wlaczOszczedzanie {
	padding-top: 20px;
	padding-bottom: 60px;
}

	#wlaczOszczedzanie .wp-block-columns {
		flex-direction: column;
		gap: 0;
		background: #fff;
		padding-top: 50px;
		padding-bottom: 50px;
	}
		
		#wlaczOszczedzanie .wp-block-column:first-child {
			order: 2;
			flex-basis: 55%;
			border-left: 1px solid #BDC6BF;
			border-right: 1px solid #BDC6BF;
			border-bottom: 1px solid #BDC6BF;
			
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			
			padding: 10px 3% 30px 3%;
			box-sizing: border-box;
		}
	
			#wlaczOszczedzanie .wp-block-column:first-child .wp-block-buttons {
				margin-top: 40px;
			}

		#wlaczOszczedzanie .wp-block-column:last-child {
			order: 1;
			flex-basis: 100%;
			padding: 30px 3%;
			box-sizing: border-box;
			border-left: 1px solid #BDC6BF;
			border-right: 1px solid #BDC6BF;
			border-top: 1px solid #BDC6BF;
		}
		
			#wlaczOszczedzanie .wp-block-column:last-child h2 {
				padding-bottom: 20px;
			}
			
			#wlaczOszczedzanie .wp-block-column:last-child img {
				width: 100%;
				max-width: 250px;
				height: auto;
			}
		
		
	
#intro_sub {
	padding-top: 100px;
	padding-bottom: 60px;
}

	#intro_sub .wp-block-column:first-child {
		flex-basis: 55%;
		align-self: center;
		padding-bottom: 0px;
	}

		#intro_sub .wp-block-column:first-child h1 {
			padding-bottom: 40px;
			font-size: clamp(45px, 7vw, 70px);
		}

		#intro_sub .wp-block-column:first-child .txt {
			width: 100%;
		}
		
		#intro_sub .wp-block-column:first-child .wp-block-button {
			padding-top: 50px;
		}
			

	#intro_sub .wp-block-column:last-child {
		flex-basis: 45%;
		text-align: right;
		align-self: flex-end;
	}

		#intro_sub .wp-block-column:last-child figure {
			text-align: center;
		}
		
		#intro_sub .wp-block-column:last-child figure img {
			position: relative;
			width: 100%;
			max-width: 450px;
			margin: 0 auto;
			text-align: center;
		}
		
	#intro_sub.realizacje {
		padding-bottom: 20px;
	}
	
	#intro_sub.realizacje .wp-block-column:last-child {
		display: none;
	}
		
		
#witamycie {
	
}
		
	#witamycie .wp-block-columns {
		padding: 60px 0;
		font-family: "Funnel Display", sans-serif;
	}
		
		#witamycie .wp-block-column:first-child {
			flex-basis: 30%;
			flex-grow: 0;
		}
		
		#witamycie .wp-block-column:last-child {
			flex-basis: 70%;
		}
		
#onas_cols {
	
}

	@media screen and (max-width: 1200px) {
		#onas_cols .skutecznosc .wp-block-column:first-child {
			flex-basis: 60%;
		}
		
		#onas_cols .skutecznosc .wp-block-column:last-child {
			flex-basis: 40%;
		}
	}
		
#counters {
	padding-top: 40px;
	padding-bottom: 70px;
	margin-top: 20px;
	border-top: 1px solid rgba(0 0 0 / 0.15);
}



		
	#counters {
		width: 100%;
		justify-content: space-between;
	}
		
		#counters .wp-block-column {
			flex-grow: 0;
			flex-basis: 33%;
		}
			
			#counters .wp-block-column .counter {
				font-family: "Funnel Display", sans-serif;
				font-size: 48px;
				padding-bottom: 10px;
			}
			
	@media screen and (max-width: 780px) {
		#counters .wp-block-column {
			width: 100%;
			max-width: 400px;
			margin: 0 auto;
			text-align: center;
			background: #fff;
			padding: 20px;
			box-sizing: border-box;
		}
	}
	
.kontakt_box {
	padding-top: 20px;
}

	.kontakt_box .wp-block-columns {
		padding: 30px 30px;
		box-sizing: border-box;
		gap: 20px 20px;
		justify-content: space-between;
	}
		
		.kontakt_box .wp-block-column:first-child {
			flex-basis: 45%;
			flex-grow: 0;
		}
		
		.kontakt_box .wp-block-column:last-child {
			flex-basis: 45%;
			flex-grow: 0;
			font-family: "Funnel Display", sans-serif;
			font-size: clamp(30px, 5vw, 38px);
		}
		
			.kontakt_box .wp-block-column:last-child a {
				color: var(--txt);
			}
		
			.kontakt_box .wp-block-column:last-child a:hover {
				color: var(--darkgreen);
			}

			
#urzadzenia {
	padding-top: 60px;
}

	#urzadzenia .wp-block-columns {
		justify-content: space-between;
		gap: 0px;
	}
	
	#urzadzenia .wp-block-column:first-child {
		flex-grow: 0;
		flex-basis: 50%;
	}
	
	#urzadzenia .wp-block-column:last-child {
		flex-grow: 0;
		flex-basis: 30%;
		
		font-size: 24px;
		font-family: "Funnel Display", sans-serif;
	}
			
	@media screen and (max-width: 1200px) {
		#urzadzenia .wp-block-column:last-child {
			flex-basis: 35%;
		}
	}
			
#urzadzenia_list {
	
	gap: 20px 20px; 
	margin-top: 60px;
	margin-bottom: 60px;
}
	
	#urzadzenia_list .wp-block-media-text {
		border: 1px solid #C4C6C9;
		padding: 15px 15px;
		margin-bottom: 20px;
		box-sizing: border-box;
		display: flex;
		gap: 20px;
		align-items: center;
		transition: all 0.3s ease-in-out;

	}
	
	#urzadzenia_list .wp-block-media-text.on {
		min-height: 250px;
		max-height: 1000px;
		transition: all 0.3s ease-in-out;
	}
	
		
			#urzadzenia_list .wp-block-media-text figure.wp-block-media-text__media  {
				display: block;
				width: 160px;
				min-width: 160px;
				max-width: 160px;
				height: 150px;
				align-self: flex-start;
			}
		
				#urzadzenia_list .wp-block-media-text figure.wp-block-media-text__media img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 50% 50%;
				}
				
				
		#urzadzenia_list .wp-block-media-text .wp-block-media-text__content {
			padding: 0 0 0 0;
		
		}
			
			#urzadzenia_list .wp-block-media-text .wp-block-media-text__content strong {
				font-family: "Funnel Display", sans-serif;
				font-size: 24px;
				font-weight: 400;
				
				display: block;
				padding-bottom: 15px;
			}
			
		
			#urzadzenia_list .wp-block-media-text .wp-block-media-text__content .more_txt {
				display: block;
				padding-top: 0;
				max-height: 0;
				overflow: hidden;
				opacity: 0;
				transition: all 0.3s ease-in-out;
			}
		
			#urzadzenia_list .wp-block-media-text .wp-block-media-text__content .more_txt.on {
				padding-top: 20px;
				max-height: 1000px;
				opacity: 1;
				transition: all 0.3s ease-in-out;
			}
			
			#urzadzenia_list .wp-block-media-text .wp-block-media-text__content .more_button {
				margin-top: 20px;
			}
			
				#urzadzenia_list .wp-block-media-text .wp-block-media-text__content .more_button a {
					font-weight: 600;
					color: var(--txt);
				}
				
@media screen and (max-width: 550px) {
	#urzadzenia_list .wp-block-media-text {
		flex-direction: column;
	}
	
	#urzadzenia_list .wp-block-media-text figure.wp-block-media-text__media {
		width: 90%;
		max-width: 440px;
		min-width: unset;
		height: auto;
		height: 165px;
		margin: 0 auto;
	}
	
}
				
#zaprogramujcieplo {
	padding-bottom: 60px;
}

	#zaprogramujcieplo .wp-block-columns {
		justify-content: space-between;
	}

		#zaprogramujcieplo .wp-block-column:first-child {
			flex-grow: 0;
			flex-basis: 450px;
		}

			#zaprogramujcieplo .wp-block-column:first-child strong {
				font-family: "Funnel Display", sans-serif;
				font-size: 18px;
				font-weight: 400;
			}

		#zaprogramujcieplo .wp-block-column:last-child {
			flex-grow: 0;
			flex-basis: 40%;
		}
		
#ekologia {
	padding-top: 60px;
	padding-bottom: 60px;
}

	#ekologia .wp-block-column:first-child {
		text-align: center;
	}
	
		#ekologia .wp-block-column:first-child img {
			display: block;
			margin: 0 auto;
			width: 100%;
			max-width: 450px;
			height: auto;
		}
		
	#ekologia .wp-block-column:last-child {
		
	}

		#ekologia .wp-block-column:last-child h2 {
			display: inline-block;
			padding-bottom: 30px;
			margin-bottom: 30px;
			
			border-bottom: 1px solid #C4C6C9;
		}

		#ekologia .wp-block-column:last-child ul li {
			position: relative;
			list-style: none;
			padding: 10px 0 10px 13px;
		}

		#ekologia .wp-block-column:last-child ul li:before {
			content: "";
			display: block;
			width: 4px;
			height: 4px;
			border-radius: 50%;
			background: var(--txt);
			
			position: absolute;
			left: 0;
			top: 17px;
		}
			
.typybudynkow_box {
	
}

	.typybudynkow_box .wp-block-columns {
		padding-top: 50px;
		padding-bottom: 50px;
		justify-content: space-between;
		
		font-family: "Funnel Display", sans-serif;
		font-size: 18px;
	}
		
		.typybudynkow_box .wp-block-column:first-child {
			flex-basis: 500px;
			flex-grow: 0;
		}
		
		.typybudynkow_box .wp-block-column:last-child {
			flex-basis: 40%;
			flex-grow: 0;
			text-align: center;
		}
			
.rodzajebudynkow {
	padding-top: 60px;
	padding-bottom: 60px;
}
			
	.rodzajebudynkow .wp-block-columns {
		justify-content: space-between;
		padding-bottom: 40px;
		margin-bottom: 40px;
		border-bottom: 1px solid rgba(255 255 255 / 0.15);
	}
	
		.rodzajebudynkow .wp-block-column:last-child {
			text-align: left;
			padding-top: 15px;
		}
			
	.rodzajebudynkow ol {
		display: flex;
		width: 100%;
		margin: 0 auto;
		flex-direction: column;
		gap: 20px 2%;
		list-style: none;
		counter-reset: item;
	}
			
		.rodzajebudynkow ol li {
			display: flex;
			align-items: center;
			gap: 20px;
			flex-basis: 100%;
			counter-increment: item;
			font-family: "Funnel Display", sans-serif;
			font-size: 20px;
			line-height: 1.3;
			text-align: left;
		}
			
		.rodzajebudynkow li:before {
			content: counter(item);
			font-family: "Funnel Display", sans-serif;
			font-size: 38px;
			padding-bottom: 5px;
		}
		
		
		
.jakpomaga {
	padding-top: 60px;
	padding-bottom: 10px;
}
 
	.jakpomaga h2 {
		display: block;
		padding-bottom: 10px;
	}
	
	.jakpomaga hr {
		width: 100%;
		height: 1px;
		border: 0;
		background: #BDC6BF;
	}
	
	.jakpomaga .wp-block-columns {
		position: relative;
		flex-direction: column;
		padding: 30px 0;
		cursor: pointer;
		gap: 0;
		transition: all 0.2s ease;
	}
	
	.jakpomaga .wp-block-columns.on {
		transition: all 0.2s ease;
	}
	
	.jakpomaga .wp-block-columns:before {
		content: "+";
		font-family: "Funnel Display", sans-serif;
		font-size: 28px;
		
		position: absolute;
		left: 0;
		top: 24px;
		transition: all 0.2s ease;
	}
	
	.jakpomaga .wp-block-columns:hover:before {
		color: var(--green);
		transition: all 0.2s ease;
	}
		
	.jakpomaga .wp-block-columns:after {
		content: "";
		display: block;
		width: 26px;
		height: 26px;
		
		position: absolute;
		right: 0;
		top: 32px;
		
		background-image: url(../graf/ico_arrow.svg);
		background-size: 12px auto;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		
		border-radius: 50%;
		border: 1px solid var(--dark);
		transition: all 0.2s ease;
	}
	
	.jakpomaga .wp-block-columns.on:after {
		border: 1px solid var(--dark);
		background-image: url(../graf/ico_arrow_white.svg);
		background-color: var(--dark);
		transform: rotate(180deg);
		transition: all 0.2s ease;
	}
	
		.jakpomaga .wp-block-column:first-child {
			flex-basis: 40%;
			position: relative;
			font-family: "Funnel Display", sans-serif;
			font-size: 22px;
			padding-left: 30px;
			padding-right: 50px;
		}
		
			.jakpomaga .wp-block-column:first-child strong {
				font-weight: 400;
				transition: all 0.2s ease;
			}
			.jakpomaga .wp-block-columns:hover .wp-block-column:first-child strong {
				color: var(--green);
				transition: all 0.2s ease;
			}
	
		.jakpomaga .wp-block-column:last-child {
			flex-basis: unset;
			position: relative;
			max-height: 0;
			overflow: hidden;
			box-sizing: border-box;
			padding: 0 0 0 30px;
			
			opacity: 0;
			transition: all 0.2s ease;
		}

		.jakpomaga .wp-block-columns.on .wp-block-column:last-child {
			opacity: 1;
			padding: 10px 0 0 30px;
			max-height: 500px;
			transition: all 0.2s ease;
		}
			
 
footer {
	background: var(--dark);
	padding-bottom: 0px !important;
}

	#footer {
		padding-top: 60px;
		padding-bottom: 60px;
		
		color: var(--lighttxt);
		line-height: 1.5;
	}
	
	#footer a {
		color: var(--lighttxt);
	}
	
	#footer a:hover {
		color: #8ADE9C;
	}
	
	#footer .wp-block-columns {
		padding: 20px 0;
		gap: 30px;
	}
	
		#footer .wp-block-columns:first-child {
			gap: 2%;
		}
		
			#footer .wp-block-columns:first-child .wp-block-column:first-child {
				flex-basis: 45%;
			}
				
				#footer .wp-block-columns:first-child .wp-block-column:first-child figure {
					margin-bottom: 20px;
				}		
		
		
			#footer .wp-block-columns:first-child .wp-block-column:last-child {
				flex-basis: 45%;
				margin-left: auto;
			}
			
				#footer .wp-block-columns:first-child .wp-block-column:last-child a {
					position: relative;
					display: block;
					color: var(--lighttxt);
					font-family: "Funnel Display", sans-serif;
					font-size: 36px;
					line-height: 1;
				}
			
					#footer .wp-block-columns:first-child .wp-block-column:last-child a:hover {
						color: var(--green);
					}
				
				#footer .wp-block-columns:first-child .wp-block-column:last-child a:after {
					content: "";
					display: block;
					width: 45px;
					height: 45px;
					
					position: absolute;
					right: 0;
					top: 50%;
					transform: translateY(-50%);
					
					background-color: var(--lightgreen);
					background-image: url(../graf/ico_more.svg);
					background-size: 16px auto;
					background-repeat: no-repeat;
					background-position: 50% 50%;
					border-radius: 50%;
					transition: all 0.3s ease;
				}
				
				#footer .wp-block-columns:first-child .wp-block-column:last-child a:hover:after {
					background-color: var(--green);
					background-image: url(../graf/ico_more_light.svg);
					transition: all 0.3s ease;
				}
			
		
	
		#footer .wp-block-columns:last-child {
			gap: 2%;
		}
		

			#footer .wp-block-columns:last-child .wp-block-column:first-child  {
				flex-basis: 30%;
				box-sizing: border-box;
				flex-grow: unset;
			}
				
				#footer .wp-block-columns:last-child .wp-block-column:first-child strong {
					font-weight: 400;
					display: block;
					padding-bottom: 15px;
				}
				
				#footer .wp-block-columns:last-child .wp-block-column:first-child a {
					position: relative;
					font-size: 24px;
					font-weight: 300;
					font-family: "Funnel Display", sans-serif;
					line-height: 1.3;
				}

			#footer .wp-block-columns:last-child .wp-block-column:nth-child(2) {
				flex-basis: 20%;
				margin-left: auto;
				flex-grow: unset;
			}
			
			#footer .wp-block-columns:last-child .wp-block-column:nth-child(3) {
				flex-basis: 18%;
				flex-grow: unset;
				
			}
			
			#footer .wp-block-columns:last-child .wp-block-column:nth-child(4) {
				flex-basis: 18%;
				flex-grow: unset;
			}
		
				#footer .wp-block-columns:last-child .wp-block-column:nth-child(2) strong,
				#footer .wp-block-columns:last-child .wp-block-column:nth-child(3) strong,
				#footer .wp-block-columns:last-child .wp-block-column:nth-child(4) strong {
					display: block;
					font-weight: 500;
					padding-bottom: 15px;
				}
				
				#footer .wp-block-columns:last-child .wp-block-column:nth-child(2) a,
				#footer .wp-block-columns:last-child .wp-block-column:nth-child(3) a,
				#footer .wp-block-columns:last-child .wp-block-column:nth-child(4) a {
					display: inline-block;
					margin-bottom: 15px;
				}
		
	footer .copyrights {
		position: relative;
		text-align: left;
		color: var(--lighttxt);
		border-top: 1px solid rgba(255 255 255 / 0.07);
		
		padding: 35px 3%;
	}
			
		footer .copyrights a.linkedin {
			display: block;
			width: 45px;
			height: 45px;
			
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
					
			background-color: var(--lightgreen);
			background-image: url(../graf/ico_linkedin.svg);
			background-size: 18px auto;
			background-repeat: no-repeat;
			background-position: 50% 50%;
			border-radius: 50%;
		}
	
			footer .copyrights a.linkedin:hover {
				background-color: var(--green);
				background-image: url(../graf/ico_linkedin_light.svg);
				transition: all 0.3s ease;
			}
	

@media screen and (max-width: 780px) {
	#footer {
		padding-bottom: 30px;
	}
	
	#footer .wp-block-columns {
		padding: 0;
	}
	
	#footer .wp-block-columns:first-child {
		text-align: center;
	}
	
	#footer .wp-block-columns:first-child .wp-block-column:first-child .hide-on-desktop {
		padding: 20px 0 10px 0;
	}
	
	#footer .wp-block-columns:first-child .wp-block-column:last-child a {
		margin-top: 15px;
	}
	
	#footer .wp-block-columns:first-child .wp-block-column:last-child a:after {
		display: none;
	}
	
	#footer .wp-block-columns:last-child .wp-block-column:first-child {
		text-align: center;
		padding: 40px 0;
		margin: 40px auto;
		border-top: 1px solid rgba(255 255 255 / 0.1);
		border-bottom: 1px solid rgba(255 255 255 / 0.1);
	}
	
	#footer .wp-block-columns:last-child .wp-block-column:nth-child(2) {
		text-align: center;
	}
	
	#footer .wp-block-columns:last-child .wp-block-column:nth-child(3) {
		text-align: center;
	}
	
	#footer .wp-block-columns:last-child .wp-block-column:nth-child(4) {
		text-align: center;
	}
	
}
	
	
	