/*
Theme Name: Residence Budownictwo
Author: emedia Łukasz Widz
Author URI: https://emedia.pl
*/

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

:root {
  --black: #1B1B1B;
  --white: #FBFBFB;
  --txt: #444;
  --blueLight: #E3F3FA;
  --blue: #3CBCDE;
  --blueMiddle: #107099;
  --blueDark: #051B2A;
}

body {
	background: var(--white);
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	font-family: "Blinker", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--txt);
	overflow-x: hidden;
	position: relative;
}

	body.overflow {
		overflow: hidden;
	}
	
.button a,
.wp-block-button__link {
	display: inline-block;
	background: var(--blueMiddle);
	outline: 2px solid var(--blueMiddle);
	border: 0;
	color: var(--white);
	letter-spacing: 1px;
	border-radius: 2px;
	padding: 12px 35px;
	box-sizing: border-box;
	font-size: 16px;
	outline-offset: -2px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.is-style-outline.button a,
.is-style-outline .wp-block-button__link {
	letter-spacing: 1px;
	border-radius: 2px;
	padding: 12px 35px;
	box-sizing: border-box;
	background: transparent;
	outline: 2px solid var(--blueMiddle);
	border: 0;
	color: var(--blueMiddle);
}

	.button a:hover,
	.wp-block-button__link:hover {
		background: #054460;
		outline: 2px solid #054460;
		color: var(--white);
		transition: all 0.3s ease;
	}
	
.bgGrey {
	background: #f1f2f2;
}	
	
.hide-on-desktop {
	display: none !important;
}

.hide-on-mobile {
	
}
	
*:focus {
	outline: 0;
}	

.is-style-fit,
.fit {
	width: 100%;
	max-width: 1500px;
	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;
}

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

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

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

strong {
	font-weight: 600;
}

h1 {
	color: var(--black);
	font-weight: 400;
	font-size: clamp(44px, 4.5vw, 64px);
	line-height: 1.0;
}

h2 {
	color: var(--black);
	font-size: clamp(30px, 3.5vw, 48px);
	font-weight: 400;
	line-height: 1.0;
}

h3 {
	color: var(--black);
	font-size: clamp(26px, 3.5vw, 32px);
	font-weight: 400;
	line-height: 1.0;
}

h1 strong,
h2 strong,
h3 strong {
	font-weight: 600;
}

.icoMail {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 2px 0;
}

	.icoMail:before {
		content: "";
		display: inline-block;
		width: 16px;
		height: 16px;
		background-image: url(../graf/icoMail.svg);
	}


.icoTel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 2px 0;
}

	.icoTel:before {
		content: "";
		display: inline-block;
		width: 16px;
		height: 16px;
		background-image: url(../graf/icoTel.svg);
	}


.fbTxt {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 2px 0;
}

	.fbTxt:before {
		content: "";
		display: inline-block;
		width: 18px;
		height: 18px;
		background-image: url(../graf/icoFb.svg);
	}


header {
	width: 100%;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	box-shadow: 0px 4px 20px 0px #051B2A0D;
	border-bottom: 1px solid #C8CCCE;
}

	header #headerTop {
		display: flex;
		align-items: center;
		width: 100%;
		height: 40px;
		background: var(--blueDark);
	}

		header #headerTop .headerTopInner  {
			display: flex;
			gap: 30px;
			justify-content: flex-end;
		}
		
		header #headerTop .headerTopInner a  {
			color: var(--blueLight);
			font-weight: 600;
		}
		
		header #headerTop .headerTopInner a:hover {
			color: var(--blue);
			font-weight: 600;
		}
		
	header #headerBottom {
		display: flex;
		align-items: center;
		width: 100%;
		background-color: var(--white);
	}
	
		header #headerBottom .headerBottomInner  {
			position: relative;
			display: flex;
			gap: 30px;
			justify-content: flex-end;
			color: var(--white);
		}
		
		header #headerBottom .headerBottomInner #logo {
			position: absolute;
			left: 3vw;
			top: -40px;
			background: var(--white);
			padding: 20px 30px;
			height: calc(100% + 40px);
			box-sizing: border-box;
			
			display: flex;
			align-items: center;
			justify-content: center;
			
			box-shadow: 0px -13px 18.5px -4px #051B2A26;
		}		
	
			header #headerBottom .headerBottomInner #logo a,
			header #headerBottom .headerBottomInner #logo a img {
				display: block;
				width: 200px;
				height: auto;
				transition: all 0.2s ease;
			}
			
