*, *:before, *:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	padding: 20px 15px;
}

a {
	text-decoration: none;
	color: #777;
	transition: all 0.2s ease;
}

img {
	max-width: 100%;
	height: auto;
}

/* Container */
.container {
	max-width: 1002px;
	margin: 0 auto;
	border: 2px solid #174e0a;
	border-radius: 5px;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}

/* Brand */
.brand {
font-size: 42px;
font-weight: bold;
}

.brand a {
	display: block;
}

/* Menu */
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav li {
	display: inline-block;
	margin: 0 3px;
}

nav a {
	padding: 10px 15px;
	font-size: 24px;
	display: block;
}

nav a:hover {
	background: #174e0a;
	color: #fff;
}

/* Slider */
slider {
    overflow: hidden;
    height: 300px;
}

slider img {
	display: block;
}

/* Main */
main {
	display: flex;
	justify-content: space-between;
}

/* Article */
article {
	width: 70%;
	text-align: justify;
	padding: 30px;
}

article h1 {
    color: #174e0a;
}

/* Aside */
aside {
	width: 30%;
	padding: 20px;
	background-color: #6b8407;
}


aside h2 {
	color: white;
	letter-spacing: 4px;
	text-align: center;
}

aside h3 {
	color: yellow;
	letter-spacing: 2px;
	
}

aside h3 s{
	color: white;
	letter-spacing: 2px;
	
}

aside a {
    color: #e1e1e1;
}

aside a:hover {
    color: #fff;
}

.widget {
	margin-bottom: 30px;
}

.widget:after {
	content: '';
	display: table;
	clear: both;
}

.widget img {
	float: left;
    margin: 0 12px 5px 0;
}

.widget ul {
    color: #fff;
	list-style-type: circle;
	padding: 0 0 0 18px;
	margin: 0;
}

.widget li {
	margin-bottom: 15px;
}

/* Footer */
footer {
	background: #f8f8f8;
	border-top: 1px solid #e1e1e1;
	padding: 22px 15px;
	text-align: center;
}

footer p {
	margin: 0;
}

/* GALERIA */

.gallery {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 0;

}

.postcard {
	display: inline-block;
	width: 316px;
	text-align: center;
	padding: 5px;
}

.photo5 {
	width: 300px;
	height: 225px;
	overflow: hidden;
}

.photo5 img {
	transition: all 0.5s ease-in-out;
}

.photo5:hover img {
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
}

/*mapa*/

.google-maps {
        position: relative;
        padding-bottom: 75%; // Tutaj regulujemy wysokość
        height: 0;
        overflow: hidden;
    }

.google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

@media (max-width: 800px) {
	
	/* Header */
	header {
		flex-direction: column;
	}
	
	.brand {
		margin-bottom: 25px;
	}
	
	nav ul {
		text-align: center;
	}
	
	/* Main */
	main {
		flex-direction: column;
	}
	
	article, aside {
		width: 100%;
		padding: 25px;
	}
	
	/* Article */
	article h1,
	article h2 {
		text-align: center;
	}
	
	article img {
		display: block;
		width: 100%;
		margin: 30px auto;
	}
	
	/* Aside */
	aside {
		border: 0;
	}
}

@media (max-width: 480px) {
	
	/* Header */
	header {
		padding-bottom: 30px;
		border-bottom: 1px solid #e1e1e1;
	}
	
	.brand {
		font-size: 35px;
		font-weight: bold;
		text-align: center;
		}

	nav {
		width: 100%;
	}
	
	nav li {
		display: block;
		margin: 0 0 5px;
	}
	
	/* Slider -- cos nie tak*/
	slider {
		display: none;
	}
	
	/* Article */
	article h1 {
		margin-top: 0;
	}
}