/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* MAIN */
body {
	min-height: 100vh;
	min-width: 100vw;
	background-color: #190000;
	color: #fff;
	background-image: -webkit-gradient(linear, right top, left bottom, from(#150000), to(#210000));
	background-image: -webkit-linear-gradient(bottom left, #210000, #150000);
	background-image: linear-gradient(to bottom left, #150000, #210000);
	font-family: 'Cardo','Oranienbaum', serif;
	font-size: 18px;
	line-height: 1.3em;
    overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	height: 100vh;
	margin: 0 auto;
}

.container.blurred {
	-webkit-filter: saturate(0.2);
  	filter: saturate(0.2);
}

.container.homepage {
	position: relative;
}

.biglogo {
	position: absolute;
	top: 35%;
	height: 32%;
	width: 80%;
	left: 10%;
	cursor: pointer;
	background: url('../assets/images/logo.png') no-repeat 50% 55%;
	background-size: contain;
}


/* navbar */
.navicon {
	position: absolute;
	top: 15px;
	right: calc((100% - 44px) / 2);
	width: 44px;
	height: 44px;
	cursor: pointer;
	z-index: 44;
	text-align: center;
}

.navicon span {
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	background: url('../assets/images/navbar_icon.png') no-repeat center center;
	background-size: contain;
}

.navbar_container {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	transition: opacity 0.35s, visibility 0s linear 0.35s;
	opacity: 0;
	visibility: hidden;
}

.navbar_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.55);
}

.navbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	top: 0;
	z-index: 2;
}

.navbar .top, .navbar .bottom {
	height: 45px;
	background: repeat-x left center;
	background-size: auto 100%;
}

.navbar .top {
	background-image: url('../assets/images/navbar_top.png');
}

.navbar .bottom {
	background-image: url('../assets/images/navbar_bottom.png');
}

.list {
	box-sizing: border-box;
	overflow: hidden;
}

.navbar .list {
	background: #000;
	height: auto;
	padding: 2px 3px;
	/*pointer-events: auto;*/
}

.listitem {
	box-sizing: border-box;
	float: left;
}

.navbar .listitem {
	width: calc(100% / 7);
	height: auto;
	background: #000;
	padding: 2px 3px;
}

.listitem img {
	display: block;
}

.listitem a {
	display: block;
	width: 100%;
	height: 100%;
}

.navbar .listitem img {
	width: 100%;
	height: auto;
	background: no-repeat center center;
	background-size: cover;
}

.navbar .listitem a:hover {
	-webkit-filter: brightness(1.5);
  	filter: brightness(1.5);
}

.navbar .listitem:first-child img { background-image: url('../assets/images/menu_klisza1_bg.png'); }
.navbar .listitem:nth-child(2) img { background-image: url('../assets/images/menu_klisza2_bg.png'); }
.navbar .listitem:nth-child(3) img { background-image: url('../assets/images/menu_klisza3_bg.png'); }
.navbar .listitem:nth-child(4) img { background-image: url('../assets/images/menu_klisza4_bg.png'); }
.navbar .listitem:nth-child(5) img { background-image: url('../assets/images/menu_klisza5_bg.png'); }
.navbar .listitem:nth-child(6) img { background-image: url('../assets/images/menu_klisza6_bg.png'); }
.navbar .listitem:last-child img { background-image: url('../assets/images/menu_klisza7_bg.png'); }


@media all and (max-width: 1200px) {
	.navbar .top, .navbar .bottom {
    height: 35px;
   }
}

@media all and (orientation: portrait) and (max-width: 450px) {
   .navbar .list {
   	padding: 2px;
   }
   .navbar .listitem {
    width: calc(100% / 2);
    padding: 2px;
    max-height: 20vh;
    overflow: hidden;
   }
   .navbar .listitem:last-child {
   	margin-left: calc(100% / 4);
   }
}


/* galeria */
.galeria {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 40vh;
	overflow: hidden;
}

.artykuly.galeria {
	top: 35vh;
	left: -2px;
}

.galeria .list {
	padding: 1px;
	width: auto;
}

.galeria .listitem {
	height: 100%;
	width: auto;
	position: relative;
	background: url('../assets/images/fotorelacje_bg1.png') no-repeat center center;
	background-size: cover;
}
.galeria .listitem[data-link]{
	cursor: pointer;
}

.galeria .listitem:first-child { background-image: url('../assets/images/fotorelacje_bg1.png'); }
.galeria .listitem:nth-child(2) { background-image: url('../assets/images/fotorelacje_bg2.png'); }
.galeria .listitem:nth-child(3) { background-image: url('../assets/images/fotorelacje_bg3.png'); }
.galeria .listitem:nth-child(4) { background-image: url('../assets/images/fotorelacje_bg4.png'); }
.galeria .listitem:nth-child(5) { background-image: url('../assets/images/fotorelacje_bg5.png'); }
.galeria .listitem:nth-child(6) { background-image: url('../assets/images/fotorelacje_bg4.png'); }
.galeria .listitem:nth-child(7) { background-image: url('../assets/images/fotorelacje_bg3.png'); }
.galeria .listitem:nth-child(8) { background-image: url('../assets/images/fotorelacje_bg2.png'); }
.galeria .listitem:nth-child(9) { background-image: url('../assets/images/fotorelacje_bg1.png'); }
.galeria .listitem:nth-child(10) { background-image: url('../assets/images/fotorelacje_bg2.png'); }
.galeria .listitem:nth-child(11) { background-image: url('../assets/images/fotorelacje_bg3.png'); }
.galeria .listitem:nth-child(12) { background-image: url('../assets/images/fotorelacje_bg4.png'); }
.galeria .listitem:nth-child(13) { background-image: url('../assets/images/fotorelacje_bg5.png'); }
.galeria .listitem:nth-child(14) { background-image: url('../assets/images/fotorelacje_bg4.png'); }
.galeria .listitem:nth-child(15) { background-image: url('../assets/images/fotorelacje_bg3.png'); }
.galeria .listitem:nth-child(16) { background-image: url('../assets/images/fotorelacje_bg2.png'); }

.galeria .listitem img {
	height: 218px;
	width: auto;
	opacity: 0.85 !important;
  box-sizing: border-box;
  position: relative;
	border: 1px solid #190000;
	-webkit-filter: brightness(0.9) sepia(0.3);
  	filter: brightness(0.9) sepia(0.3);
  	transition: all 0.25s;
}

.galeria .listitem[data-link] img:hover {
	-webkit-filter: brightness(1.1) sepia(0);
  	filter: brightness(1.1) sepia(0);
  	opacity: 1 !important;
}

.galeria .listitem:after, .fotoksiazka .szablon .img:after {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 18px);
  display: block;
  opacity: 0;
  transition: opacity 0.1s;
  pointer-events: none;
  border: 4px solid #f7f2f0;
  border-top: 4px solid #3e220b;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 2.2s linear infinite;
  z-index: 3;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.galeria .listitem.loading:after, .fotoksiazka .szablon .img.loading:after {
  opacity: 0.75;
}


/*galeria owl*/
.galeria .owl-carousel .owl-stage {
	padding: 45px 0;
	overflow: hidden;
}

.galeria .owl-carousel .owl-stage::before {
	content: "";
	width: 100%;
	height: 45px;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../assets/images/navbar_top.png") repeat-x left center;
	background-size: auto 100%;
}

.galeria .owl-carousel .owl-stage::after {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	height: 45px;
	visibility: visible;
	background: url("../assets/images/navbar_bottom.png") repeat-x left center;
	background-size: auto 100%;
}


@media all and (max-width: 800px) {
	.galeria .listitem img {
		height: 130px;
	}
	.galeria .owl-carousel .owl-stage {
		padding: 35px 0;
	}
	.galeria .owl-carousel .owl-stage::before, .galeria .owl-carousel .owl-stage::after {
		height: 35px;
	}
}



/* title */
.title {
	background: no-repeat left top;
	background-size: contain;
	position: absolute;
	top: 15%;
	left: 3%;
	max-width: 90%;
	max-height: 10%;
}

.title.fotorelacje {
	background-image: url('../assets/images/fotorelacje_title.png');
	width: 396px;
	height: 54px;
}

.title.artykuly {
	background-image: url('../assets/images/artykuly_title.png');
	width: 304px;
	height: 44px;
}

.title.lowiska {
	background-image: url('../assets/images/lowiska_title.png');
	width: 261px;
	height: 44px;
}

.title.okazy {
	background-image: url('../assets/images/okazy_title.png');
	width: 195px;
	height: 44px;
}

.title.przynety {
	background-image: url('../assets/images/przynety_title.png');
	width: 290px;
	height: 56px;
}



/* popup */
.filter {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.55);
	z-index: 55;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.35s, visibility 0s linear 0.35s;
}