header #headerBottom .headerBottomInner ul {
    list-style: none;
    height: 75px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.2s ease;
}
	
			header #headerBottom .headerBottomInner ul li a {
				display: flex;
				align-items: center;
				gap: 8px;
				padding: 2px 0;
			}

				header #headerBottom .headerBottomInner ul li.icoContact a:before {
					content: "";
					display: inline-block;
					width: 16px;
					height: 16px;
					background-image: url(../graf/icoContact.svg);
				}
	
			header #headerBottom .headerBottomInner ul li.current-page-ancestor a,
			header #headerBottom .headerBottomInner ul li.current_page_item a {
				color: #107099;
				border-bottom: 1px solid #107099;
			}
			
			header #headerBottom .headerBottomInner ul li.icoContact a:hover {
				color: var(--blue);
			}
			
			header #headerBottom .headerBottomInner ul li a svg {			
				transition: all 0.2s ease;
			}
			
			header #headerBottom .headerBottomInner ul li a:hover svg {
				filter: brightness(0) saturate(100%) invert(80%) sepia(15%) saturate(6368%) hue-rotate(157deg) brightness(93%) contrast(87%);
				transition: all 0.2s ease;
			}
			
			header #headerBottom .headerBottomInner ul li ul.sub-menu {
				display: none !important;
			}
				
@media screen and (max-width: 1150px) {
	header #headerBottom .headerBottomInner #logo a,
	header #headerBottom .headerBottomInner #logo a img {
		width: 150px;
		transition: all 0.2s ease;
	}
	
	header #headerBottom .headerBottomInner ul {
		gap: 15px;
		transition: all 0.2s ease;
	}
}


.mega-submenu {
	position: relative;
	z-index: 5;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h, 75px);
    z-index: 999;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
	
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.08);
    pointer-events: none	
}

.mega-submenu.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(-1px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: auto
}

.mega-submenu:before {
	content: "";
	z-index: -1;
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../graf/heroBg.png);	
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	transform: scaleY(-1);
}

.mega-submenu .mega-close {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 36px;
    height: 36px;
	background: transparent;
    color: var(--txt);
    border: 0;
    cursor: pointer;
    font-size: 32px;
	font-weight: 300;
    line-height: 1;
	transition: all 0.2s ease;
}

.mega-submenu .mega-close:hover {
    color: var(--blue);
	transition: all 0.2s ease;
}

.mega-submenu .mega-inner {
    display: block;
    padding: 30px 3% 50px 3%;
}


	.mega-submenu .mega-inner .wp-block-columns {
		gap: 50px;
	}
	
	.mega-submenu .mega-inner .wp-block-column:first-child {
		
	}
		
		.mega-submenu .mega-inner .wp-block-column:first-child figure {
			display: block;
			width: 100%;
			height: 100%;
		}

			.mega-submenu .mega-inner .wp-block-column:first-child figure img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: 50% 50%;
			}

	
	.mega-submenu .mega-inner .wp-block-column:last-child {
		min-width: 500px;
		color: var(--txt);
		
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	
		.mega-submenu .mega-inner .wp-block-column:last-child .status {
			position: relative;
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 16px;
			background: #C7F0C2;
			color: #054460;
			padding: 2px 13px;
			font-weight: 600;
			border-radius: 2px;
		}
		
			.mega-submenu .mega-inner .wp-block-column:last-child .status:before {
				content: "";
				display: block;
				width: 17px;
				height: 17px;
				background-image: url(../graf/icoStatus.svg);
				background-size: contain;
				background-repeat: no-repeat;
				background-position: 50% 50%;
			}

		.mega-submenu .mega-inner .wp-block-column:last-child h3 {
			margin: 30px 0 10px 0;
			font-weight: 600;
		}

		.mega-submenu .mega-inner .wp-block-column:last-child h3 {
			margin: 30px 0 10px 0;
			font-weight: 600;
		}

		.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-buttons {
			margin-top: auto;
			width: 100%;
		}

			.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button {
				flex: 1 1 0;
			}
			
			.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a {
				position: relative;
				display: flex;
				align-items: center;
				gap: 8px;
				background: #E3F3FAB2;
				border: 0px;
				outline: 0px;
				padding: 12px 25px 12px 25px;
				border-radius: 2px;
				color: #054460;
			}
			
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a img {
					display: inline-block;
					margin: 0;
					height: 16px;
					width: auto;
					transition: all 0.3s ease-in-out;
				}
				
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a:before {
					content: "";
					width: 0;
					height: 1px;
					
					position: absolute;
					bottom: 0;
					left: 50%;
					transform: translateX(-50%);
					background: #107099;
					transition: all 0.3s ease-in-out;
				}
				
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a:after {
					content: "";
					display: inline-block;
					width: 16px;
					height: 16px;
					margin-left: auto;

					background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 3L11 8L6 13' fill='none' stroke='%23054460' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
					background-repeat: no-repeat;
					background-position: center;
					background-size: contain;		
					transition: all 0.3s ease-in-out;
				}
					
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a:hover {
					background: #E3F3FA;
					color: #107099;
				}
		
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a:hover img {
					opacity: 0.85;
					transition: all 0.3s ease-in-out;
				}
				
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a:hover:before {
					width: 100%;
					transition: all 0.3s ease-in-out;
				}
				
				.mega-submenu .mega-inner .wp-block-column:last-child .wp-block-button a:hover:after {
					opacity: 0.75;
					transition: all 0.3s ease-in-out;
				}
					
header.fixed #headerBottom .headerBottomInner ul {
	height: 50px;
}
				
				
#container {
	padding-top: 115px;
}

