@charset "utf-8";
/* CSS Document */
/*@import url('https://fonts.googleapis.com/css?family=Noto+Serif:400,700&display=swap&amp;subset=latin-ext');*/
/********************** Podstawowe ***********************/
body {
	font-weight: 400;
	hyphens: auto;
	text-align: center;
}
body *::selection {
	background: #47A82F !important;
}
.wrapper {
	margin: 0 auto;
	box-sizing: border-box;
}
a {
	text-decoration: none !important;
	transition: all 0.5s ease-in-out;
}
div, aside, header, footer, section, main {
	box-sizing: border-box;
}
h1, h2, h3, h4 {
	hyphens: none !important;
}
#grafika-glowna .wrapper {
	padding: 0 !important;
}
b, strong {
	font-weight: 700 !important;
}
@media (max-width: 767px) {
	#kontener-gora .wrapper {
		padding: 0 35px;
	}
	#tresc .wrapper {
		padding: 0 20px;
	}
	.container {
		width: 100%;
		max-width: 100%;
	}
}
@media (min-width: 767px) {
	#kontener-gora .wrapper {
		padding: 0 15px;
	}
}

/******************** kontener góra ***********************/
#kontener-gora {
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	letter-spacing: 1px;
	font-size: 90%;
}
@media (max-width: 978px) {
	#kontener-gora {
		height: 70px;
	}
}
@media (min-width: 979px) {
	#kontener-gora {
		height: 100px;
	}
}
/******************** logo ********************/
@media (max-width: 978px) {
	#logo {
		float: left;
		margin-top: 5px;
		margin-left: -10px
	}
	#logo img {
		display: block;
		height: 60px;
		width: 200px;
	}
}
@media (min-width: 979px) {
	#logo {
		float: left;
		margin-top: 5px;
	}
	#logo img {
		display: block;
		height: 90px;
		width: 300px;
	}
}
/******************** kontakt ********************/
#kontakt p {
	padding: 0 !important;
	margin: 0 !important;
	line-height: 20px;
	height: 20px;
	text-align: left;
}
/*#kontakt a {
	color: #444;
}*/
@media (max-width: 978px) {
	#kontakt {
		display: none;
	}
}
@media (min-width: 979px) {
	#kontakt {
		float: right;
		margin-top: 30px;
		margin-left: 15px;
		padding-left: 15px;
		border-left: 3px solid #47A82F;
	}
}
/******************** menu button *********************/
.btn-navbar {
	float: right;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	margin: 15px -10px 0 0;
}
.button-nav {
}
.button-nav::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
}
.button-on {
	font-size: 40px;
	color: #47A82F;
}
.button-off {
	font-size: 26px;
}
[data-toggle="collapse"].collapsed .button-on {
  display: none;
}
[data-toggle="collapse"]:not(.collapsed) .button-off {
  display: none;
}
/******************** Język *****************/
#jezyk {
	text-transform: uppercase;
}
@media (max-width: 978px) {
	#jezyk {
		float: right;
		width: 40px;
		height: 40px;
		margin: 15px 2px 0 0;
	}
}
@media (min-width: 979px) {
	#jezyk {
		float: right;
		margin: 30px -10px 0 10px;
	}
}
#jezyk ul, #jezyk li {
	margin: 0 !important;
	padding: 0 !important;
	list-style-type: none;
	line-height: 40px;
}
#jezyk a {
	display: block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	box-sizing: border-box;
}
/******************** Menu góra ********************/
#menu-gora {
	background-color: #fff;
}
@media (min-width: 979px) {
	#menu-gora {
		display: block;
		position: absolute;
		height: 40px;
		top: 100px;
		left: 0;
		right: 0;
		text-align: center;
		background-color: #fff;
		text-transform: uppercase;
	}
	#menu-gora > ul {
		display: block;
		margin: 0 auto !important;
		float: none !important;
		left: auto !important;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	#menu-gora > ul > li {
		display: inline-block;
		text-align: center;
		margin: 0 8px;
		position: relative;
		height: 40px;
		float: none !important;
	}
	#menu-gora > ul > li > a, #menu-gora > ul > li > span {
		display: block;
		padding: 0 20px;
		transition: all 0.5s ease-in-out;
		color: #444;
		height: 40px;
		line-height: 40px;
	}
	#menu-gora > ul > li > span {
		cursor: context-menu;
	}
	#menu-gora > ul > li > a::before, #menu-gora > ul > li > span::before {
		content: '';
		position: absolute;
		display: block;
		height: 3px;
		margin: -2px auto 0 0;
		left: 50%;
		background-color: transparent;
		width: 0px;
		transition: all 0.5s ease-in-out;
	}
	#menu-gora > ul > li:hover > a::before, #menu-gora > ul > li:hover > span::before {
		background-color: #BFBFBF;
		margin: -2px auto 0 -10px;
		width: 20px;
	}
	#menu-gora > ul > li.active > a, #menu-gora > ul > li.active > span {
		font-weight: bold;
		color: #005222;
	}
	#menu-gora > ul > li.active > a::before, #menu-gora > ul > li.active > span::before {
		content: '';
		position: absolute;
		display: block;
		height: 3px;
		margin: -2px auto 0 -10px;
		left: 50%;
		background-color: #47A82F;
		width: 20px;
	}
}
@media (max-width: 978px) {
	#menu-gora {
		position: absolute;
		width: 100%;
		background-color: #fff;
		top: 69px;
		left: 0;
		right: 0;
		z-index: 999;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		text-transform: uppercase;
	}
	#menu-gora > ul {
		float: right;
		margin: 0px 31px 20px auto;
		border-right: 1px solid rgba(0,0,0,0.1);
		box-sizing: border-box;
		padding: 15px 0;
	}
	#menu-gora > ul > li {
		display: block;
		clear: both;
		margin: 0;
		position: relative;
		width: 100%;
	}
	#menu-gora > ul > li::after {
	}
	#menu-gora > ul > li:first-child {
		margin-top: 10px;
	}
	#menu-gora > ul > li:last-child {
		margin-bottom: 10px;
	}
	#menu-gora > ul > li:last-child::after {
	}
	#menu-gora > ul > li > a, #menu-gora > ul > li > span {
		display: block;
		width: 100%;
		float: right;
		text-align: right;
		color: #444;
		height: 50px;
		line-height: 50px;
		padding: 0 30px;
	}
	#menu-gora > ul > li > span {
		cursor: context-menu;
	}
	#menu-gora > ul > li.active > a, #menu-gora > ul > li.active > span {
		position: relative;
	}
	#menu-gora > ul > li.active > a::after, #menu-gora > ul > li.active > span::after {
		content: '';
		position: absolute;
		display: inline-block;
		height: 20px;
		right: 0;
		margin: 15px -1.5px 0 0;
		background-color: #47A82F;
		width: 3px;
	}
}
/******************** Grafika główna ********************/
#grafika-glowna-2 .uk-slideshow ul {
	/*max-height: 600px !important;*/
	min-height: 40vh !important;
}
@media (max-width: 978px) {
	#grafika-glowna, #grafika-glowna-2 {
		margin-bottom: 75px;
	}
	#grafika-glowna .uk-overlay, #grafika-glowna-2 .uk-overlay {
		color: #fff;
		background-color: rgba(0,60,21,0.5);
		text-align: center;
	}
	#grafika-glowna h3, #grafika-glowna-2 h3 {
		font-size: 150%;
	}
	#grafika-glowna .uk-overlay > div, #grafika-glowna-2 .uk-overlay > div {
		width: 100%;
	}
	#grafika-glowna .uk-overlay > div > h3::after, #grafika-glowna-2 .uk-overlay > div > h3::after {
		content: '';
		position: absolute;
		display: block;
		height: 3px;
		margin: 15px auto 0 -10px;
		left: 50%;
		background-color: #47A82F;
		width: 20px;
	}	
	#grafika-glowna-2 {
		padding-top: 70px;
	}
	#grafika-glowna .mapa {
		height: 80vh !important;
		top: 69px;
		box-sizing: border-box;
		margin-bottom: 19px !important;
	}
}
@media (min-width: 979px) {
	#grafika-glowna, #grafika-glowna-2 {
		margin-bottom: 75px;
	}
	#grafika-glowna .uk-overlay, #grafika-glowna-2 .uk-overlay {
		width: 50%;
		color: #fff;
		background-color: rgba(0,60,21,0.5);
	}
	#grafika-glowna .uk-overlay > div > h3::after, #grafika-glowna-2 .uk-overlay > div > h3::after {
		content: '';
		position: absolute;
		display: block;
		height: 3px;
		margin: 15px auto 0 -10px;
		left: 50%;
		background-color: #47A82F;
		width: 20px;
	}	
	#grafika-glowna h3, #grafika-glowna-2 h3 {
		font-size: 225%;
	}
	#grafika-glowna-2 {
		padding-top: 140px;
	}
	#grafika-glowna .uk-overlay > div, #grafika-glowna-2 .uk-overlay > div {
		box-sizing: border-box;
		width: 100%;
	}
	#grafika-glowna .mapa {
		height: 80vh !important;
		top: 140px;
		box-sizing: border-box;
		margin-bottom: 90px !important;
	}
}
#grafika-glowna .gm-style-iw .uk-margin {
	margin-bottom: 0 !important;
}
#grafika-glowna h3, #grafika-glowna-2 h3 {
	font-family: "Noto Serif", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	text-align: center;
	color: #fff !important;
	text-transform: none !important;
	hyphens: none !important;
	line-height: 1.2 !important;
}
@media (max-width: 460px) {
	.map-logo {
		display: none !important;
	}	
}