.popup {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 85%;
	height: 75%;
	z-index: 66;
	visibility: hidden;
	opacity: 0;
	transform: translate3d(0,-15%,0);
	transition: opacity 0.35s, transform 0.4s ease 0s, visibility 0s linear 0.4s;
	pointer-events: none;
}

.show {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.35s, visibility 0s;
}

.popup.show {
	transform: translate3d(0,0,0);
	transition: opacity 0.35s, visibility 0s, transform 0.4s ease 0s;
}

.popup_text {
	background: url('../assets/images/popup_textbg.png') no-repeat right bottom;
	background-size: contain;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 935px;
	height: 509px;
	pointer-events: auto;
}

.popup_text .textfield {
	position: absolute;
	bottom: 16%;
	height: 70.5%;
	left: 10.5%;
	width: 65.5%;
	padding: 0 20px 0 10px;
	box-sizing: border-box;
	overflow-y: auto;
}

.textfield p {
	color: #3e220b;
	line-height: 1.25;
	padding-top: 10px;
}

.textfield h4 {
	color: #3e220b;
	font-size: 1.2em;
	line-height: 1.25;
	font-weight: 600;
}

.popup a {
	display: block;
	text-indent: 9999px;
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 10%;
	height: 80%;
	width: 20%;
}

.popup_img {
	background: url('../assets/images/popup_imgbg.png') no-repeat left bottom;
	background-size: contain;
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 774px;
	height: 752px;
	z-index: 11;
	pointer-events: auto;
}

