* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	background-color: #fff;
	overflow-x: hidden;
	font-family: "Poppins-Light", Arial, sans-serif;
	font-weight: 300;
}

/* FONTY */
@font-face {
	font-family: "IcoFont";
	font-weight: normal;
	font-style: "Regular";
	src: url("fonty/icofont.woff2");
	font-display: swap;
}
@font-face {
	font-family: "Poppins-Light";
	src: url("fonty/Poppins-Light.woff2");
	font-display: swap;
}
@font-face {
	font-family: "Montserrat-Black";
	src: url("fonty/Montserrat-Black.woff2");
	font-display: swap;
}
@font-face {
	font-family: "Montserrat-SemiBold";
	src: url("fonty/Montserrat-SemiBold.woff2");
	font-display: swap;
}
h1 {
	font: 900 2rem/2.5rem "Montserrat-SemiBold", sans-serif;
	color: #fff;
}
h2 {
	font: 700 1.7rem/2rem "Montserrat-SemiBold", sans-serif;
}
h3 {
	font: 300 1.4rem/1.7rem "Montserrat-SemiBold", serif;
	color: #0e0e0e;
}
p {
	font: 400 1.1rem/1.6rem "Poppins-Light", Arial, sans-serif;
	color: #0e0e0e;
}
img {
	max-width: 100%;
	height: auto;
}
a {text-decoration: none;}
ul li {
	list-style: none;
}