/******************** Treść ***********************/
#tresc {
	text-align: justify;
    hyphens: auto;
}
#tresc .page-header {
	text-align: center;
}
#tresc .items-leading {
	margin: 0 15px 10px 15px;
}
#tresc .item {
	padding: 0 15px 30px 15px;
	box-sizing: border-box;
}
#tresc h1 {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	margin-top: -28px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #fff;
}
#tresc .page-header::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: rgba(0,0,0,0.1);
	margin-bottom: -15px;
}
#tresc h2::after {
	content: '';
	position: absolute;
	display: block;
	height: 3px;
	margin: 15px auto 0 0;
	background-color: #47A82F;
	width: 20px;
}
#tresc ul, #tresc ol {
	display: block;
	margin: 0 0 26px 13px;
	padding: 0 0 0 20px;
}
#tresc ul li {
	list-style: outside none none;
	position: relative;
}
#tresc ul li::before {
    background-color: #47A82F;
    content: "";
	position: absolute;
    display: block;
    left: -25px;
    width: 4px;
    height: 4px;
    top: 14px;
}
#tresc dl {
	margin: 0 !important;
	padding: 0 !important;
}
#tresc dt {
	display: none !important;
}
#tresc dd {
	font-size: 80%;
	margin: 0 0 5px 0;
	padding: 0;
}
#tresc .readmore {
	text-align: right;
}
#tresc .readmore > a {
    color: #999;
    box-sizing: content-box;
    padding: 0;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
	border: 1px solid #999;
	display: block;
	height: 30px;
	line-height: 28px;
	width: 30px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 0 auto;
	transition: all 0.5s ease-in-out;
}
#pod-tresc .readmore {
	text-align: left !important;
}
#pod-tresc .readmore > a {
    color: #999;
    box-sizing: content-box;
    padding: 0;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
	border: 1px solid #999;
	display: block;
	height: 30px;
	line-height: 28px;
	width: 30px;
	text-align: center;
	font-weight: bold;
	margin: 0 auto 0 0 !important;
	transition: all 0.5s ease-in-out;
}
#tresc .readmore > a:hover, #pod-tresc .readmore > a:hover {
	border: 1px solid #47A82F;
}
@media (max-width: 767px) {
	#tresc h2 {
		text-align: center !important;
	}
	#tresc h2::after {
		margin: 15px auto 0 -10px !important;
		left: 50% !important;
	}
	#tresc dd {
		font-size: 80%;
		text-align: center !important;
	}
	#tresc .readmore, #pod-tresc .readmore {
		text-align: center !important;
	}
	#tresc .readmore > a, #pod-tresc .readmore > a {
		margin: 0 auto 0 auto !important;
	}	
}
@media (max-width: 460px) {
	#tresc p, #tresc li {
		text-align: left;
	}
}
.mazur-zdj {
	background: #fff url(../images/marcin-mazur-adwokat-zdjecie.jpg) center top no-repeat;
	background-size: contain;
	height: 1000px;
	width: 100%;
	margin: -20px auto -60px auto;
}
@media (min-width: 1199px) {
	.mazur-zdj {
		height: 900px !important;
		background-position: top right !important;
		background-size: 430px 900px !important;
	}
}
@media (min-width: 979px) and (max-width: 1199px) {
	.mazur-zdj {
		height: 900px !important;
		background-position: top right !important;
		background-size: 430px 900px !important;
	}
}
@media (min-width: 768px) and (max-width: 979px) {
	.mazur-zdj {
		background-size: 135% !important;
	}
}
@media (min-width: 461px) and (max-width: 767px) {
	.mazur-zdj {
		background-size: 430px 900px !important;
		height: 400px !important;
		margin: -20px auto 0 auto !important;
	}
}
@media (max-width: 460px) {
	.mazur-zdj {
		background-size: 430px 900px !important;
		height: 330px !important;
		margin: -20px auto 0 auto !important;
	}
}
/****************** Pod treść **********************/
/****************** Pod treść 2 **********************/
#pod-tresc-2 {
	margin-top: 40px;
	margin-bottom: 25px;
}
#pod-tresc-2 > div > div {
	box-shadow: inset 0 0 9999px 9999px rgba(0,60,21,0.5) !important;
	background-size: cover;
}
#pod-tresc-2 h3 {
	color: #fff !important;
	font-size: 150%;
	margin-bottom: 10px;
    hyphens: none !important;
	font-family: "Noto Serif", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