#content {
	
}

	#content p {
		padding: 8px 0;
	}

#hero {
	background-image: url(../graf/heroBg.png);
	background-repeat: no-repeat;
	background-size: auto 80%;
	background-position: 0% 0%;
}


	#hero .wp-block-columns {
		display: grid; 
		grid-auto-columns: 1fr; 
		grid-template-columns: auto 750px 50%; 
		gap: 0px 0px; 
	}

		#hero .wp-block-columns:before {
			content: "";
		}
		
		
		#hero .wp-block-column:first-child {
			align-self: center;
			padding: 50px 3vw;
			
			font-size: 24px;
			font-weight: 400;
		}
			
			#hero .wp-block-columns em {
				font-style: normal;
				background-color: var(--blueLight);
				padding: 2px 2px;
			}
			
			#hero .wp-block-columns h1 {
				display: block;
				margin-top: 50px;
				margin-bottom: 15px;
			}
				
				#hero .wp-block-columns h1 strong {
					display: block;
				}
				
				
		#hero .swiper-horizontal,
		#hero .wp-block-emedia-image-slider {
			height: 100%;
		}
				
@media screen and (max-width: 1500px) {
	#hero .wp-block-columns {
		display: grid; 
		grid-auto-columns: 1fr; 
		grid-template-columns: 50% 50%; 
		gap: 0px 0px; 
	}

		#hero .wp-block-columns:before {
			display: none;
		}
}

#companyIcons {
	background: var(--blueDark);
	padding: 70px 0;
	color: var(--white);
}

	#companyIcons .wp-block-columns {
		gap: 50px;
	}
	
	#companyIcons .wp-block-columns p {
		padding: 8px 0 0 0;
	}
	
	#companyIcons strong {
		color: var(--blue);
		font-size: 24px;
	}
	
