/* _author_: DNLCSS */

@import url('https://fonts.googleapis.com/css?family=Open+Sans|Raleway');

* {
	box-sizing: border-box;
	text-align: center;
	transition: all .3s ease;
}

html, body {
	font-family: "Open Sans";
	font-size: 100%;
	color: #797979;
	background-color:#fafafa;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

/* styling for the nav bar */

nav ul {
    top: 0;
	list-style: none;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	line-height: 4vw;
}

nav li {
	font-family: "Raleway", sans-serif;
	font-size: 16px;
}

nav a {
	text-decoration: none;
	text-transform: uppercase;
	color: #bcbcbc;
	padding: 1vw;
}

nav a:hover {
	color: #ffffff;
	background-color: #000000;
    transition: all .3s ease;
}

/* styling for the headers inside and outside the banner */

h1 {
	font-size: 95px;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "Raleway", Arial, Helvetica, sans-serif;
}

h2 {
	font-size: 16px;
	font-family: "Raleway", Arial, Helvetica, sans-serif;
	color: #ffffff;
}

h3 {
	font-family: "Raleway";
	font-size: 32px;
	color: #000000;
	text-transform: none;
}


/* styling for the parallax banner */

.banner {
	/* The image used */
	background-image: url("./ROLEJARKNIK-034.jpg");
	/* Full height */
	height: 100vh;
	width: 100%;
	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* More Styling */
	border-top: 0;
	color: rgba(255,255,255,0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.banner:before {
	background: #111111;
	content: ' ';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.banner:after {
	background: linear-gradient(135deg, #1a87c5 0%, #111111 74%);
	content: ' ';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

/* styling for the content over the parallax header */

.bannertxt {
	opacity: 1;
	z-index: 2;
	height: 60vh;
}

.bannerarrow {
	width:50px;
	margin: 10vh;
}


/* organise day 'cards' with flex */

.flexgallery {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

/* styling for the day 'cards' */

.flexgallery img {
	padding:5px;
	background-color: #fafafa;
	border: 2px solid #c8c8c8;
	width: 300px;
}


.flexgallery img:hover {
	border-radius: 5px;
	border: 2px solid #1a87c5;
    transition: all .3s ease;
}

.flexgallery figcaption {
	display: none;
}

.row {
	display: flex;
	/* background-color: #fafafa; */
}
  
.column {
	flex: 50%;
	padding: 50px;
}

.column h1 {
	font-family: "Raleway";
	font-size: 32px;
	color: #000000;
	text-transform: none;
}

.column p, li {
	font-size: 16px;
	text-align: left;
}

.column img {
	width: 100%;
}

#about {
	padding: 100px 10vw;
}

.about {
	padding: 20px 100px;
	border: 5px solid #ccd2d2;
}

.about ul {
	list-style-position: inside;
}

.about li {
	padding-left: 25vw;
}

footer {
	padding: 40px;
	text-transform: uppercase;
	font-size: 12px;
	background-color: #efefef;
}

iframe {
	border: none;
}

/* Turn off parallax scrolling for all tablets and phones. */
@media screen and (max-width: 1350px) {
	.banner {
		background-attachment: scroll;
	}
	.flexgallery img {
		width: 200px;
	}
	h1 {
		font-size: 70px;
	}
	.about li {
		padding-left: 10vw;
	}
}

@media screen and (max-width: 700px) {
	.flexgallery img {
		width: 100px;
	}
	.about {
		padding: 10px;
	}
	nav ul {
		flex-flow: column;
	}
	nav li {
		padding: 10px;
	}
	h1 {
		font-size: 32px;
	}
	.about li {
		padding-left: 2vw;
	}
}