#pod-tresc-2 p {
	color: #fff !important;
	/*text-shadow: 0 0 40px rgba(0,0,0,1);*/
    hyphens: none !important;
	font-size: 16px !important;
	line-height: 28px !important;
}
#pod-tresc-2 .uk-button {
	background-color: transparent !important;
	border-radius: 6px !important;
	border: 1px solid #fff !important;
	font-weight: bold !important;
	color: #fff !important;
	width: 30px !important;
	height: 30px !important;
	line-height: 28px !important;
	text-align: center;
	display: block !important;
	margin: 0 auto;
	padding: 0 !important;
	box-sizing: content-box !important;
	min-height: inherit !important;
	transition: all 0.5s ease-in-out;
}
#pod-tresc-2 .uk-button:hover {
	border-color: #47A82F !important;
}
#pod-tresc-2 h3::after {
	content: '';
	position: absolute;
	display: block;
	height: 3px;
	margin: 10px auto 0 -10px;
	left: 50%;
	background-color: #47A82F;
	width: 20px;
}	
/******************** Stopka ***********************/
#stopka {
	font-size: 90% !important;
	letter-spacing: 1px;
	margin-top: 0px;
	padding-top: 50px;
	margin-bottom: 20px;
	bottom: 0;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.1);
	position: relative;
}
#stopka p {
	margin: 0 0 10px 0;
	line-height: 22px;
}
#stopka a {
	font-weight: 400;
}
#stopka h3 {
	font-size: 110%;
	position: relative;
	font-weight: bold;
}
#stopka h3::after {
	content: '';
	position: absolute;
	display: block;
	height: 3px;
	left: 50%;
	bottom: 8px;
	margin-left: -10px;
	background-color: #47A82F;
	width: 20px;
}
#stopka .logo-adwokatura {
	position: absolute;
	display: block;
	left: 50%;
	margin-left: -50px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 10px solid #fff;
	top: -50px;
	background-color: #fff;
}
#stopka .spol {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 6px;
	border: 1px solid #999;
	margin: 0 auto;
	margin-top: 15px;
	transition: all 0.5s ease-in-out;
}