#naszeInwestycje {
	margin: 80px auto;
}
	
	#naszeInwestycje h2 {
		margin: 15px 0 35px 0;
	}
	
	#naszeInwestycje h3 {
		margin: 35px 0 15px 0;
	}
		
	#naszeInwestycje .aktualna {
		padding: 20px;
		border: 1px solid #C8CCCE;
		margin: 20px auto;
	}
	
		#naszeInwestycje .gallery-content {
			padding: 10px 0 20px 15px;
		}
	
		#naszeInwestycje .aktualna .status {
			position: relative;
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 16px;
			background: #C7F0C2;
			color: #054460;
			padding: 2px 13px;
			font-weight: 600;
			border-radius: 2px;
		}
		
			#naszeInwestycje .aktualna .status:before {
				content: "";
				display: block;
				width: 17px;
				height: 17px;
				background-image: url(../graf/icoStatus.svg);
				background-size: contain;
				background-repeat: no-repeat;
				background-position: 50% 50%;
			}
			
		#naszeInwestycje .aktualna .details {
			margin: 35px 0 45px 0;
		}
		
			#naszeInwestycje .aktualna .wp-block-media-text {
				margin: 0 0;
				grid-template-columns: 18px auto !important;
			}
		
			#naszeInwestycje .aktualna .wp-block-media-text .wp-block-media-text__content {
				padding: 0 0 0 10px;
			}
		
			#naszeInwestycje .aktualna .wp-block-media-text p {
				padding: 2px 0;
			}
				
	#naszeInwestycje .zrealizowana {
		padding: 20px;
		border: 1px solid #C8CCCE;
		margin: 20px auto;
	}
	
		#naszeInwestycje .zrealizowana .wp-block-columns {
			gap: 50px;
		}
		
			#naszeInwestycje .zrealizowana .wp-block-column:first-child {
				flex-basis: 50%;
			}
		
			#naszeInwestycje .zrealizowana .wp-block-column:last-child {
				flex-basis: 50%;
			}
				
		#naszeInwestycje .zrealizowana .wp-block-buttons {
			margin-top: 30px;
		}
		
		#naszeInwestycje .zrealizowana .status {
			position: relative;
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 16px;
			background: #E3F3FA;
			color: #054460;
			padding: 2px 13px;
			font-weight: 600;
			border-radius: 2px;
		}
	
#dlaczegoMy {
	margin: 80px auto 0 auto;
	padding: 70px 0;
	background: var(--blueDark);
	
	color: #fff;
}

	#dlaczegoMy .wp-block-columns {
		gap: 10%;
	}
	
	@media screen and (max-width: 1200px) {
		#dlaczegoMy .wp-block-columns {
			gap: 5%;
		}
	}
	
	#dlaczegoMy .wp-block-columns p {
		padding: 3px 0;
	}
		
	#dlaczegoMy .wp-block-column:first-child {
		flex-basis: 450px;
		min-width: 450px;
	}
	

	#dlaczegoMy .wp-block-column:last-child {
		flex-basis: auto;
	}
		
		#dlaczegoMy h2 {
			color: #fff;
			margin: 30px 0 15px 0;
		}
		
		#dlaczegoMy .wp-block-buttons {
			margin-top: 50px;
		}
		
		#dlaczegoMy .wp-block-media-text {
			padding: 20px 0;
			border-bottom: 1px solid rgba(255 255 255 / 0.2);
			grid-template-columns: 75px auto !important;
		}
		
		#dlaczegoMy .wp-block-media-text:first-child {
			padding-top: 0;
		}
		
		#dlaczegoMy .wp-block-media-text:last-child {
			padding-bottom: 0;
			border-bottom: 0;
		}
		
			#dlaczegoMy .wp-block-media-text .wp-block-media-text__content {
				padding: 0 0 0 50px;
			}
			
				#dlaczegoMy .wp-block-media-text .wp-block-media-text__content strong {
					color: var(--blue);
					font-size: 24px;
					
					display: block;
					padding-bottom: 5px;
				}
				
#kontakt {	
	padding: 70px 0;
}	

	#kontakt .wp-block-columns {
		gap: 80px;
		align-items: center !important;
	}

	#kontakt .wp-block-column:nth-child(1) {
		flex-basis: 420px;
		flex-grow: 0;
	}
	
		#kontakt .wp-block-column:nth-child(1) h2 {
			margin: 30px 0 15px 0;
		}
	
		#kontakt .wp-block-column:nth-child(1) .wp-block-buttons {
			margin-top: 35px;
		}
		

	#kontakt .wp-block-column:nth-child(2) {
		flex-basis: 380px;
		flex-grow: 0;
	}
	
		#kontakt .wp-block-column:nth-child(2) .wp-block-media-text {
			background: var(--blueLight);
			margin: 15px 0;
			
			padding: 20px 30px;
			box-sizing: border-box;
			font-size: 20px;
			line-height: 1.3;
		}
		
		#kontakt .wp-block-column:nth-child(2) .wp-block-media-text .wp-block-media-text__content {
			padding: 0 0 0 15px;
		}
		
	#kontakt .wp-block-column:nth-child(3) {
		flex-basis: auto;
		flex-grow: 1;
	}

		
		#kontakt .wp-block-columns .fb_iframe_widget,
		#kontakt .wp-block-columns .fb_iframe_widget > span,
		#kontakt .wp-block-columns iframe {
			width: 100% !important;
			max-width: 450px;
			min-width: 300px;
		}
	