.popup_img img {
	display: block;
	position: absolute;
	left: 0.75%;
	width: 96%;
	height: 66%;
	bottom: 17.5%;
	object-fit: contain;
    background: black;
}

@media all and (max-width: 800px) {
	.popup {
		width: 100%;
		height: 80%;
	}
	.popup_text, .popup_img {
		width: 100%;
		height: 100%;
	}
	.fotorelacje .popup_img {
		width: 85% !important;
		height: 55% !important;
		background-size: 100% 100%;
		bottom: 45% !important;
	}
	.fotorelacje .popup_text {
		width: 85% !important;
		height: 50% !important;
		background-size: 100% 100%;
	}
	.fotorelacje .textfield {
		background: #cdd4d6;
	}
	.fotorelacje .textfield p {
		font-size: 16px;
	}
}


/*homepage popup */
.homepage.popup {
	bottom: 15vh;
	right: 0;
	width: 100vw;
	height: 65vh;
	display: flex;
}

.homepage .popup_text {
	background-image: url('../assets/images/homepage_popup_textbg.png');
	position: relative;
	bottom: 0;
	height: 100%;
	max-height: 660px;
	width: 96%;
	max-width: 1150px;
	margin: auto;
}

.homepage .popup_text .textfield {
	top: 12.5%;
	left: 12.5%;
	width: 62.3%;
	height: 71%;
	/*background: rgba(255,255,255,0.5);*/
}

.homepage .textfield p {
	color: #f8f6f1;
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
}

@media all and (max-width: 800px) {
	.homepage .textfield p {
    font-size: 18px;
    line-height: 1.3;
	}
}

@media all and (orientation: portrait) and (max-width: 450px) {
	.homepage .textfield p {
    font-size: 16px;
    line-height: 1.2;
	}
}


/*lowiska popup */
.lowiska.popup {
	height: 100%;
}

.lowiska .popup_text  {
	background-image: url('../assets/images/lowiska_popup_textbg.png');
}

.lowiska .popup_text .textfield {
	bottom: 6%;
	height: 79%;
	left: 23.4%;
	width: 53%;
}

.lowiska .popup a {
	bottom: 4%;
	height: 84%;
	width: 22%;
}