#stopka .spol:hover {
	border: 1px solid #47A82F;
}

#stopka .spol img {
	width: 19px;
	height: 19px;
	margin: 3px;
}
/****************************** Cookies ****************************/
#cookies-message-container {
	padding: 10px;
	font-size: 12px;
	position: fixed;
	bottom: 0;
	z-index: 999999;
	background: #fff;
	width: 100%;
	line-height: 1.5;
	border-top: 1px solid rgba(0,0,0,0.1);
	text-align: center;
}
#cookies-text {
	display: inline-block;
	float: left;
	margin: 10px;
}
#cookies-message span.pl-cookie:lang(en-gb), #cookies-message span.en-cookie:lang(pl-pl) {
	display: none !important;
}
#accept-cookies {
	float: right;
	display: block;
	margin: 5px 10px 0 10px;
}
@media (max-width: 978px) {
	#accept-cookies {
		float: none !important;
		margin: 0 auto !important;
	}
}
#accept-cookies-checkbox {
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #005222;
	transition: all 0.5s;
	border-radius: 10px;
}
#accept-cookies-checkbox:hover {
	border: 1px solid rgb(0,82,34);
}
/************************** autor *******************************/
#autor {
	font-size: 70%;
	color: #444;
	text-align: right;
	padding: 10px 20px;
}
#autor a {
	color: #444;
}