@media screen and (max-width: 1300px) {
	#kontakt .wp-block-columns {
		gap: 30px;
	}
	
	#kontakt .wp-block-column:nth-child(2) {
		flex-basis: auto;
		min-width: 270px;
	}
	
	#kontakt .wp-block-column:nth-child(2) .wp-block-media-text {
		grid-template-columns: 30px auto !important;
		padding: 15px 20px;
		
		font-size: 18px;
	}
	
}
	
footer {
	background: var(--blueDark);
	padding: 70px 0 0 0;
	color: var(--white);
}

	footer .wp-block-columns {
		gap: 100px;
		padding-bottom: 70px;
	}
	
	@media screen and (max-width: 1200px) {
		footer .wp-block-columns {
			gap: 30px;
		}
	}

		footer .wp-block-column:nth-child(1) {
			flex-basis: 40% !important;
			line-height: 2;
			border-right: 1px solid rgba(255 255 255 / 0.2);
		}
		
			footer .wp-block-column:nth-child(1) figure {
				margin-bottom: 15px;
			}
		
			footer .wp-block-column:nth-child(1) a {
				display: flex;
				color: #fff;
			}
		
			footer .wp-block-column:nth-child(1) a:hover {
				color: var(--blue);
			}

		footer .wp-block-column:nth-child(2),
		footer .wp-block-column:nth-child(3),
		footer .wp-block-column:nth-child(4) {
			flex-basis: 20% !important;
		}

			footer .wp-block-column:nth-child(2) strong,
			footer .wp-block-column:nth-child(3) strong,
			footer .wp-block-column:nth-child(4) strong {
				font-size: 24px;
				color: var(--blue);
				display: block;
				margin-bottom: 10px;
			}

			footer .wp-block-column:nth-child(2) a,
			footer .wp-block-column:nth-child(3) a,
			footer .wp-block-column:nth-child(4) a {
				display: inline-block;
				margin: 10px 0;
				color: var(--white);
			}
		

			footer .wp-block-column:nth-child(2) a:hover,
			footer .wp-block-column:nth-child(3) a:hover,
			footer .wp-block-column:nth-child(4) a:hover {
				color: var(--blue);
			}
		
	footer .footerBottom  {
		background: #E3F3FA;
		padding: 10px 0;
	}
		
		footer .footerBottomInner {
			display: flex;
			align-items: center;
			justify-content: space-between;
			
			color: var(--blueMiddle);
		}
		
		footer .footerBottomInner a {
			color: var(--blueMiddle);
		}
		
		footer .footerBottomInner a:hover {
			color: var(--blueDark);
		}
		

#pageHeader {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	min-height: 300px;
	
	padding: 20px 0 70px 0;
	box-sizing: border-box;
	
	display: flex;
	align-items: stretch;
}

	#pageHeader .pageHeaderInner {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	
	#pageHeader #breadcrumbs {
		color: var(--white);
	}

		#pageHeader #breadcrumbs a,
		#pageHeader #breadcrumbs a span {
			font-size: 14px;
			color: var(--white);
		}
		
		#pageHeader #breadcrumbs span.breadcrumb_last {
			color: var(--blue);
			font-weight: 600;
		}
			
	#pageHeader figure.imgBg {
		position: absolute;
		z-index: -1;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}

		#pageHeader figure.imgBg:before {
			content :"";
			display: block;
			width: 100%;
			height: 100%;
			
			position: absolute;
			left: 0;
			top: 0;
			background: #051B2AB2;

			
		}
		
		#pageHeader figure.imgBg img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: 50% 50%;
		}
		
	#pageHeader figure.imgSeparator {
		margin-top: auto;		
	}
		
	#pageHeader h1 {
		color: #fff;
		font-weight: 600;
	}
	
