@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

.container {
	position: relative;
}

.container:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 18vw;
	z-index: -2;
	font-weight: 700;
	line-height: 0.5em;
	opacity: 0.04;
}

.container header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 100px;
}

.container header ul {
	position: relative;
	display: flex;
}

.container header ul li {
	list-style: none;
	margin: 0 20px;
}

.container header ul li a {
	position: relative;
	list-style: none;
	text-decoration: none;
	font-size: 18px;
	padding: 4px 10px;
	color: #000;
	text-decoration: none;
	z-index: 1;
}

.container header ul li:nth-child(3) a,
.container header ul li:nth-child(4) a {
	color: #000;
}

.container header ul li a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #f0140d;
	z-index: -1;
	transition: 0.5s ease-in-out
}

.container header ul li a:hover:before,
.container header ul li a.active:before {
	width: 40px;
}

.informacje {
	width: 100%;
	height: 950px;
	background: rgb(243, 243, 243);
	padding-bottom: 160px;
}

.kontener {
	position: absolute;
	width: 100%;
	height: 950px;
	background: rgb(243, 243, 243);
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-bottom: 160px;
	right: 0;
	bottom: 0;
	left: 0;
}

.zapytaj {
	margin: 1rem;
	margin-top: 90px;
	font-weight: normal;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contactInfo {
	position: relative;
	height: 400px;
	z-index: 1;
	margin-bottom: 210px;
}

.contactInfo h2 {
	color: #000;
	font-size: 24px;
	font-weight: 500;
}

.contactInfo ul.info {
	position: relative;
	margin: 20px 0;
}

.contactInfo ul.info li {
	position: relative;
	list-style: none;
	display: flex;
	margin: 20px 0;
	cursor: pointer;
	align-items: flex-start;
}

.contactInfo ul.info li span:nth-child(1) {
	width: 30px;
	min-width: 30px;
}

.contactInfo ul.info li span img,
.fas {
	max-width: 100%;
	font-size: 30px;
	color: #000
}

.contactInfo ul.info li span:nth-child(2) {
	color: #000;
	margin-left: 10px;
	font-weight: 300;
}

.contactInfo ul.info li:hover span img,
.contactInfo ul.info li:hover span:nth-child(2) {
	opacity: 1;
}

.form {
	margin: 1rem;
	padding-top: 30px;
	width: 500px;
}

.form .form-row {
	margin-bottom: 1rem;
}

.form .form-row:last-child {
	margin-bottom: 0;
}

.form input[type=text],
.form input[type=email],
.form textarea {
	font-family: sans-serif;
	padding: 0.8rem;
	border: none;
	border-bottom: 2px solid #aaa;
	display: block;
	width: 100%;
	color: #666;
}

.form input[type=text]:focus,
.form input[type=email]:focus,
.form textarea:focus {
	box-shadow: inset 0 0 0 1px, inset 0 1px 5px rgba(0, 0, 0, 0.07);
	outline: none;
}

.form textarea {
	height: 10rem;
}

.form label {
	display: block;
	font-size: 16px;
	margin-bottom: 0.5rem;
}

.form .submit-btn {
	font-family: sans-serif;
	padding: 1rem 2rem;
	background: none;
	border: 1px solid #333;
	color: #000;
	font-size: 1.1rem;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
}

.loading {
	position: relative;
	pointer-events: none;
	opacity: 0.5;
}

.loading::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-right-color: rgba(0, 0, 0, 0.7);
	transform: translate(-50%, -50%) rotate(0deg);
	content: "";
	animation: rotateSingleLoading 5s infinite linear;
	z-index: 10;
}

@keyframes rotateSingleLoading {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}


/* ---------------------------------------------------- */


/* walidacja formularza JS */


/* ---------------------------------------------------- */

.form input.field-error,
.form textarea.field-error {
	border-bottom: 2px solid tomato;
	outline: none;
}

.form-error-text {
	color: tomato;
	font-size: 0.8rem;
	margin-top: 5px;
}

.form-error-inline .form-error-text {
	display: none;
}


/* ---------------------------------------------------- */


/* sukces wysylania */


/* ---------------------------------------------------- */

.form-send-success,
.form-send-error {
	font-family: sans-serif;
}

.form-send-success strong,
.form-send-error strong {
	display: block;
	font-size: 1.5em;
	margin-bottom: 0.3em;
}

.burger {
	display: none;
    top: 0;
    left: 0;
    padding: 10px 20px;
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: 0.5s ease-in-out
}

.active {
	display: block;
	transition: 0.5s ease-in-out
}

.logo {
	cursor: pointer;
}

.sticky{
	z-index: 10000;
	position: fixed;
}

.topbar {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	background-color: #000;
	color: white;
	height: 30px;
}

iframe {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	border: none;
}

.footer {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 2rem;
	text-align: center;
	color: #000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
	background: #fff;
	z-index: 1;
}