@font-face {
	font-family: Avenir;
	src: url(fonts/AvenirNextLTPro-Regular.otf);
}

body {
	margin: 0;
	padding: 0;
	font-family: Avenir;
}

#banner {
	position: relative;
	z-index: 2;
	width: 100%;
	border-bottom: 1px solid #ff69b4;
}

#banner .banner-img {
	position: relative;
	z-index: 2;
	float: right;
	width: 55%;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex; 
}

#banner h1 {
	font-family: Avenir;
	color: grey;
	font-size: 40px;
	position: absolute;
	left: 100px;
	bottom: 20px;
}

#menu {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1;
	border-bottom: 1px solid grey;
	background-color: white;
}

#menu ul {
	list-style: none;
	padding-right: 30px;
}

#menu li {
	color: black;
	font-size: 20px;
	margin-right: 20px;
	display: inline-block;
}

#menu li:hover {
	color: #ff69b4;
}

#content {
	width: 70%;
	margin: 0 auto;
}

#content h2 {
	text-align: center;
	padding: 15px 0 0 0;
}

#content p {
	text-align: center;
	padding: 10px 50px;
}

#cennik, #sluzby {
	display: inline-block;
	text-align: center;
	width: 100%;
	background-color: rgb(218, 218, 218);
	padding-bottom: 50px;
}

#sluzby {
	padding-bottom: 0;
}

#cennik h2, #sluzby h2 {
	padding: 30px 0 0 0;
}

#cennik p, #sluzby p {
	text-align: center;
	padding: 0 30%;
}

#cennik a {
	color: black;
	padding: 10px 30px;
	text-decoration: none;
	border-radius: 3px;
	border: 1px solid #ff69b4;
}

#cennik a:hover {
	color: #ff69b4;
}

#contact {
	text-align: center;
}

#contact h2 {
	padding: 30px 0 0 0;
	margin-top: 0;
}

#mapa {
	width: 500px;
	margin: auto;
	padding: 4px;
	border: 1px solid grey;
}

#contact img {
	width: 60px;
	margin: auto;
	margin-bottom: 15px;
}

#footer {
	width: 100%;
	border-top: 1px solid #ff69b4;
	text-align: center;
}

#footer p {
	font-size: 10px;
}

#name {
	position: absolute;
	bottom: 50px;
	left: 80px;
	width: 30%;
}

.clearing { clear: both; }

@media only screen and (max-width: 600px) {
  #name {
  	display: none;
  }

  #banner .banner-img {
  	float: unset;
    width: 100%;
    margin-top: 57px;
  }

  #content {
		width: 90%;
	}

	#cennik {
		display: grid;
	}

	#cennik a {
		margin-bottom: 20px;
	}

	#mapa {
		width: 90%;
	}

	#mapa iframe {
		width: auto !important;
	}

	#menu ul li {
		margin-right: 10px;
	}

	#menu ul a:last-child li {
		margin: 0;
	}
}