.contentBox-2cols {
	margin: 70px 0;
}
	
	.contentBox-2cols .wp-block-columns {
		gap: 10%;
	}
	
	.contentBox-2cols .wp-block-column:first-child {
		flex-basis: 40%;
	}
	
		.contentBox-2cols .wp-block-column:first-child figure {
			margin-bottom: 25px;
		
		}
		
		.contentBox-2cols .wp-block-column:first-child .wp-block-buttons {
			margin-top: 35px;		
		}
		
	
	.contentBox-2cols .wp-block-column:last-child {
		flex-basis: 60%;
	}
	
		.contentBox-2cols .wp-block-column:last-child p {
			padding: 2px 0 !important;
		}
		
		.contentBox-2cols .wp-block-column:last-child .wp-block-media-text {
			padding: 20px 0;
			border-bottom: 1px solid rgba(0 0 0 / 0.1);
			grid-template-columns: 75px auto !important;
		}
		
		.contentBox-2cols .wp-block-column:last-child .wp-block-media-text:first-child {
			padding-top: 0;
		}
		
		.contentBox-2cols .wp-block-column:last-child .wp-block-media-text:last-child {
			padding-bottom: 0;
			border-bottom: 0;
		}
		
			.contentBox-2cols .wp-block-column:last-child .wp-block-media-text .wp-block-media-text__content {
				padding: 0 0 0 50px;
			}
			
				.contentBox-2cols .wp-block-column:last-child .wp-block-media-text .wp-block-media-text__content strong {					font-size: 24px;
					
					display: block;
					padding-bottom: 5px;
				}
				
.contentBox-2cols-imgRight {
	display: grid !important;
	grid-auto-columns: 1fr; 
	grid-template-columns: auto minmax(auto, 750px) 50%; 
	grid-template-rows: 1fr; 
	gap: 0; 
	grid-template-areas: 
		". content img"; 
	margin: 20px auto;
}
				
	.contentBox-2cols-imgRight:before {
		content: "";
		background: #F5FAFC;
	}
		
	.contentBox-2cols-imgRight .wp-block-column:first-child {
		grid-area: content;
		padding: 80px 100px 80px 3vw;
		box-sizing: border-box;
		background: #F5FAFC;
		border-right: 10px solid var(--white);
	}		
	
	@media screen and (max-width: 1250px) {
		.contentBox-2cols-imgRight .wp-block-column:first-child {
			padding: 35px 40px 35px 3vw;
		}
	}
	
		.contentBox-2cols-imgRight .wp-block-column:first-child h2 {
			margin: 30px 0 15px 0;
		}
				
		.contentBox-2cols-imgRight .wp-block-column:first-child .wp-block-buttons {
			margin-top: 40px;			
		}
				
	.contentBox-2cols-imgRight .wp-block-column:last-child {
		grid-area: img;
		position: relative;
		width: 100%;
		height: 100%;
	}
					
		.contentBox-2cols-imgRight .wp-block-column:last-child figure {
			display: block;
			width: 100%;
			height: 100%;
			
			position: absolute;
			left: 0;
			top: 0;
			border-left: 10px solid var(--white);
		}
					
			.contentBox-2cols-imgRight .wp-block-column:last-child figure img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: 50% 50%;
			}
					
				
.contentBox-2cols-imgLeft {
	display: grid !important;
	grid-auto-columns: 1fr; 
	grid-template-columns: 50% minmax(auto, 750px) auto; 
	grid-template-rows: 1fr; 
	gap: 0; 
	grid-template-areas: 
		"img content ."; 
	margin: 20px auto;
}
				
	.contentBox-2cols-imgLeft:after {
		content: "";
		background: #F5FAFC;
	}
	
	.contentBox-2cols-imgLeft .wp-block-column:first-child {
		grid-area: img;
		position: relative;
		width: 100%;
		height: 100%;
	}
					
		.contentBox-2cols-imgLeft .wp-block-column:first-child figure {
			display: block;
			width: 100%;
			height: 100%;
			
			position: absolute;
			right: 0;
			top: 0;
			border-right: 10px solid var(--white);
		}
					
			.contentBox-2cols-imgLeft .wp-block-column:first-child figure img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: 50% 50%;
			}
		
	.contentBox-2cols-imgLeft .wp-block-column:last-child {
		grid-area: content;
		padding: 80px 3vw 80px 100px;
		box-sizing: border-box;
		background: #F5FAFC;
		border-left: 10px solid var(--white);
	}		

	@media screen and (max-width: 1250px) {
		.contentBox-2cols-imgLeft .wp-block-column:last-child {
			padding: 35px 3vw 35px 40px;
		}
	}
	
		.contentBox-2cols-imgLeft .wp-block-column:last-child h2 {
			margin: 30px 0 15px 0;
		}
				
		.contentBox-2cols-imgLeft .wp-block-column:last-child .wp-block-buttons {
			margin-top: 40px;			
		}
				
		.contentBox-2cols-imgLeft .wp-block-column:last-child ul {
			margin-left: 25px;
		}
					
					
