/* Resetowanie podstawowych stylów */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1 {
	color: black;
	font-size: 2.1em;
	font-weight: 700;
}

h2 {
	text-align: center;
	font-size: 2em;
	padding: 70px 0px 30px 0px;
}

h3 {
	font-size: 1.1em;
	font-weight: 500;
}

h4 {
	font-size: 1.1em;
	font-weight: 400;
}

.co-wykonujemy-link-list h4 {
	font-weight: 700;
}

body {
	font-family: "Montserrat";
	background-color: #e1e1e1;
}

p {
	font-size: 1em;
}

section {
	width: 100%;
}

html,
body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.background-oferta-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.subsite-container {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 70px 0px 30px 0px;
}

.subsite-container h2 {
	margin: 0;
	padding: 0;
}

body {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

body.fade-in {
	opacity: 1;
}

.hero-button {
	margin-top: 50px;
	display: inline-block;
	font-size: 1.5em;
	background-color: #fcd307;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.hero-button:hover {
	background-color: darkgoldenrod;
}

@media screen and (max-width: 1350px) {
	.subsite-container {
		display: flex;
		justify-content: center;
		gap: 10px;
		padding: 120px 10px 30px 10px;
	}

	.subsite-container h2 {
		margin: 0;
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	h1 {
		color: black;
		font-size: 2em;
		font-weight: 700;
	}

	h2 {
		font-size: 1.5em;
	}

	h4 {
		font-size: 1em;
	}

	h3 {
		font-size: 0.9em;
	}
}
