 @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600&family=Montserrat:wght@300;400;500&family=Playfair+Display&display=swap');

 :root {
 	--font-size: 1rem;
 	--primary: #191D88 !important;
 	--primary-hover: #0b0d41 !important
 }

 section {
 	margin: 0;
 }

 ::marker {
 	color: var(--contrast);
 }



 h1,
 h2,
 h3,
 h4,
 h5 {
 	color: #0b0d41;
 	margin-bottom: 0.5rem;
 }


 @media(max-width:768px) {

 	.hide-mobile {
 		display: none !important;
 	}

 }


 @media(min-width:768px) {

 	.hide-desktop {
 		display: none !important;
 	}

 }



 /*header */

 .header {
 	background: var(--muted-border-color);
 	padding: 1rem 0;
 	border-bottom: solid 1px var(--muted-border-color);
 	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
 }

 .header-mobile-btn {
 	width: 50px;
 	height: 50px;
 	padding: 0.4rem;
 	margin: 0;
 }

 .header-mobile-btn img {
 	width: 100%;
 	height: 100%;
 	filter: invert(100%)
 }


 .header-logo {
 	margin: 0;
 	padding: 0;
 	font-size: 1.5rem;
 	font-style: italic;
 }

 .header-grid {
 	align-items: center;
 }

 .header-nav a {
 	color: var(--contrast);
 }

 .header-nav .current a {
 	color: #fff;
 }


 @media(min-width:768px) {

 	.header {
 		padding: 1rem 0;
 	}

 }

 @media(max-width:768px) {

 	.header-grid {
 		flex-wrap: wrap;
 	}

 	.header-nav {
 		display: flex;
 		flex-direction: column;
 		width: 100%;
 		padding: 0;
 		margin-right: 0 !important;
 		margin-left: 0 !important;
 		margin-top: 20px;
 	}

 	.header-nav li {
 		width: 100%;
 		padding: 8px 0;
 		margin: 0;

 	}

 	.header-nav a {
 		width: 100%;
 		text-align: center;
 		padding: 10px;
 		margin: 0;
 	}

 	.header-nav a[role="button"] {
 		margin-left: 0;
 		margin-right: 0;
 		padding: inherit;

 	}

 }


 /*content and aside */


 .content {
 	padding-bottom: 2rem;
 	padding-bottom: 0;
 }

 .content-grid {
 	display: grid;
 	grid-column: 1fr;
 	margin: 5rem 0;
 	gap: 1.3rem;
 }

 @media(min-width:768px) {
 	.content-grid {
 		grid-template-columns: 9fr 3fr;
 	}
 }

 .content-sidebar ul::marker {
 	color: #000;
 }

 .content-sidebar h2 {
 	margin-bottom: 10px;
 }


 .content-title {
 	padding: 4rem 15px;
 	background: #191D88;
 	color: #fff !important;
 	text-align: center;
 	position: relative;
 }

 .content-title .container {
 	position: relative;
 }

 .content-title-img {
 	position: absolute;
 	width: 100%;
 	height: 100%;
 	top: 0;
 	left: 0;
 	object-fit: cover;
 	opacity: .3;
 	filter: grayscale(100%);
 }



 .content-title h1 {
 	color: #fff;
 }

 .content-title nav ul {
 	margin: 0 auto;
 	display: flex;
 	width: auto;
 }

 .content-title a {
 	color: #fff;
 }


 .content-sidebar h2 {
 	padding-bottom: 10px;
 	border-bottom: solid 1px var(--muted-border-color);
 	margin-bottom: 20px;
 	display: block;
 }


 .content-sidebar ul {
 	list-style-type: square !important;
 	background: var(--primary);
 	color: #fff;
 	line-height: 1;
 	border-radius: 5px;
 	list-style-type: square;
 	align-items: center;
 	justify-content: center;
 }

 @media(min-width:768px) {

 	.content-sidebar {
 		margin-top: 2.7rem;
 	}

 }

 .content-main img {
 	margin-bottom: 1.3rem;
 	border-radius: 0.2rem;
 }


 .content-main nav[aria-label="breadcrumb"] li {
 	padding: 0 0.5rem;
 }

 .content-main nav[aria-label="breadcrumb"] a {
 	color: var(--muted-color);
 }



 /*footer */

 .footer-grid {
 	display: flex;
 	flex-direction: row;
 	justify-content: space-between;
 	align-items: center;
 }

 @media(max-width:768px) {
 	.footer-grid {
 		flex-direction: column;
 	}
 }



 /*grid variant */


 @media(min-width:768px) {

 	.content-grid-left {
 		grid-template-columns: 3fr 9fr;
 	}

 	.content-grid-left .content-sidebar {
 		order: 1;
 	}

 	.content-grid-left .content-main {
 		order: 2;
 	}

 	.content-grid-nosidebar {
 		grid-template-columns: 1fr;
 	}


 }


 .content-grid-nosidebar .content-sidebar {

 	display: none;
 }

 /*edit*/


 body {
 	font-family: 'Montserrat', sans-serif;
 }


 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
 	font-family: 'Barlow Condensed', sans-serif;
 }


 .content-section {

 	border-top: solid 1px #ddd;
 	border-bottom: solid 1px #ddd;
 	padding: 5rem 15px;
 	background: #fafafa;
 }


 .content-section h1 {
 	padding-left: 10px;
 	border-left: solid 5px #0b0d41;
 	margin-bottom: 30px;
 }

 .btn {
 	background: #191D88;
 	color: #fff;
 	display: inline-block;
 	border-radius: 2rem;
 	transition: all 250ms linear;
 	padding: 0.8rem 1.2rem;
 }

 .btn:hover {
 	background: #0b0d41;
 	text-decoration: none;
 }




 .btn-sm {
 	background: #191D88;
 	color: #fff;
 	display: inline-block;
 	border-radius: 2rem;
 	transition: all 250ms linear;
 	padding: 0.3rem 1rem;
 }

 .btn-sm:hover {
 	background: #0b0d41;
 	text-decoration: none;
 }

 .boxes {
 	padding: 3rem 15px;
 }

 .boxes-offer {
 	padding: 20px;
 	box-sizing: border-box;
 }


 .boxes-offer img {
 	width: 100%;
 	height: 180px;
 	object-fit: cover;
 	object-position: center center;
 	display: block;
 	margin-bottom: 20px;
 	border-top-right-radius: 2rem;
 	transition: all 250ms linear;
 }

 .boxes-offer p {
 	opacity: 0.8;
 }

 .boxes-offer h4::after {
 	content: '';
 	width: 100%;
 	height: 0;
 	margin: 10px 0;
 	display: block;
 	border-bottom: dashed 1px #00000030;
 }

 .boxes-offer:hover img {
 	filter: brightness(80%);
 }

 .boxes-title {
 	text-align: center;
 }

 .boxes-title::after {
 	content: '';
 	width: 50px;
 	height: 2px;
 	background: #0b0d41;
 	display: block;
 	margin: 0 auto;
 	margin-bottom: 20px;
 }

 .boxes-title p {
 	opacity: 0.8;
 }


 .realizacje-item {
 	height: 400px;
 	padding: 0;
 	margin: 0;
 	position: relative;
 	overflow: hidden;
 }

 .realizacje-item img {
 	width: 100%;
 	height: 100%;
 	display: block;
 	object-fit: cover;
 	position: relative;
 	top: 0;
 	left: 0;
 	transition: all 250ms linear;
 }

 .realizacje-item:not(.realizacje-item-all) p {
 	position: absolute;
 	bottom: 10px;
 	left: 30px;
 	z-index: 2;
 	font-weight: bold;
 	color: #fff;
 	font-size: 1.2rem;
 	opacity: 0;
 	transition-delay: 250ms;
 	transition: all 250ms 150ms linear;
 }

 .realizacje-item:hover p {
 	opacity: 1;
 }

 .realizacje-item:hover img {
 	filter: brightness(30%);
 	transform: scale(1.2);
 }

 .realizacje-item-all {
 	background: #0b0d41;
 	display: flex;
 	align-items: center;
 	color: #fff;
 	font-size: 1.5rem;
 	align-items: center;
 	justify-content: center;
 }


 .real-small {
 	font-size: 1.2rem;
 	display: block;
 	color: #fff;
 }

 .real-big {
 	font-size: 2.2rem;
 	font-weight: 700;
 	color: #fff;
 }

 .realizacje-item-all a {
 	width: 100%;
 	height: 100%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 }


 .realizacje-item-all p {
 	margin: 0;
 	padding: 0;
 }

 .realizacje-item-all a:hover {
 	text-decoration: none;
 	background: rgba(0, 0, 0, 0.4);
 }

 .moretext {
 	padding: 6rem 15px;
 }

 .moretextimg {
 	height: 600px;
 	object-fit: cover;
 	box-shadow: -20px -20px 0 #ddd;
 }

 .map {
 	margin: 0 !important;
 	padding: 0 !important;
 	overflow: hidden;
 }


 .footer {
 	background: var(--primary-hover);
 	color: #fff;
 }

 .footer :is(h1, h2, h3, h4, h5, h6) {
 	color: #fff;
 }


 .footer :is(h1, h2, h3, h4, h5, h6)::after {
 	content: '';
 	width: 100%;
 	margin: 10px 0;
 	display: block;
 	border-bottom: dashed 1px #ddd;
 }

 .footer p {
 	color: #fff;
 }

 .footer a {
 	color: #fff;
 }

 .footer .col-md-4 {
 	padding: 30px;
 }

 .footer ul {
 	display: grid;
 	grid-template-columns: 1fr 1fr 1fr;
 	gap: 10px;
 	flex-wrap: wrap;
 	list-style-type: square;
 }



 .footer ::marker {
 	color: #fff;
 }

 .footer a:hover {
 	opacity: 0.8;
 	text-decoration: none;
 }

 .subfooter {
 	background: #111;
 	padding: 10px 15px;
 	text-align: center;
 	font-size: 0.8rem;
 	color: #fff;
 }

 .subfooter a {
 	color: #fff;
 }

 .subfooter a:hover {
 	color: #fff;
 	text-decoration: none;
 	opacity: 0.8;
 }

 @media(max-width:768px) {

 	.footer ul {
 		display: flex !important;
 		flex-direction: column;
 		flex-wrap: wrap;
 		margin-left: 15px !important;
 	}


 }

 .offer {
 	height: 100%;
 	padding: 20px;
 	box-sizing: border-box;
 	background: #fafafafa;
 	margin: 20px 0;
 	border: solid 1px #ddd;
 	display: block;