.lowiska .popup_img  {
	background-image: url('../assets/images/lowiska_popup_imgbg.png');
}

.lowiska .popup_img img {
	bottom: 20%;
	left: 1%;
	width: 93%;
	height: 60%;
}


/* okazy popup */
.okazy .popup_text  {
	background-image: url('../assets/images/okazy_popup_textbg.png');
}

.okazy .popup_text .textfield {
	bottom: 5.5%;
	height: 80%;
}

.okazy .gatunek, .okazy .waga, .okazy .dlugosc {
	position: absolute;
	left: 50%;
	width: 50%;
	top: 8.5%;
	font-size: 28px;
}

.okazy .waga {top: 42.5%;}

.okazy .dlugosc {top: 78%;}

.okazy .popup_img  {
	background-image: url('../assets/images/okazy_popup_imgbg.png');
	bottom: 0;
}

.okazy .popup_img img {
	bottom: 15.5%;
	left: 0.5%;
	width: 94%;
	height: 62%;
}


/* fotoksiazka popup */
.fotoksiazka.popup {
	width: 100%;
	height: 100%;
	background: rgba(20,0,0,0.75);
	transform: translate3d(0,0,0);
	transition: opacity 0.35s ease 0s, visibility 0s linear 0.45s;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
}

.fotoksiazka.popup .popup_img {
	transform: scale(0.5,0.5) translate3d(0,0,0);
	transition: transform 0.45s ease 0s;
}

.fotoksiazka.popup.show {
	transition: opacity 0.25s ease 0s, visibility 0s;
}

.fotoksiazka.popup.show .popup_img {
	transform: scale(1,1) translate3d(0,0,0);
}

.fotoksiazka .popup_text {
	box-sizing: border-box;
	left: 10px;
	bottom: 10px;
	width: calc(100% - 20px);
	height: auto;
	z-index: 20;
	padding: 10px;
	background: url('../assets/images/fotoksiazka_popup_textbg2.png') repeat center center;
	background-size: contain;
}

.fotoksiazka .popup_text p {
	color: #1f0000;
	line-height: 1.5;
	padding: 5px 10px;
	text-align: left;
	font-size: 18px;
	margin: 0 auto;
	border: 2px solid rgba(31,0,0,0.5);
}

.fotoksiazka .popup_img {
	height: auto;
	width: auto;
	max-width: calc(100vw - 150px);
	max-height: 100vh;
	background: none;
	z-index: 1;
	left: auto;
	bottom: auto;
}

.fotoksiazka .popup_img img {
	position: relative;
	height: auto;
	max-height: 100vh;
	width: auto;
	max-width: calc(100vw - 150px);
	left: auto;
	bottom: auto;
	object-fit: contain;
}

.fotoksiazka .popup_img::before, .fotoksiazka .popup_img::after {
	content: "";
	display: block;
	width: 75px;
	height: 100%;
	top: 0;
	position: absolute;
	background: url('../assets/images/fotoksiazka_popup_klisza.png') repeat-y center center rgba(25,0,0,0.55);
	background-size: contain;
}

.fotoksiazka .popup_img::before {
	left: -75px;
	background-position: right center;
}
.fotoksiazka .popup_img::after {
	right: -75px;
	background-position: left center;
}

.fotoksiazka .popup_close {
	position: absolute;
	color: #1f0000;
	top: 10px;
	right: 10px;
	padding: 6px;
	font-size: 16px;
	font-weight: bold;
	background: url('../assets/images/fotoksiazka_popup_textbg2.png') repeat center center;
	background-size: contain;
	z-index: 99;
	cursor: pointer;
}

.fotoksiazka .popup_close i {
	display: block;
	padding: 6px 12px;
	border: 2px solid rgba(31,0,0,0.5);
}


@media all and (max-width: 800px) {
	.fotoksiazka .popup_text {
		left: 5%;
		width: 90%;
	}
	.fotoksiazka .popup_text p {
		font-size: 16px;
	}
	.fotoksiazka .popup_close {
		padding: 6px 8px;
	}
}

/* scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

::-webkit-scrollbar-button {
  display: none; }

::-webkit-scrollbar-thumb {
  background: rgba(62,34,11,0.8);
 }

::-webkit-scrollbar-track {
  background: rgba(62,34,11,0.1);
}

::-webkit-scrollbar-corner {
  background: transparent; }


.homepage ::-webkit-scrollbar-thumb {
  background: rgba(161,155,156,0.8);
 }

.homepage ::-webkit-scrollbar-track {
  background: rgba(161,155,156,0.1);
}



/*artykuly*/
.artykuly.galeria .textfield, .artykuly.galeria img, .artykuly.galeria a {
 	position: absolute;
 }

.artykuly.galeria img {
	top: 10%;
	left: 0;
	width: 46%;
	height: 32%;
	opacity: 1 !important;
	object-fit: cover;
	border: none;
}

.artykuly.galeria a {
	display: block;
	bottom: 0;
	right: 6%;
	width: 41.5%;
	height: 21%;
}

.artykuly.galeria .textfield {
	box-sizing: border-box;
	top: 11.5%;
	right: 6%;
	width: 41.5%;
	height: 66.5%;
	padding: 10px;
	overflow-y: auto;
}

.artykuly.galeria .textfield img {
  display: none;
}

.artykuly.galeria .listitem {
	width: calc(64.8vh * 1.08);
	height: 64.8vh;
	background-image: url('../assets/images/artykuly_bg.png');
	background-size: contain;
	cursor: auto;
}

.artykuly.galeria .owl-carousel .owl-stage {
	padding: 0;
}

.artykuly.galeria .owl-carousel .owl-stage::before, .artykuly.galeria .owl-carousel .owl-stage::after {
	display: none;
}

/* przynety */
.przynety.lista {
	position: absolute;
	top: 35vh;
	left: 0;
	width: 100vw;
	height: 30vw;
	max-height: 500px;
}

.przynety.lista a {
	display: block;
	float: left;
	width: calc(100% / 3);
	height: 100%;
	overflow: hidden;
}

.przynety.lista a img {
	object-fit: contain;
	object-position: center center;
	width: 100%;
	height: 100%;
	display: block;
	-webkit-filter: brightness(0.9);
	filter: brightness(0.9);
  	transform: scale(1);
  	transition: all 0.25s;
}

.przynety.lista a.mucha img {
	object-position: 75% 50%;
}

.przynety.lista a img:hover {
	-webkit-filter: brightness(1.1);
  	filter: brightness(1.1);
  	transform: scale(1.05);
}

.map_background {
	position: absolute;
	top: 120px;
	left: 0px;
	height: calc(100vh - 160px);
	width: 100vw;
	box-sizing: border-box;
}

.map_background::before {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 0;
  background: url(/assets/images/navbar_top.png) repeat-x left center;
  background-size: auto 100%;
}

.map_background::after  {
    content: "";
  	width: 100%;
  	height: 40px;
  	bottom: -40px;
  	left: 0;
  	position: absolute;
    background: url(/assets/images/navbar_bottom.png) repeat-x left center;
    background-size: auto 100%;
}

.map_background  #map {
	width: 100%;
	height: 100%;
}

.infowindow {
	color: #190000;
	text-align: left;
    text-decoration: none;
    	font-family: 'Cardo','Oranienbaum', serif;
}

.infowindow h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.infowindow img {
    width: 100%;
    height: auto;
}

.contact {
    padding: 15vh 10vw;
}

.contact h1 {
	text-align: left;
    text-decoration: none;
    font-family: 'Cardo','Oranienbaum', serif;
    font-size: 60px;
    line-height: 1.5;
}

.contact input,
.contact textarea {
    padding: 12px;
    margin: 12px 0;
    border: 0;
    width: 100%;
    max-width: 600px;
    display: block;
    background: url('../assets/images/fotoksiazka_popup_textbg2.png') repeat center center;
    font-family: 'Cardo','Oranienbaum', serif;
    font-size: 20px;
}

.contact input[type=submit] {
    background: rgba(0,0,0,0.75);
    color :#fff;
    font-weight: bold;
}


/*.lokalizacje.title {
	z-index: 2;
	color: #190000;
	pointer-events: none;
	font-size: 22px;
}*/

.ad {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
