* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

html,
body {
	/* overflow-x: hidden; */
	scroll-behavior: smooth;
	scroll-padding-top: 12vh;
}

.wrapper {
	margin: auto;
	max-width: 1200px;
}

#cookieConsent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 20px 20px;
	z-index: 50;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	display: none;
}

#cookieConsent.show {
	display: block;
	opacity: 1;
}

.cookieConsent p {
	padding: 15px 0 20px 0;
}

.cookieConsent p a {
	text-decoration: none;
	color: #911913;
}

.cookieConsent__ok {
	padding: 10px 20px;
	text-decoration: none;
	background-color: #cbb26a;
	color: #fff;
	cursor: pointer;
	z-index: 50;
	transition: 0.3s;
	border-radius: 5px;
}

.cookieConsent__ok:hover {
	color: #333;
}

nav {
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
	background-color: rgba(221, 221, 221, 1);
}

.nav-container {
	position: relative;
	display: flex;
	align-items: center;
	height: 12vh;
}

nav img {
	margin-left: 30px;
	width: 140px;
}

nav .ul-container.active {
	max-height: 88vh;
}

nav .ul-container {
	display: flex;
	max-height: 0;
	overflow-y: hidden;
	transition: max-height 0.3s ease-in-out;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #ddd;
	list-style-type: none;
	height: 88vh;
	width: 100%;
	flex-direction: column;
	text-align: center;
	justify-content: space-around;
	z-index: 10;
}

nav a {
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	padding: 10px;
	letter-spacing: 2px;
	color: black;
	transition: color 0.3s;
}

nav a:hover {
	color: #cbb26a;
}

nav .line {
	width: 28px;
	height: 4px;
	background: black;
	margin: 10px;
	border-radius: 20px;
	transition: 0.3s ease-in-out;
}

nav .burger {
	position: absolute;
	right: 0;
	margin-right: 30px;
	background: none;
	border: none;
}

.burger.active .line:first-child {
	transform: translateY(-300px);
}

.burger.active .line:nth-child(2) {
	transform: rotate(45deg) translate(4px, 4px);
}

.burger.active .line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.submenu {
	position: relative;
	list-style-type: none;
}

.submenu-content {
	display: none;
}

.submenu-content a {
	display: flex;
	flex-direction: column;
	padding: 30px 0;
}