#zrealizowneInwestycje {
	background: #f1f2f2;
	padding: 70px 0;
}
				
	#zrealizowneInwestycje .wp-block-columns:first-child {
		margin-bottom: 40px;
	}
	
		#zrealizowneInwestycje .wp-block-columns:first-child h2 {
			margin-top: 20px;
		}
				
	#zrealizowneInwestycje .wp-block-columns:last-child {
		background: #fff;
		padding: 50px 40px;
		box-sizing: border-box;
		width: 94%;
		max-width: calc(1500px - 6%);
		gap: 100px;
	}
	
		#zrealizowneInwestycje .wp-block-columns:last-child .wp-block-column:first-child {
			flex-basis: 46%;
		}
	
		#zrealizowneInwestycje .wp-block-columns:last-child .wp-block-column:last-child {
			flex-basis: 54%;
		}
		
		#zrealizowneInwestycje .wp-block-columns:last-child h3 {
			padding-bottom: 15px;
		}
		
		
.wp-block-emedia-info-row {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    column-gap: 15px;
	margin: 10px auto;
    background: #E3F3FA;
    color: #054460;
    padding: 14px 20px;
    border-radius: 4px
}

.wp-block-emedia-info-row .info-icon {
    width: 20px;
    height: 20px;
    object-fit: contain
}

.wp-block-emedia-info-row .info-left {
    display: flex;
    align-items: center
}

.wp-block-emedia-info-row .info-text {
    font-size: 16px;
    line-height: 1.5
}

.wp-block-emedia-info-row .info-right {
    text-align: right;
    padding-left: 20px
}

.wp-block-emedia-info-row .info-right-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5
}

#szukaszMieszkania {
	position: relative;
	margin-top: -70px;
}

	#szukaszMieszkania .wp-block-columns {
		position: relative;
		top: 70px;
	}

		#szukaszMieszkania .wp-block-column:first-child {
			flex-basis: 100%;
			
			background: linear-gradient(90deg, #051B2A 40%, rgba(5, 27, 42, 0.817439) 50%, rgba(5, 27, 42, 0) 70%);

			position: relative;
			z-index: 5;
			padding: 30px 40px;
			box-sizing: border-box;
			color: #fff;
			font-size: 20px;
		}

			#szukaszMieszkania .wp-block-column:first-child h2 {
				color: #fff;
				margin: 15px 0 0 0;
			}
			
			#szukaszMieszkania .wp-block-column:first-child .wp-block-buttons {
				margin-top: 20px;
			}
				
		#szukaszMieszkania .wp-block-column:last-child {
			
		}

			#szukaszMieszkania .wp-block-column:last-child figure {
				position: absolute;
				right: 0;
				top: 0;
				width: 70%;
				height: 100%;
			}
		
				#szukaszMieszkania .wp-block-column:last-child figure img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: cover;
					object-position: 50% 50%;
				}
				
				
#maszPytania {
	position: relative;
	padding: 140px 3% 90px 3%;
	box-sizing: border-box;
}
				
	#maszPytania h2 {
		margin: 15px 0;
	}
				
	#maszPytania .wp-block-buttons {
		margin-top: 10px;
		justify-content: center;
	}
	
#kontaktPage {
	padding: 70px 0;
	position: relative;
	z-index: 5;
}
	
	#kontaktPage .wp-block-columns {
		justify-content: space-between;
		align-items: flex-end !important;
	}
	
	#kontaktPage .wp-block-column:first-child {
		flex-basis: 40%;
		flex-grow: 0;
	}
	
		#kontaktPage .wp-block-column:first-child h2 {
			margin-bottom: 25px;
		}
		
		#kontaktPage .wp-block-column:first-child .wp-block-media-text {
			grid-template-columns: 50px auto !important;
			background: var(--blueLight);
			margin: 15px 0;
			
			padding: 20px 30px;
			box-sizing: border-box;
			font-size: 20px;
			line-height: 1.3;
		}
	
		#kontaktPage .wp-block-column:first-child .wp-block-media-text .wp-block-media-text__content {
			padding: 0 0 0 20px;
		}
	
	
	#kontaktPage .wp-block-column:last-child {
		flex-basis: 40%;
		flex-grow: 0;
		margin-top: -300px;
	}
	