/* MENU MOBILNE */
@media (min-width: 120px) and (max-width: 971px) {
	.mobile {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 70px;
		background: rgba(44, 62, 80, 1);
		z-index: 11;
	}
	.mobile-menu-logo img {
		width: 130px;
		height: 40px;
		margin-top: 12px;
		margin-left: 30px;
	}
	.menu {
		display: none;
		visibility: hidden;
	}
	.mobile-menu {
		display: none;
	}
	.mobile-menu-visible {
		display: block;
		position: fixed;
		left: 0px;
		right: 0px;
		top: 70px;
		background-color: rgba(0, 0, 0, 0.9);
		height: 34vh;
	}
	.mobile-menu-visible a {
		display: block;
		font-size: 1.1rem;
		margin: 1rem auto 2rem auto;
		text-align: center;
		font-weight: 400;
		color: #fff;
	}
	.mobile-menu a.active {
		color: #dd2c00;
		font-weight: 700;
	}
	.mobile-menu-visible a:hover {
		color: #dd2c00;
		transition: color 0.3s ease-out;
		font-weight: 700;
	}
	.mobile-menu-visible a:nth-child(1) {
		padding-top: 6px;
	}
	.mobile-menu-visible a:after {
		content: "";
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		position: absolute;
		left: 0;
		display: block;
		padding-top: 13px;
	}
	/* HAMBURGER MENU MOBILNEGO */
	#mobileMenu {
		position: fixed;
		top: 18px;
		right: 35px;
		cursor: pointer;
		width: 30px;
		height: 30px;
		z-index: 11;
		margin-top: 10px;
	}
	#mobileMenu span {
		display: block;
		height: 3px;
		width: 30px;
		background: #fff;
		margin-bottom: 6px;
		border-radius: 3px;
		top: 10px;
	}
	#mobileMenu.active span {
		position: absolute;
		top: 10;
		right: 0;
	}
	#mobileMenu.active span:nth-child(1) {
		display: none;
	}
	#mobileMenu.active span:nth-child(2) {
		transform: rotate(45deg);
	}
	#mobileMenu.active span:nth-child(3) {
		transform: rotate(-45deg);
	}
}
/* NAWIGACJA DESKTOP */
@media (min-width: 972px) {
	#mobile-menu-toggler {
		display: none;
	}
	#mobileMenu {
		display: none;
	}
	.mobile-menu-visible {
		display: none;
	}
	.mobile {
		display: none;
	}
	.navigation {
		position: fixed;
		top: 0;
		left: 0;
		margin-top: 0;
		display: flex;
		justify-content: center;
		width: 100%;
		height: 95px;
		background: transparent;
		z-index: 9993;
	}
	.navigation-logo img {
		margin-left: 30px;
		margin-top: 20px;
		width: 140px;
		height: 45px;
		border-radius: 3px;
	}
	/*.logo-napis {
		display: block;
		font-weight: ;
		color: #fff;
		margin: -45px 0 0 130px;
	}*/
	.menu {
		width: 900px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		margin-right: 5px;
		margin-top: 0px;
	}
}
.menu a {
	margin-right: 30px;
	font-size: 1.1rem;
	font-weight: 400;
	color: #fff;
}
.menu > a:nth-child(3) {
	margin-left: 0.6rem;
}
.menu a.active {
	color: #0391cd;
	font-weight: 600;
	border: 2px solid #0391cd;
	border-radius: 3px;
	padding: 5px 15px;
}
.menu a:hover {
	color: #0391cd;
	font-weight: 700;
	transition: color 0.2s ease-out;
}
/* KONIEC MENU */
/* ####### SIATKA STRONY ###### */
/* Na małych urządzeniach zawartość wyświetla się w jednej kolumnie */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 5px;
}
.container-fluid {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.row {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-left: 5px;
	margin-right: 5px;
}
/* Powyżej 768px zawartość wyświetla się w wierszach  */
@media (min-width: 768px) {
	.row {
		flex-direction: row;
		margin-left: 15px;
		margin-right: 15px;
		flex-wrap: wrap;
	}
}
.row-gallery {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 0;
}
/* Powyżej 768px zawartość wyświetla się w wierszach  */
@media (min-width: 768px) {
	.row-gallery {
		flex-direction: row;
		padding: 0;
		margin: 0;
		flex-wrap: wrap;
	}
}
/* Pojedyncza kolumna */
.col {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
/* Na dużych urządzeniach DWIE kolumny (było 800px jest 768px) */
@media (min-width: 768px) {
	.col-1-2 {
		flex: 0 0 50%;
		padding-left: 15px;
		padding-right: 15px;
	}
	/* Na dużych urządzeniach TRZY kolumny */
	.col-1-3 {
		flex: 0 0 33.3333%;
	}
	/* Na dużych urządzeniach pierwszakolumna szersza */
	.col-1-6-3 {
		flex: 0 0 66%;
		padding-left: 15px;
		padding-right: 15px;
	}
	/* Na dużych urządzeniach druga kolumna węższa */
	.col-1-3-3 {
		flex: 0 0 34%;
		padding-left: 15px;
		padding-right: 15px;
	}
	/* Na dużych urządzeniach CZTERY kolumny */
	.col-1-4 {
		flex: 0 0 25%;
		padding: 0;
		margin-bottom: 0px;
		margin-top: 0px;
	}
}
@media (min-width: 768px) {
	.col-reversed {
		order: -1;
	}
}
@media (min-width: 768px) and (max-width: 1199px) {
	.col-1-4 {
		flex: 0 0 50%;
		padding: 0;
		margin-bottom: 0px;
	}
}
/* KONIEC STYLÓW SIATKI */
.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-3 {
	margin-top: 3rem;
}
.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 3rem;
}
.text-center {
	text-align: center;
	display: block;
	margin: 0 auto;
}
/* ###### STRONA GŁÓWNA PIERWSZA SEKCJA STRONY ###### */
/* KEN BURNS */
.content-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	margin-top: 0px;
	overflow: hidden;
}
.content-hero h2 {margin-top: 4.5rem;}
.content-hero:before {
	content: "";
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateZ(0);
	background-color: #000066;
	background: url(obrazy/mechanika-pojazdowa-lomianki.webp) 100% 0 no-repeat;
	background-position: top left;
	background-size: cover;
	background-attachment: fixed;
	animation: grow 30s linear 10ms infinite; /* szybkość animacji */
	transition: all 0.4s ease-in-out;
	z-index: -2;
}
@keyframes grow {
	0% {
		transform: scale(1) translateY(0px);
	}
	50% {
		transform: scale(1.2) translateY(-40px);
	}
}
/* KEN BURNS */
@media (max-width: 973px) and (min-width: 768px) {
	.content-hero {
		height: 550px;
	}
	.content-hero h2{margin-top: 5rem;}
}
@media (max-width: 767px) {
	.content-hero {
		height: 350px;
	}
	.content-hero h2 {margin-top: 1.5rem; font-size: 1.2rem;}
	.content-hero img {
		width: 100px;
		height: 100px;
		display: block;
		margin: 10px auto 0 auto;
		border-radius: 50%;
	}
	.content-hero:before {
		height: 350px;
		background-color: #000066;
		background: url("obrazy/warsztat-samochodowy-lomianki.webp") 100% 0
			no-repeat;
		background-position: top left;
		background-size: cover;
		background-attachment: fixed;
	}
}
/* KEN BURNS */
@media (max-width: 378px) {
	.content-hero {
		height: 400px;
	}
	.content-hero:before {
		height: 400px;
	}
}
/* KEN BURNS */
.content-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	margin-top: 0px;
	overflow: hidden;
}
.content-hero:before {
	content: "";
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateZ(0);
	background-color: #000066;
	background: url(obrazy/mechanika-pojazdowa-lomianki.webp) 100% 0 no-repeat;
	background-position: top left;
	background-size: cover;
	background-attachment: fixed;
	animation: grow 30s linear 10ms infinite; /* szybkość animacji */
	transition: all 0.4s ease-in-out;
	z-index: -2;
}
@keyframes grow {
	0% {
		transform: scale(1) translateY(0px);
	}
	50% {
		transform: scale(1.2) translateY(-40px);
	}
}
/* KEN BURNS */
@media (max-width: 973px) and (min-width: 768px) {
	.content-hero {
		height: 550px;
	}
}
@media (max-width: 767px) {
	.content-hero {
		height: 350px;
	}
	.content-hero img {
		width: 100px;
		height: 100px;
		display: block;
		margin: 10px auto 0 auto;
		border-radius: 50%;
	}
	.content-hero:before {
		height: 350px;
		background-color: #000066;
		background: url("obrazy/warsztat-samochodowy-lomianki.webp") 100% 0	no-repeat;
		background-position: top left;
		background-size: cover;
		background-attachment: fixed;
	}
}
/* KEN BURNS */
@media (max-width: 378px) {
	.content-hero {
		height: 400px;
	}
	.content-hero:before {
		height: 400px;
	}
}
h1 {
	/*width: 50%;*/
	padding-top: 140px;
	animation-name: appear;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: linear;
	/*text-align: center;*/
	opacity: 1;
}
.drugi-wiersz {
	font-size: 2rem;
	/*font-family: Montserrat-SemiBold;*/
	animation-name: appear;
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-delay: 800ms;
}
.hide {
	opacity: 0;
	top: -150px;
	transition: all 1s;
}
.show {
	opacity: 1;
	top: 150;
	transition: all 1s;
}
@keyframes appear {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.kursor {
	font-size: 3rem;
	line-height: 1rem;
	margin-left: 5px;
	color: #ff3333;
	animation-name: blink;
	animation-duration: 1.4s;
	animation-fill-mode: both;
	animation-delay: 1100ms;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
}
@keyframes blink {
	from {
		color: transparent;
	}
	to {
		color: #ff3333;
	}
}
.pierwszy-naglowek {
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
	margin-top: 100px;
}
.pierwszy-naglowek p {
	color: #fff;
	margin-top: 20px;
	font-size: 1.4rem;
}
.btn-hero {
	margin-top: 50px;
	margin-right: 13px;
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	width: 210px;
	height: 50px;
	padding: 5px 11px;
	font-size: rem;
}
.btn-hero:hover {
	background-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	font-weight: bold;
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: 250ms;
}
.btn-hero a {
	color: #fff;
}
@media (max-width: 974px) {
	.pierwszy-naglowek {
		width: 90%;
		margin-left: 7%;
		margin-right: 1%;
		margin-top: 10px;
	}
	.pierwszy-naglowek p {
		color: #fff;
		margin-top: 20px;
		font-size: 1.2rem;
	}
	.btn-hero {
		margin-top: 50px;
		margin-right: 10px;
		background: transparent;
		color: #fff;
		border: 1px solid #fff;
		border-radius: 3px;
		width: 180px;
		height: 40px;
		padding: 5px 11px;
	}
}
@media (max-width: 768px) {
	.pierwszy-naglowek {
		margin-top: -70px;
	}
	.btn-hero {
		margin-top: 20px;
		width: 160px;
		height: 35px;
		font-size: 0.7rem;
		padding: 5px 9px;
	}
	.pierwszy-naglowek p {
		color: #fff;
		margin-top: 15px;
		font-size: 1.1rem;
	}
}
/* POWYŻEJ 768 PX DLA DUŻYCH ROZDZIELCZOŚCI */
@media (min-width: 768px) {
	h1 {
		font: 900 2.8rem/4rem "Montserrat-Black", Arial, sans-serif;
		color: #fff;
		letter-spacing: 1px;
	}
	h2 {
		font: 600 1.7rem/2.3rem "Montserrat-SemiBold", Arial, sans-serif;
	}
	h3 {
		font: 600 1.2rem/1.7rem "Poppins-Light", sans-serif;
	}
	p {
		font: 300 1.1rem/1.6rem "Poppins-Light", Arial, sans-serif;
	}
	h1 {
		width: 100%;
		padding-top: 200px;
	}
}
.header-top h1 {
	transition: all 1s;
}
@media (max-width: 972px) {
	h1 {
		font-size: 2.5rem;
		line-height: 3.2rem;
		margin-top: -70px;
		margin-bottom: 20px;
		padding-left: 5px;
		padding-right: 5px;
	}
	.drugi-wiersz {
		font-size: 1.8rem;
	}
}
@media (max-width: 768px) {
	h1 {
		font-size: 1.7rem;
		line-height: 2.3rem;
		margin-top: 15px;
		margin-bottom: 10px;
		padding-left: 5px;
		padding-right: 5px;
	}
	.drugi-wiersz {
		font-size: 1.3rem;
	}
}
@media (max-width: 452px) {
	h1 {
		font-size: 1.5rem;
		line-height: 1.6rem;
		margin-top: 0px;
		margin-bottom: 0;
	}
	.drugi-wiersz {
		font-size: 1rem;
		text-transform: uppercase;
	}
}
@media (max-width: 392px) {
	h1 {
		font-size: 1.3rem;
		line-height: 2rem;
		margin-top: 0px;
		margin-bottom: 0;
	}
}
/* PIERWSZA SEKCJA */
.o-mnie {
	background-color: #919191;
	background: url("obrazy/tlo-1.webp") 58% 75% no-repeat;
	border-radius: 3px;
	padding: 20px 10px;
	margin-top: 30px;
}
.o-mnie h2 {
	font-size: 1.5rem;
	line-height: 1.8rem;
	/*position: relative;*/
	margin-bottom: 22px;
}
.niebieski {
	color: #0391cd;
}
.cennik h3 {font-size: 1.2rem; line-height: 4rem;}
.cennik p {display: inline; line-height: 2rem; text-align: left; width: 100%;}
.btn-pdf {
	color: #dd2c00;
	font-size: 1.1rem;
	background-color: transparent;
	border: 2px solid #dd2c00;
	border-radius: 5px;
	padding: 10px 20px;
	margin: 20px auto;
	transition: color 300ms;
}
.btn-pdf:hover {
	background-color: #dd2c00;
	color: #fff;
}

.o-mnie h3 {
	font-size: 1.1rem;
	color: #0391cd;
	padding: 15px 0 10px 0;
	text-align: center;
}
.o-mnie i {
	color: #ffd700;
	padding: 1px 2px;
	margin-right: 2px;
}
.opinie img {
	width: 70px;
	height: 20px;
	display: inline;
	float: none;
	padding: 0;
	margin-bottom: -6px;
	margin-left: 4px;
}
.opinie {
	font-size: 0.9rem;
	font-weight: bold;
	display: inline;
	float: left;
	margin-bottom: 15px;
}
.ja p {
	color: #000;
	line-height: 1.7rem;
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 15px;
}
.p-l p {
	padding-left: 50px;
	line-height: 2.1rem;
}
.p-l p:first-child {
	padding-top: 0px;
	padding-bottom: 7px;
}
@media (max-width: 768px) {
	.o-mnie {
		padding: 10px;
	}
	.ja p {
		padding-left: 20px;
		padding-right: 30px;
	}
	.p-l p {
		padding-left: 20px;
	}
	.p-l p:first-child {
		padding-top: 15px;
		padding-bottom: 7px;
	}
}
@media (max-width: 300px) {
	.ja p {
		padding-left: 5px;
		padding-right: 5px;
	}
	.o-mnie {
		padding: 15px 3px;
	}
	.pl p {
		padding-left: 0px;
	}
}
.odstep-gora {
	padding: 3.5rem 0 3rem 0;
}
.druga-sekcja {
	background: url("obrazy/sekcja-uslugi.webp") 100% 0 no-repeat;
	width: 100%;
	height: auto;
	padding: 50px 0;
	margin: 20px 0;
}
.usluga {
	width: 100%;
	height: 210px;
	margin: 0 auto;
}
.usluga img {
	width: 70px;
	height: auto;
	text-align: center;
	margin: 0 auto;
}
.usluga h3 {
	font-size: 1rem;
	color: #fff;
	text-align: center;
	margin: 10px auto;
}
.usluga p {
	text-align: center;
	color: #fff;
	margin: 5px 15%;
	width: 70%;
}
@media (max-width: 1290px) {
	.druga-sekcja {
		padding: 30px 0;
	}
	.usluga {
		height: 260px;
	}
	.usluga p {
		text-align: center;
		color: #fff;
		margin: 5px 2%;
		width: 96%;
	}
}
@media (max-width: 768px) {
	.druga-sekcja {
		background: #0e0e0e;
		padding: 30px 0;
		margin-bottom: 20px;
	}
	.usluga {
		height: 190px;
	}
	.usluga h3 {
		font-size: 1.2rem;
	}
	.usluga p {
		text-align: center;
		color: #fff;
		margin: 5px 2%;
		width: 96%;
	}
}
.trzecia-sekcja {
	width: 100%;
	height: 350px;
	margin-bottom: 30px;
	background-color: #fff;
	padding-top: rem;
	background: url("obrazy/warsztat-lomianki.webp") no-repeat;
}
.trzecia-sekcja h3 {
	color: #fff;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	padding-top: 4rem;
}
.trzecia-sekcja p {
	text-align: center;
	font-size: 2rem;
	color: #0391cd;
	font-weight: bold;
	padding-top: 3rem;
}
/* MAPA */
.mapa {
	margin: 10px 0;
}
/* STOPKA */
.footer-static {
	position: relative;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: auto;
	background: #141414;
	align-items: baseline;
	padding-top: 25px;
	padding-bottom: 40px;
	justify-content: space-between;
}
.copy-static {
	width: 100vw;
	height: 50px;
	position: relative;
	left: 0;
	top: 30px;
	bottom: 0;
}
.dane-adres {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.dane-adres img {
	display: inline-block;
	float: left;
	margin-right: 40px;
	width: 100px;
	height: 35px;
}
.dane-adres p {
	display: inline-block;
	float: left;
	margin-right: 35px;
	font-size: 1.05rem;
	line-height: 1.7rem;
	color: #c0c0c0;
	margin-top: 5px;
}
.ikony-social {
	width: 37px;
	height: 37px;
	border-radius: 15px;
	margin-top: 10px;
}
.regulaminy {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.regulaminy a {
	margin: 30px 10px 0 10px;
}
@media (max-width: 768px) {
	.dane-adres img {
		margin-right: 20px;
		margin-bottom: 10px;
	}
}
@media (min-width: 120px) and (max-width: 768px) {
	.dane-adres img {
		width: 140px;
		height: 25px;
	}
}
.divider-footer {
	height: 1px;
	color: #fff;
	opacity: 0.2;
	width: 80vw;
	margin-left: 10vw;
	margin-right: 10vw;
	background: #fff;
}
.copy {
	width: 100vw;
	height: 60px;
	position: fixed;
	left: 0;
	bottom: 0;
}
.copy-static p {
	font-size: 0.9rem;
	line-height: 1.1rem;
	padding: 1rem 5px 0 5px;
	color: #c0c0c0;
	text-align: center;
}
.copy-static a {
	color: #fff;
}
.copy-static a:hover {
	color: #dd2c00;
	font-weight: bold;
}
/* BUTTONY W STOPCE */
.btn {
	background: transparent;
	border: #797979 solid 1px;
	border-radius: 3px;
	color: #b8b8b8;
	display: block;
	font-size: 1rem;
	padding: 5px 10px;
	text-decoration: none;
	text-align: center;
	max-width: 200px;
	position: relative;
	transition: color 0.3s ease;
}
.btn:hover {
	border-color: #e6e6e6;
	color: #e6e6e6;
}

.divider-custom {
	margin: 1.25rem 0 1.5rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.divider-custom .divider-custom-line {
	width: 100%;
	max-width: 7rem;
	height: 0.2rem;
	background-color: #2c3e50;
	border-radius: 1rem;
	border-color: #2c3e50;
}
.divider-custom .divider-custom-line:first-child {
	margin-right: 1rem;
}
.divider-custom .divider-custom-line:last-child {
	margin-left: 1rem;
}
.divider-custom .divider-custom-icon {
	color: #2c3e50 !important;
	font-size: 1.9rem;
	font-weight: bold;
}
/* ======= COOKIE ALERT ======== */
/*#cookies-message {
	font-size: 1rem;
	line-height: 2rem;
	color: #dbdbdb;
	padding: 25px 10px;
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 4;
	display: none;
}
.btn-cookies {
	border: 1px solid #b8b8b8;
	border-radius: 3px;
	color: #dbdbdb;
	background-color: transparent;
	padding: 5px 10px;
	margin-left: 20px;
	cursor: pointer;
	transition: all 200ms;
}
.btn-cookies:hover {
	color: #000;
	background-color: #fff;
}
@media (max-width: 878px) {
	#cookies-message {
		padding-top: 15px;
		line-height: 1.5rem;
	}
	.btn-cookies {
		display: block;
		margin: 15px auto 0 auto;
		width: 150px;
		padding: 5px 3px;
	}
	.btn-cookies:first-child {
		margin-bottom: 20px;
	}
}*/
/* PRZYCISK PRZEWIJANIA DO GÓRY */
.scroll-top {
	width: 40px;
	height: 40px;
	background-color: #0391cd;
	border-radius: 4px;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
	position: fixed;
	bottom: 10px;
	right: 30px;
	z-index: 3;
	cursor: pointer;
	display: none;
	transform: rotate(-90deg);
}
.scroll-top:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
@media (max-width: 768px) {
	.scroll-top {
		display: none;
		visibility: hidden;
	}
}
/* OKNA MODALNE */
.btn.btn-big {
	background: #141414;
	font-size: 1rem;
	padding: 7px;
	width: 110px;
	position: absolute;
	top: 5px;
	left: 20px;
	margin: 5px;
	border: none;
}
.btn-close {
	color: #aaa;
	font-size: 35px;
	text-decoration: none;
	position: absolute;
	right: 30px;
	top: 0;
}
.btn-close:hover {
	color: #919191;
}
.modal:before {
	content: "";
	display: none;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.modal:target:before {
	display: block;
}
.modal:target .modal-dialog {
	transform: translate(0, 0);
	top: 20%;
}
.modal-dialog {
	background: #fefefe;
	border: #333 solid 1px;
	border-radius: 5px;
	position: fixed;
	left: 15vw;
	top: -100%;
	z-index: 11;
	width: 70vw;
	transform: translate(0, -500%);
	transition: transform 0.3s ease-out;
}
.modal-body {
	padding: 20px;
	max-height: 450px;
	overflow-y: scroll;
}
.modal-body p {
	font-size: 1rem;
	color: #000;
}
.modal-header,
.modal-footer {
	padding: 15px 20px;
}
.modal-header {
	border-bottom: #eee solid 1px;
}
.modal-header p {
	font-size: 20px;
	color: #000;
}
.modal-footer {
	border-top: #eee solid 1px;
	height: 60px;
	position: relative;
}
.green {
	font-size: 0.95rem;
	font-weight: bold;
	color: #dd2c00;
}
.pogrubienie {
	font-weight: bold;
	padding-left: 15px;
}
/* ICOFONTS */
@font-face {
	font-family: "IcoFont";
	font-weight: normal;
	font-style: "Regular";
	src: url("fonty/icofont.woff2") format("woff2");
}
[class^="icofont-"],
[class*=" icofont-"] {
	font-family: "IcoFont" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	line-height: 1;

	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
}
.icofont-caret-down:before {
	content: "\ea67";
}
.icofont-star:before {
	content: "\f000";
}
.icofont-ui-rate-blank:before {
	content: "\ec7a";
}
.icofont-phone:before {
	content: "\efbb";
}
.icofont-rounded-up:before {
	content: "\eaa1";
}
.icofont-ui-home:before {
	content: "\ec5e";
}
.icofont-ui-message:before {
	content: "\ec67";
}
.icofont-eye-blocked:before {
	content: "\ef22";
}
.icofont-wheelchair:before {
	content: "\f029";
}
.icofont-copyright:before {
	content: "\eef3";
}
.icofont-safety:before {
	content: "\efdc";
}
.icofont-ui-contact-list:before {
	content: "\ec50";
}
.icofont-location-pin:before {
	content: "\ef79";
}
.icofont-ui-alarm:before {
	content: "\ec3f";
}
.icofont-ui-messaging:before {
	content: "\ec68";
}

.icofont-md {
	font-size: 1.25em;
}
.icofont-pull-left {
	float: left;
}
.icofont.icofont-pull-left {
	margin-right: 0.4em;
}