.submenu-content.opened {
	display: block;
	position: relative;
	background-color: #ddd;
	border: none;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translate(-50%, 0);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

/* header */

.header-img {
	position: relative;
	background-image: url(../images/header-img.jpg);
	height: 88vh;
	background-position: center;
	background-size: cover;
}

.header-shadow {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.header-text {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 36px;
	text-transform: uppercase;
	text-align: center;
	z-index: 3;
}

.header-title {
	font-size: 36px;
	margin-bottom: 40px;
	font-weight: bold;
}

.header-description {
	font-size: 36px;
	font-weight: normal;
}

.header-img .fa-chevron-down {
	font-size: 40px;
	color: white;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	transition: color 0.3s;
}

.header-img .fa-chevron-down:hover {
	color: #cbb26a;
}

/* sekcje */

.about-us {
	padding: 30px 0;
	position: relative;
	margin: 40px 0;
}

.section-title {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: bold;
	font-size: 30px;
	z-index: 50000;
}

.section-title h2 {
	font-size: 24px;
}

.underline {
	font-size: 24px;
	margin-bottom: 20px;
	transform: rotateY(180deg) rotateZ(30deg);
	color: #cbb26a;
	z-index: 5;
}

.about-us .content-container p {
	text-align: center;
	margin: 15px 20px;
}

.offer {
	padding: 40px 0 70px;
	position: relative;
	background-image: url(../images/header-img.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	z-index: 2;
}

.offer .section-title {
	padding-top: 30px;
	color: white;
}

.offer-shadow {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	z-index: -1;
}

.offer-card {
	align-items: center;
	position: relative;
	background-color: #fff;
	border-radius: 10px;
	margin: 10px 25px;
}

.offer-card img {
	width: 100%;
	height: 215px;
	background-position: center;
	background-size: cover;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.offer-card .title {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	padding: 15px 0;
}

.offer-card .description {
	padding: 25px 20px 60px;
	margin-bottom: 35px;
	text-align: center;
}

.offer-card a {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 15px 15px;
	font-size: 14px;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #cbb26a;
	text-decoration: none;
	color: white;
}

.reviews {
	padding: 40px 0;
	background-color: #cbb26a;
}

.reviews .section-title {
	padding-top: 25px;
}

.reviews .underline {
	color: black;
}

.review-card i {
	padding: 10px 20px;
	font-size: 40px;
}

.review-card .description {
	padding: 15px 50px;
	text-align: center;
}

.review-card .name {
	padding: 15px 50px;
	font-weight: bold;
}

.review-card .name-description {
	padding: 3px 50px;
}

.reviews .slick-dots {
	text-align: center;
}

.reviews .slick-dots li {
	display: inline-block;
	margin: 20px 10px;
}

.reviews .slick-dots li button {
	background: #333333;
	width: 20px;
	height: 10px;
	border-radius: 2px;
	border: none;
	color: transparent;
}

.reviews .slick-dots li.slick-active button {
	background: #ddd;
}

.advantages {
	padding: 40px 0;
	text-align: center;
}

.advantages .icon-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	z-index: 3;
}

.advantages .icon-group {
	margin: 20px 0;
}

.advantages .icon {
	font-size: 50px;
	padding: 10px 0;
}

.advantages .icon-title {
	padding: 0 50px;
	font-size: 20px;
	font-weight: bold;
}

.advantages .icon-description {
	padding: 10px 30px;
}

.contact {
	position: relative;
	padding: 80px 0;
	background-color: #333;
}

.contact .form-info h3 {
	margin-bottom: 30px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: white;
}

.contact .section-title {
	color: white;
}

.contact .contact-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contact .contact-info {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	height: 100%;
	width: 300px;
	text-align: center;
	color: white;
}

.contact-info a {
	text-decoration: none;
	color: white;
}

.contact .contact-form {
	margin-top: 20px;
}

.contact .formField {
	width: 300px;
	height: 50px;
	padding-left: 10px;
	border-radius: 15px;
	margin: 10px 0;
	border: none;
	font-family: "Montserrat", sans-serif;
}

.contact .formMessage {
	padding-top: 10px;
	margin-bottom: 40px;
	height: 200px;
	resize: none;
	font-family: "Montserrat", sans-serif;
}

.g-recaptcha {
	margin-bottom: 40px;
}

.g-recaptcha iframe {
	position: relative;
	width: 100%;
	height: 75px;
}

.g-recaptcha iframe.active {
	border: 3px solid red;
}

.contact button {
	text-decoration: none;
	border: none;
	background-color: #cbb26a;
	padding: 15px 30px;
	border-radius: 5px;
	font-family: "Montserrat", sans-serif;
	cursor: pointer;
	transition: 0.3s;
}

.contact button:hover {
	color: white;
}

.contact .item {
	margin: 20px 0;
	transition: 0.4s;
	overflow: hidden;
}

.contact .item:hover {
	transform: scale(1.05);
}

.contact .info {
	font-size: 24px;
}

.contact .fa-solid {
	padding: 0 10px;
}

.contact .contact-info .description {
	text-transform: uppercase;
	padding-top: 8px;
	font-size: 18px;
}

footer .footer-underline {
	height: 1px;
	width: 100%;
	background-color: rgb(36, 36, 36);
}

footer .map iframe {
	border-top: 2px solid #cbb26a;
	border-bottom: 2px solid #cbb26a;
	border-left: none;
	border-right: none;
}

footer .main-info .logo {
	width: 140px;
	margin: 15px 0;
}

footer h2 {
	font-size: 15px;
	padding: 0 60px;
	font-weight: normal;
}

footer .offer-info h2 {
	text-transform: uppercase;
	font-weight: bold;
}

footer .second-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	text-align: center;
	padding: 40px 0;
	font-size: 15px;
}

footer a {
	text-decoration: none;
	color: black;
	transition: 0.1s;
}

footer a:hover {
	color: #cbb26a;
}

footer .second-container .main-info {
	padding: 15px 0;
}

footer .second-container .map {
	order: 3;
	margin: 20px 0;
}

footer .second-container .offer-info {
	margin-top: 30px;
	padding: 15px 0;
}

footer .second-container .offer-info h3 {
	margin-bottom: 10px;
}

footer .third-container {
	padding: 15px 0;
	text-align: center;
}

footer li {
	list-style-type: none;
	padding: 5px 0;
}

.subpage-header {
	position: relative;
	height: 25vh;
	background-position: center;
	background-size: cover;
}

.budowa-domow {
	background-image: url(/images/budowa-domow-header.jpg);
}

.wykonczenia-wnetrz {
	background-image: url(/images/wykonczenia-wnetrz-header.jpg);
}

.remonty-wnetrz {
	background-image: url(/images/remonty-domow-header.jpg);
}

.ukladanie-kostki {
	background-image: url(/images/ukladanie-kostki-header.jpg);
}

.realizacje {
	background-image: url(/images/realizacje.jpg);
}

.wykonanie-ogrodzen {
	background-image: url(/images/wykonanie-ogrodzen-header.jpg);
	background-position-y: 80%;
}

.subpage-header .header-title {
	position: absolute;
	color: white;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
	text-align: center;
	font-size: 26px;
	letter-spacing: 2px;
}

/* budowa domów - podstrona */

.main-description {
	text-align: center;
	font-size: 18px;
	padding: 30px 20px;
}

.main-description p {
	margin: 20px 0;
}

.section-step-p {
	text-align: center;
	padding: 0 30px;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 50px;
}

.grid-layout {
	padding: 0 24px;
}

.first-row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	min-height: 100vh;
}

.last-row {
	min-height: auto;
	padding-bottom: 50px;
}

.step-line {
	position: relative;
	height: 100%;
	width: 2px;
	background-color: #cbb26a;
}

.step-icon {
	position: absolute;
	left: -900%;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background-color: #333;
}

.step-icon .fa-solid {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.step-icon2 {
	top: 50%;
}

.description-container {
	padding-top: 200px;
	width: 170%;
	top: 35%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.description-container .title {
	text-transform: uppercase;
}

.description-container .title :first-child {
	font-size: 20px;
	font-weight: bold;
}

.content {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.content .description {
	padding: 30px 0;
	width: 100%;
}

.content img {
	border-radius: 10px;
	width: 100%;
	margin: auto;
}

.content .image {
	width: 100%;
	margin: auto;
	height: 250px;
	border-radius: 10px;
	background-position: center;
	background-size: cover;
}

/*
 .image1 {
	background-image: url(/images/wytyczenie-fundamentow.jpg);
}

.content .image2 {
	background-image: url(/images/kopanie-fundamentow.jpg);
}
.content .image3 {
	background-image: url(/images/fundamenty.jpg);
}
.content .image4 {
	background-image: url(/images/murowanie-scian.jpg);
}
.content .image5 {
	background-image: url(/images/lanie-plyt-betonowych.jpg);
}
.content .image6 {
	background-image: url(/images/konstrukcja-dachu.jpg);
}
.content .image7 {
	background-image: url(/images/zakonczenie-budowy.jpg);
} */
.content .image8 {
	position: relative;
	background-image: url(/images/wykonczenie.jpg);
}

.content a {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-decoration: none;
	border-radius: 10px;
	text-transform: uppercase;
	color: #333;
	padding: 10px 30px;
	background-color: #cbb26a;
	transition: 0.3s;
}

.content a:hover {
	color: white;
}

/* wykończenia wnętrz */

.advantages-subpage {
	background-color: #cbb26a;
}

/* realizacje */

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 10px;
	margin: 50px 10px;
}

.gallery img {
	width: 100%;
	height: 250px;
	transition: 0.3s;
}

#lightboxOverlay {
	width: 100vw !important;
	height: auto;
}

/* remonty domów */

.offer-subpage {
	padding-bottom: 40px;
}

.subpage-offer-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 50px;
}

.subpage-offer-card img {
	object-fit: cover;
	margin: 15px 0 0;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

.subpage-offer-card .description {
	padding: 10px 30px;
}

.subpage-offer-card-description h3 {
	font-size: 20px;
}

.container-404 {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url(/images/header-img.jpg);
	background-position: center;
	background-size: cover;
	padding: 90px 0;
	text-align: center;
}

.container-404 h1 {
	color: white;
	z-index: 5;
	padding: 10px 30px;
	text-transform: uppercase;
	font-size: 26px;
}

.container-404 p {
	color: white;
	padding: 10px 30px;
	z-index: 5;
	font-size: 18px;
}

.container-404 a {
	margin: 30px 20px 0;
	z-index: 5;
	text-decoration: none;
	padding: 20px 20px;
	text-transform: uppercase;
	border-radius: 5px;
	background-color: #cbb26a;
	color: white;
	transition: 0.3s;
}

.container-404 a:hover {
	color: #333;
}

.privacy-policy-description {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px 60px;
}

.privacy-policy-description li {
	list-style: none;
	padding: 20px 10px;
}

footer .third-container {
	padding: 15px 0;
	text-align: center;
}

footer .third-container .proweb-container {
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

footer .third-container svg {
	width: 85px;
	transition: transform 0.3s;
}

footer .third-container svg:hover {
	transform: scale(1.05);
}

@media (min-width: 576px) {
	.offer-group {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}

	.offer-card:nth-child(1) {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.offer-card:nth-child(2) {
		grid-column-start: 3;
		grid-column-end: 5;
	}
	.offer-card:nth-child(3) {
		margin-top: 50px;
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.offer-card:nth-child(4) {
		margin-top: 50px;
		grid-column-start: 3;
		grid-column-end: 5;
	}
	.offer-card:nth-child(5) {
		margin-top: 50px;
		grid-column-start: 2;
		grid-column-end: 4;
	}
}

@media (min-width: 768px) {
	.subpage-header {
		height: 35vh;
	}

	.about-us .content-container p {
		font-size: 18px;
	}

	.contact .contact-container {
		flex-direction: row-reverse;
		align-items: start;
		justify-content: center;
	}

	.contact .map {
		margin: 0 20px;
		width: 50%;
	}

	.contact .contact-form {
		width: 50%;
		margin-top: 0;
	}

	.contact .formField {
		margin-left: 20px;
		width: 80%;
	}

	.g-recaptcha {
		margin-left: 20px;
	}

	.contact button {
		margin-left: 20px;
	}

	footer .first-container {
		grid-template-columns: repeat(2, 1fr);
	}

	footer .second-container {
		grid-template-columns: repeat(3, 1fr);
	}

	footer .second-container .main-info {
		order: 1;
	}

	footer .second-container .map {
		order: 2;
	}

	footer .second-container .offer-info {
		order: 3;
	}

	.content .image {
		width: 90%;
		height: 400px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.contact .form-info h3 {
		margin: 10px 0 40px 20px;
		padding-left: 7px;
	}

	footer .map iframe {
		border-radius: 10px;
		border: 2px solid #cbb26a;
	}

	.contact .contact-info {
		height: 100%;
	}

	.contact .form-info .first {
		margin: 0px;
		margin-top: 10px;
		margin-bottom: 40px;
		padding: 0px;
	}

	/* .gallery img{
		width: 350px;
	} */

	.subpage-offer-card-description {
		width: 50%;
	}

	.subpage-offer-card img {
		width: 50%;
	}

	.subpage-offer-card-left {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.subpage-offer-card-right {
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
	}

	.privacy-policy-description {
		font-size: 18px;
	}
}

@media (min-width: 992px) {
	html {
		scroll-padding-top: 12vh;
	}

	.burger {
		display: none;
	}

	nav .ul-container {
		max-height: none;
		overflow-y: visible;
		flex-direction: row;
		flex-wrap: wrap;
		transform: translate(0) translateY(-50%);
		top: 50%;
		margin-right: 30px;
		height: auto;
		width: auto;
		background-color: transparent;
	}

	.nav-container {
		height: 12vh;
	}

	.header-img {
		height: 88vh;
	}

	.submenu-content {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		border: 1px solid #ddd;
		margin-top: 5px;
		padding: 5px 20px;
	}

	.submenu-content.opened {
		display: block;
		position: absolute;
		background-color: #ddd;
		z-index: 5;
		animation: fadeIn 0.3s ease-in;
	}

	.submenu:hover .submenu-content {
		display: block;
		position: absolute;
		background-color: #ddd;
		z-index: 5;
		animation: fadeIn 0.3s ease-in;
	}

	.advantages .icon-container {
		grid-template-columns: repeat(3, 1fr);
	}

	.subpage-header .header-title {
		font-size: 36px;
	}

	.content .image {
		width: 75%;
		height: 350px;
	}

	.content img {
		width: 75%;
	}

	.last-row {
		padding-bottom: 100px;
	}

	.description-container .title :first-child {
		font-size: 30px;
		letter-spacing: 2px;
		margin-bottom: 15px;
	}

	.description-container .title {
		font-size: 20px;
	}

	.content .description {
		font-size: 18px;
		padding: 50px 30px;
	}

	.step-icon {
		left: -1400%;
		width: 60px;
		height: 60px;
	}

	.step-icon .fa-solid {
		font-size: 22px;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.gallery img {
		width: 350px;
	}

	.gallery img:hover {
		transform: scale(1.05);
	}

	.offer-card:nth-child(1) {
		grid-column-start: 1;
		grid-column-end: 4;
	}
	.offer-card:nth-child(2) {
		grid-column-start: 4;
		grid-column-end: 7;
	}
	.offer-card:nth-child(3) {
		margin-top: 10px;
		grid-column-start: 7;
		grid-column-end: 10;
	}
	.offer-card:nth-child(4) {
		grid-column-start: 2;
		grid-column-end: 5;
	}
	.offer-card:nth-child(5) {
		grid-column-start: 5;
		grid-column-end: 8;
	}

	.offer-group {
		display: grid;
		grid-template-columns: repeat(9, 1fr);
	}

	.container-404 h1 {
		font-size: 34px;
	}

	.container-404 p {
		font-size: 24px;
	}
}

@media (min-width: 2000px) {
	html {
		scroll-padding-top: 10vh;
	}

	.nav-container {
		height: 10vh;
	}

	.header-img {
		height: 90vh;
	}
}