@media screen and (max-width: 1300px) {
	#kontaktPage .wp-block-column:first-child {
		flex-basis: 45%;
	}
	
	#kontaktPage .wp-block-column:last-child {
		flex-basis: 45%;
	}
}
	
form.wpcf7-form {
	padding: 50px 60px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #C8CCCE;
	box-shadow: 0px 4px 20px 0px #051B2A0D;
}

@media screen and (max-width: 1300px) {
	form.wpcf7-form {
		padding: 30px 35px;
	}
}

	form.wpcf7-form h3 {
		font-weight: 600;
		text-align: center;
		margin-bottom: 20px;
	}
	
	form.wpcf7-form label {
		display: block;
		margin: 15px 0;
	}
		
		form.wpcf7-form label strong {
			display: block;
			padding-bottom: 5px;
			font-weight: 400;
		}
		
		form.wpcf7-form label input {
			font-family: "Blinker", sans-serif;

			display: block;
			border: 1px solid #C8CCCE;
			width: 100%;
			box-sizing: border-box;
			padding: 10px 12px;
			font-size: 16px;
		}
		
		form.wpcf7-form label textarea {
			font-family: "Blinker", sans-serif;

			display: block;
			border: 1px solid #C8CCCE;
			width: 100%;
			height: 150px;
			box-sizing: border-box;
			padding: 10px 12px;
			font-size: 16px;
			resize: none;
		}
		
		form.wpcf7-form label input::placeholder,
		form.wpcf7-form label textarea::placeholder {
			color: #AFAFAF;
		}
	
	form.wpcf7-form .wpcf7-acceptance span.wpcf7-list-item {
		margin: 0;
		padding: 0;
	}
	
	form.wpcf7-form .wpcf7-acceptance label {
		display: grid;
		grid-template-columns: 14px auto;
		grid-auto-columns: 1fr;
		gap: 10px;
		grid-auto-flow: row;
		align-items: flex-start;
	}
	
		form.wpcf7-form .wpcf7-acceptance label input {
			margin-top: 7px;
		}
	
	form.wpcf7-form .administrator {
		line-height: 1.4;
	}
	
	form.wpcf7-form .submit {
		text-align: center;
		margin-top: 30px;
	}
	

	.wpcf7-not-valid-tip {
		display: block;
		padding: 2px 0;
		color: #dc3232;
		line-height: 1.2;
		font-size: 14px;
	}
	
	form.failed .wpcf7-response-output,
	form.invalid .wpcf7-response-output {
		background: #dc3232;
		color: #fff;
		border-radius: 8px;
		border: 0;
		padding: 10px;
		box-sizing: border-box;
		text-align: center;
	}

	form.sent .wpcf7-response-output {
		background: var(--blue);
		color: #fff;
		border-radius: 8px;
		border: 0;
		padding: 10px;
		box-sizing: border-box;
		text-align: center;
	}
	
#inwestycjaGaleria {
	padding: 25px 15px;
	width: 94%;
	max-width: calc(1500px - 6%);
	box-sizing: border-box;
	border: 1px solid #C8CCCE;
	margin: 120px auto 70px auto;
}
		
	#inwestycjaGaleria .wp-block-emedia-image-slider {
		
	}

#zSzacunkiem {
	background: var(--blueDark);
	padding: 70px 0;
	color: var(--white);
}

	#zSzacunkiem h2 {
		color: var(--white);
		margin: 30px 0 15px 0;
	}

	#zSzacunkiem .wp-block-buttons {
		margin-top: 30px;
	}
	
	
#zainteresowalaCie {
	margin: 70px auto;
}

	#zainteresowalaCie h2 {
		margin: 30px 0 15px 0;
	}

	#zainteresowalaCie .wp-block-buttons {
		margin-top: 30px;
	}

	#zainteresowalaCie .wp-block-column:last-child figure {
		display: block;
		width: 100%;
		height: auto;
	}

		#zainteresowalaCie .wp-block-column:last-child figure img {
			display: block;
			width: 100%;
			height: auto;
		}