:root {
	--text: #47474e;	
	--highlight: #317562;
	--light: #f0f0f5;
	--line: #c7c7c7;
	--transition: all .2s ease;
	--margin: 20px;
	--font-text: 'Arimo', serif;
	--font-header: 'Bodoni Moda', 'Times New Roman', serif;
}
body {
	font-family: var(--font-text);
	color: var(--text);
	margin: 0 0;
	padding: 0 0 50px;
}
body.blocked {
	overflow: hidden !important;
}

*, ::after, ::before {
    box-sizing: border-box;
}
@media (min-width:1024px) {
	
}
img {
	max-width: 100%;
}
/* Default styles */
a { text-decoration: none; color: var(--highlight); }
a:hover { text-decoration: none; }

.alert {
    font-size: 20px;
    font-weight: 600;
    padding: 35px;
}
.container {
	position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
	position: relative;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin-right:-15px;
	margin-left:-15px
}
.row.center {
	align-items: center;
}
.col {
	flex: 0 0 auto; padding: 0 15px;
}
.col-2 {
	flex: 0 0 16.666667%; max-width: 16.666667%; padding: 0 15px;
}
.col-3 {
	flex: 0 0 25%; max-width: 20%; padding: 0 15px;
}
.col-4 {
	flex: 0 0 33.333334%; max-width: 33.333334%; padding: 0 15px;
}
.col-5 {
	flex: 0 0 41.666667%; max-width:41.666667%; padding: 0 15px;
}
.col-6 {
	flex: 0 0 50%; max-width: 50%; padding: 0 15px;
}
.col-7 {
	flex: 0 0 58.333334%; max-width: 58.333334%; padding: 0 15px;
}
.col-8 {
	flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px;
}
.col-9 {
	flex: 0 0 75%; max-width: 75%; padding: 0 15px;
}
.col-12 {
	flex: 0 0 100%; max-width: 100%; padding: 0 15px;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pb-5 {
	padding-bottom: 25px;
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}
@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}


.btn {
	font-size: 16px;
	display: inline-block;
	padding: 17px 40px;
	border-radius: 0;
	border: 0;
	background-color: transparent;
	transition: all .25s ease;
	position: relative;
}
.btn:before {
	transition: all .25s ease;
	position: absolute;
	background-color: var(--highlight);
	bottom: 0;
	width: 100%;
	height: 0px;
	left: 0;
	content: "";
}
.btn span {
	position: relative;
	transition: all .25s ease;
	color: var(--highlight);
}
.btn:hover:before {
	height: 100%;
}
.btn:hover span {
	color: #FFF;
}
div#cookieinfo {
    font-size: 12px;
	background-color: var(--light);
	padding: 15px;
	text-align: center;
	margin-bottom: 32px;
}
div#cookieinfo a {
	text-decoration: none;
	color: var(--highlight);
}
div#cookieinfo a:last-of-type {
	display: inline-block;
	background-color: var(--highlight);
	color: #FFF;
	padding: 5px;
}


	a.to-top {
		position: absolute;
		top: -25px;
		right: 15px;
		font-size: 20px;
		background-color: var(--highlight);
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		z-index: 49;
		color: #FFF;
	}
	header {
		margin: 0 auto;
		border-bottom: 1px var(--line) solid;
		height: 87px;
		position: relative;
		z-index: 5;
		background-color: #FFF; 
		/*
		var(--light);
		*/
	}
	header .container {
		border-top: 3px var(--highlight) solid;
		max-width: calc(100% - 36px);
	}
	header .menu-call .fa-times {
		display: none;
	}
	header .menu-call {
		position: absolute;
		top: 15px;
		right: 15px;
		background-color: var(--highlight);
		color: #FFF;
		font-size: 28px;
		padding: 10px 12px 8px;
		line-height: 28px;
		border-radius: 5px;
	}
	header .menu-call.on .fa-bars {
		display: none;
	}
	header .menu-call.on .fa-times {
		display: block;
	}
	a.logo {
		display: block;
		margin: var(--margin) 0;
		max-width: 65%;
	}
	
	
	
	.btn {
		font-size: 12px;
		text-transform: uppercase;
		padding: 15px 15px;
		display: inline-flex;
		color: var(--highlight);
		border: 1px var(--highlight) solid;
	}
	.btn i, .btn em {
		font-size: 18px;
		margin-right: 15px;
	}
	.btn.more-news i {
		margin-right: 0;
	}
	
	
	.mobile-menu {
		display: none;
		position: fixed;
		top: 86px;
		left: 0;
		background-color: rgba(54, 84, 90, .5);
		width: 100%;
		height: calc( 100vh - 86px);
		overflow: auto;
		max-height: 1000px;
		z-index: 51;
	}
	body.scrolled .mobile-menu {
		top: 0px;
		height: 100vh;
	}
	.mobile-menu.on {
		display: flex;
		align-items: center;
	}
	.mobile-menu:before {
		content: "";		
		background: white url(https://www.kancelaria-gatner.pl/!data/headers/background_6.jpg?1652179473) no-repeat top center;
		background-size: cover;
		position: absolute;
		top: 0; bottom: 0;
		left: 0; right: 0;
		z-index: 2;
	}
	.mobile-menu:after {
		content: "";		
		background-color: var(--highlight);
		position: absolute;
		opacity: .85;
		top: 0; bottom: 0;
		left: 0; right: 0;
		z-index: 5;
	}
	.mobile-menu > ul {
		position: relative;
		z-index: 10;
		padding: var(--margin);
		margin: 0 var(--margin);
		list-style: none;
		max-height: 81vh;
		overflow: auto;
	}
	.mobile-menu li.first > a {
		font-family: var(--font-header);
		font-size: 36px;
		color: #FFF;
	}
	.mobile-menu li.social > a {
		color: #FFF;
		display: inline-block;
		margin-right: 15px;
		vertical-align: middle;
		font-size: 20px;
	}
	.mobile-menu > ul > li:last-of-type ul {
		column-count: 2;
	}
	.mobile-menu ul ul {
		list-style: disc;
		color: rgba(255,255,255,.25);
		padding: 10px 20px;
	}
	.mobile-menu ul ul a {
		color: #FFF;
		display: block;
		padding: 5px;
		font-size: 14px;
	}
	@media (max-height: 600px) {
		.mobile-menu li.first > a {
			font-size: 28px;
		}
		.mobile-menu ul ul a {
			font-size: 13px;
		}
	}	
	
	
	.float-contact {
		position: fixed;
		z-index: 51;
		bottom: 0;
		left: 0;
		width: 100%;
		display: flex;
		background-color: var(--light);
		align-items: center;
		justify-content: stretch;
	}
	.float-contact a {
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: -.5px;
		flex: auto;
		padding: 10px 3px;
		display: block;
		text-align: center;
		color: var(--text);
	}
	.float-contact a i {
		margin-right: 4px;
	}
	.float-contact a.inverse {
		color: #FFF;
		background-color: var(--highlight);
		box-shadow: 0 -5px var(--highlight), 0 5px var(--highlight);
	}
	
	
	
	.home-animate {
		height: calc(100vh - 86px);
		position: relative;
		width: 100%;
		background-color: #FFF;
		overflow: hidden;
	}
	
	.home-animate img.bg {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: opacity 1.5s ease;
		opacity: 0;
	}
	.home-animate.loaded img.bg {
		opacity: 1;
		object-position: top center;
		transition: transform 20s ease;
	}
	.home-animate.loaded img.bg.zoomInAnimate {
		transform: scale(1.15);
	}
	.home-animate .indicator {
		width: 64px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: all .5s ease;
		opacity: 1;
	}
	.home-animate.loaded .indicator {
		opacity: 0;
	}
	.home-animate .text {
		position: absolute;
		z-index: 30;
		font-size: 80px;
		top: 30%;
		display: block;
		text-align: center;
		width: 100%;
		color: #FFF;
		font-family: var(--font-header);
		opacity: 0;
		text-shadow: 0px 15px rgba(255,255,255,.5);
		transform: translateY(-30px);
		transition: all .5s ease;
		transition-delay: .35s;
	}
	.home-animate.loaded .text {	
		text-shadow: 0px 0px 20px #FFF;
		transform: translateY(0px);
		opacity: 1;
	}
	.home-animate .buttons {
		position: absolute;
		bottom: 50px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
		left: var(--margin);
		width: calc(100% - var(--margin) - var(--margin));
	}
	.home-animate .buttons a {
		display: block;
		background-color: rgba(49, 117, 98, .85);
		color: #FFF;
		padding: 10px 10px 20px 10px;
		font-size: 12px;
		margin-bottom: 5px;
		opacity: 0;
		transform: translateY(30px);
		transition: all .35s ease;
	}
	@media (max-width: 375px) {
		.home-animate .buttons a {
			flex: 0 0 49%;
			padding-bottom: 10px;
			margin-bottom: 2px;
		}
		.home-animate .text {
			top: 15%;
		}
	}
	@media (min-width: 376px) and (max-width: 450px) {
		.home-animate .buttons a {
			flex: 0 0 32%;
		}
	}
	@media (min-width: 450px){
		.home-animate .buttons a {
			flex: 0 0 auto;
		}
	}
	@media (max-width: 600px) {
		.home-animate .text {
			top: 16%;
		}
	}
	
	/*
	.home-animate .buttons a:nth-of-type(7),
	.home-animate .buttons a:nth-of-type(8) {
		flex: 0 0 49%;
	}
	*/
	
	.home-animate .buttons a:nth-of-type(1) { transition-delay: 0.5s; }
	.home-animate .buttons a:nth-of-type(2) { transition-delay: 0.6s; }
	.home-animate .buttons a:nth-of-type(3) { transition-delay: 0.7s; }
	.home-animate .buttons a:nth-of-type(4) { transition-delay: 0.8s; }
	.home-animate .buttons a:nth-of-type(5) { transition-delay: 0.9s; }
	.home-animate .buttons a:nth-of-type(6) { transition-delay: 1.0s; }
	.home-animate .buttons a:nth-of-type(7) { transition-delay: 1.1s; }
	.home-animate .buttons a:nth-of-type(8) { transition-delay: 1.2s; }
	.home-animate .buttons a:nth-of-type(9) { transition-delay: 1.3s; }
	.home-animate.loaded .buttons a {
		opacity: 1;
		transform: translateY(0);
	}
	
	
	
	
	
	.standard .content {
		margin: var(--margin);
		padding: 10px;
		font-size: 13px;
		line-height: 18px;
	}
	
	body:not(.page-start) .standard + .standard .content {
		margin-top: 0;
	}	
	@media (max-width: 900px) {
		.standard .bg-light-lg .content {
			margin-top: 0;
		}
	}
	.standard h1,
	.standard h3 {
		font-size: 26px;
		line-height: 34px;
		font-family: var(--font-header);
		font-weight: 300;
		letter-spacing: -.25px;
		color: var(--text);
		position: relative;
		margin: 0 0 10px;
	}
	.standard h1:before,
	.standard h3:before {
		left: -45px;
		position: absolute;
		content: "";
		height: 40px;
		background-color: var(--highlight);
		width: 10px;
		top: -10px;
	}
	
	.standard h2 {
		font-family: var(--font-header);
		font-size: 22px;
		line-height: 28px;
		text-align: left !important;
		position: relative;
		padding: 0 0 10px 0;
		margin: 10px 0 15px 0;
	}
	.standard h2:before {
		left: -45px;
		position: absolute;
		content: "";
		height: 1px;
		background-color: var(--highlight);
		width: 50%;
		bottom: 0px;
	}
	.standard h1 + h2,
	.standard h3 + h4 {
		font-size: 14px;
		font-family: var(--font-header);
		font-weight: 300;
		letter-spacing: -.25px;
		color: var(--highlight);
		margin-top: -5px;
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-bottom: 1px var(--highlight) solid;
	}
	
	
	.standard {
		position: relative;
	}
	.standard.inverse {
		color: #FFFFFF;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.standard.inverse h1,
	.standard.inverse h3 {
		/*
		color: var(--highlight);
		*/
		color: #FFFFFF;
	}
	.standard.inverse .text-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
		position: relative;
	}
	.standard.inverse .text-header:after {
		position: absolute;
		bottom: 15px;
		left: 0;
		width: 150px;
		background-color: var(--highlight);
		height: 1px;
		content: "";
	}
	.standard img.bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		opacity: .15;
	}
	
	.standard a {
		color: var(--highlight);
	}
	
	
	
	
	.button-news {
		margin: 15px 30px;
	}
	.inverse .btn {
		border: 1px rgba(255,255,255,.2) solid;
		color: rgba(255,255,255,.2);
	}
	
	
	
	.standard .content ul {
		list-style: none;
	    margin-left: -25px;
	}
	.standard .content ul li {
		color: var(--text);
	}
	.standard .content ul li::before {
		content: "\2022";  
		color: var(--highlight);
		font-weight: bold; 
		display: inline-block;
		width: 1em; 
		margin-left: -1em; 
	}
	
	
	
	
	.standard.mod-16 .content {
		margin: 10px auto;
		max-width: 88%;
	}
	.standard.mod-16 h2 {
		font-family: var(--font-header);
		font-size: 13px;
	}
	.standard.mod-16 h2 strong,
	.standard.mod-16 h2 b {
		font-size: 17px;
	}
	.standard.mod-16 ul {
		margin-left: 0px;
		padding-left: 0px;
	}
	.standard.mod-16 ul li {
		padding-left: 20px;
		position: relative;
		font-size: 12px;
	}
	.standard.mod-16 ul li:before {
		position: absolute;
		width: 15px;
		text-align: center;
		left: 12px;
	    font-family: "Font Awesome 5 Free";
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 1;
	}
	.standard.mod-16 ul li:nth-of-type(1):before { content:"\f3c5"; }
	.standard.mod-16 ul li:nth-of-type(2):before { content:"\f095"; }
	.standard.mod-16 ul li:nth-of-type(3):before { content:"\f0e0"; }
	.standard.mod-16 a.small {
		font-size: 11px;
		color: var(--highlight);
	}
	
	
	.peoples.center {
		margin: 0 30px;
		overflow: hidden;
		display: flex;
		justify-content: space-around;
	}
	.peoples.center .person {
		flex: 0 0 250px;
	}
	.carousel.peoples {
		margin: 0 30px;
		overflow: hidden;
		width: calc(100vw - 90px);
	}
	.peoples .person {
		background-color: #FFF;
		color: var(--text);
		box-shadow: 0px 10px 15px -5px rgb(0 0 0 / 35%);
	}
	.peoples .person .desc {
		font-size: 10px;
		color: var(--highlight);
		padding: 10px;
		text-transform: uppercase;
		position: relative;
		height: 70px;
	}
	.peoples .person .desc strong {
		display: block;
		font-family: var(--font-header);
		color: var(--text);
		font-size: 14px;
		line-height: 18px;
		margin-bottom: 5px;
		font-weight: 300;
		text-transform: capitalize;
	}
	.peoples .person .desc:before {
		width: 0;
		height: 0;
		border-left: 12px solid transparent;
		border-right: 11px solid transparent;
		border-bottom: 12px solid #FFF;
		content: "";
		position: absolute;
		top: -12px;
		right: 15px;
	}
	.peoples .person img {
		height: 200px;
		object-fit: cover;
		object-position: top center;
	}
	.peoples.center .person img {
		width: 100%;
	}
	
	
	
	.carousel.peoples {
		
	}
	.carousel.peoples .owl-nav {
		text-align: right;
		margin-top: 25px;
	}
	.carousel.peoples .owl-nav > div {
		font-size: 18px;
		color: #FFFFFF;
		width: 50px;
		height: 50px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px #FFFFFF solid;
		opacity: .2;
	}
	.carousel.peoples .owl-prev {
		margin-right: 10px;
	}





	.carousel.news {
		
	}
	.carousel.news .item {
		background-color: #ffffff;
		margin: 1px 30px 2px;
	}
	.carousel.news img {
		width: 52px;
		height: 105px;
		float: left;
		margin-right: 15px;
	}
	.carousel.news .desc {
		font-size: 10px;
		color: #acc1bb;		
		padding: 10px;
		text-transform: uppercase;
		position: relative;
		display: block;	
	}
	.carousel.news .desc datetime,
	.carousel.news .desc .datetime {
		color: var(--highlight);
	}
	.carousel.news .desc strong {
		display: block;
		font-family: var(--font-header);
		color: var(--text);
		font-size: 14px;
		line-height: 17px;
		font-weight: 300;
		text-transform: capitalize;
		padding-top: 5px;
		margin-bottom: 7px;
	}
	.carousel.news .item:after {
		clear:both;
		content:"";
		display: block;
	}
	
	
	
	
	.form-style,
	#contact-form-web {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #FFF;
		padding: 25px;
		z-index: 499;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all .5s ease;
		transform: translateY(-120%);
		box-shadow: 0px 15px 15px rgba(0,0,0,.25);
	}
	#contact-form-web.on {
		transform: translateY(0);
	}
	#contact-form-web .close-btn {
		position: absolute;
		top: 15px;
		right: 15px;
		color: var(--highlight);
		font-size: 20px;
		padding: 15px;
	}
	.form-style .form-group,
	#contact-form-web .form-group {
		position: relative;
		margin-bottom: 10px;
	}
	.form-style .form-group label,
	#contact-form-web .form-group label {
		position: absolute;
		display: inline-block;
		padding: 3px 5px;
		background-color: #FFF;
		color: var(--text);
		font-size: 12px;
		text-transform: uppercase;
		left: 20px;
		top: -9px;
	}
	.form-style .form-group input,
	.form-style .form-group textarea,
	.form-style .form-group select,
	#contact-form-web .form-group input, 
	#contact-form-web .form-group textarea {
		padding: 18px 10px 10px 12px;
		width: 100%;
		font-weight: 600;
		border-radius: 0;
		border: 1px var(--highlight) solid;
		font-family: var(--font-text);
	}
	.form-style .form-group textarea,
	#contact-form-web .form-group textarea {
		height: 120px;
	}
	.form-style .reg,
	#contact-form-web .reg {
		font-size: 11px;
		text-align: justify;
		line-height: 1.2em;
	}
	
	
	
	.oferteo-in {
		margin: 0 auto;
		display: block;
		max-width: 100%;
		width: 900px;
	}
	
	
	
	blockquote {
		font-family: var(--font-header);
		font-size: 18px;
		line-height: 24px;
		background: var(--light);
		padding: 25px;
		margin: 15px 0;		
	}	
	
	
	
	
	
	
.parallax-window {
    min-height: 25vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-color: #47474e9e;
}
	.parallax-window:after {
		position: absolute;
		content: "";
		background-image: linear-gradient(0deg, black, transparent);
		width: 100%;
		height: 60%;
		z-index: 3;
		opacity: .5;
	}
	.parallax-window .text-holder {
		padding-left: 30px;
		padding-right: 10px;
		position: relative;
		z-index: 5;
		color: #FFF;
		font-size: 12px;
	}
	.parallax-window h1 {
		text-shadow: 0px 0px 20px #fff;
		font-size: 28px;
		line-height: 32px;
		margin: 0 0 20px;
		color: #FFF;
		font-family: var(--font-header);
		font-weight: 300;
		text-shadow: 0px 2px 2px rgba(0,0,0,.25);
	}
	.parallax-window .text-holder h2 {
		font-weight: 300;
		margin: -10px 0 10px;
	}
	.parallax-window .text-holder.smaller h1 {
		font-size: 22px; 
		line-height: 26px;
	}
	.parallax-window p {
		margin-bottom: 25px;
	}





	body.sub-kancelaria-katowice .standard.picture .picture img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	
	
	
	.bigtext .content {
		padding: 50px;
		font-size: 20px;
		font-family: var(--font-header);
	}
	.bigtext.inverse .content {
		color: #FFFFFF;		
	}
	.bigtext .content .footer {
		font-family: var(--font-text);
	}
	.bigtext a {
		color: inherit;
	}
	.bigtext a.btn {
		margin-top: 15px;
	}
	.bigtext a.btn span {
		color: rgba(255,255,255,.5);
	}
	.bigtext h3 + p {
		font-size: 14px;
	}
	
	
	
	
	.floating-contacts {
		position: fixed;
		background: #fafafa;
		z-index: 9;
		right: -150px;
		top: 250px;
		width: 150px;
		transition: all 0s linear;
	}
	@media (max-width: 900px) {
		.floating-contacts h3 {
			margin: 0 0;
			padding: 10px 10px;
			background-color: var(--highlight);
			color: #FFFFFF;
			position: absolute;
			top: 0;
			width: 70px;
			font-size: 12px;
			height: 50px;
			text-align: right;
			left: -70px;
		}
	}
	.floating-contacts.opened {
		right: 0px;
		box-shadow: 0px 0px 10px 10px rgba(0,0,0,.2);
	}
	.floating-contacts .peoples {
		padding: 15px 15px;
	}
	.floating-contacts a {
		display: flex;
		padding: 0 0 10px 0;
		font-size: 14px;
		color: var(--text);
		font-family: var(--font-header);
		line-height: 18px;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.floating-contacts a.contact {
		display: flex;
		background-color: var(--highlight);
		color: #FFF;
		padding: 15px 20px;
		font-family: var(--font-header);
		justify-content: space-between;
		align-items: center;
	}
	.floating-contacts a img {
		width: 40px;
		height: 50px;
		object-fit: cover;
		object-position: top center;
		margin:0 15px 0 0;
	}
	.standard .floating-contacts h3 {
		font-size: 24px;
		line-height: 30px;
	}
	.standard .floating-contacts h3:before {
		height: 22px;
		top: 0px;
		display: none;
	}
	

	

	
	
	.preload {
		background-color: #FFF;
		position: relative;
		z-index: 6;
	}
	.footer {
		padding: 30px 0px 0px;
		font-size: 11px;
		line-height: 20px;
		position: relative;
		z-index: 5;
	}
	.footer .img-center {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		max-width: 100px;
	}
	.footer ul {
		padding: 0 0;
		margin: 0 0;
		list-style: none;
	}
	.footer ul li a {
		color: var(--highlight);
	}
	.footer .line {
		padding: 30px 0;		
	}
	.footer .sub {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.footer .socials {
		align-items: center;
		display: flex;
		justify-content: flex-end;
	}
	.footer .socials a {
		font-size: 20px;
		color: var(--highlight);
		margin-right: 7px;
	}
	body:not(.page-start) .footer .container {
		border-top: 2px var(--light) solid;
		padding-top: 30px;
	}
	
	
	@media (max-width: 1024px) {
		.mobile-menu.on {
			align-items: flex-start;
		}
		.lawyer .row aside {
			order: 2;
			position: relative;
		}
		.lawyer .row .move-lg-left {
			order: 1;
		}
		.lawyer img.lawyer-img {
			width: 40%;
			margin: 20px auto;
			height: 220px;
			object-fit: cover;
			object-position: top center;
		}
		.lawyer .details {
			font-size: 13px;
			line-height: 17px;			
		}
		.lawyer .details h1 {
			font-family: var(--font-header);
			font-size: 24px;
			line-height: 28px;
			color: var(--highlight);
		}
		.lawyer .details .apply {
			display: inline-block;
			padding: 3px 15px;
			position: relative;
			box-shadow: inset 3px 0px var(--highlight);
			font-size: 13px;
			text-transform: uppercase;
		}
		.lawyer aside .contacts {
			position: absolute;
			background-color: var(--highlight);
			color: #FFF;
			width: 50%;
			top: 20px;
			right: 20px;
		}
		.lawyer aside .contacts ul {
			padding: 0 0;
			margin: 0 0;
			list-style: none;
		}
		.lawyer aside .contacts ul li {
			padding: 12px 5px;
			display: block;
			font-size: 11px;
		}
		.lawyer aside .contacts ul li:not(:last-of-type) {
			border-bottom: 1px rgba(255,255,255,.1) solid;
		}
		.lawyer aside .contacts i {
			width: 24px;
			text-align: center;
		}
		.lawyer aside .contacts a {
			color: #FFF;
		}
		
		.page-artykuly img.main-img {
			display: none;
		}
		.news-detail h1 {
			font-family: var(--font-header);
			font-size: 26px;
			line-height: 32px;
		}
		.news-detail .content {
			font-size: 16px;
			line-height: 24px;
			text-align: justify;
			padding: 15px;
		}
		.news-detail .author {
			display: inline-block;
			padding: 10px 15px;
			position: relative;
			box-shadow: -3px 0px var(--highlight);
		}
		.news-detail .author strong {
			font-size: 20px;
		}
		.news-detail .author span {
			display: block;
			font-size: 11px;
			opacity: .75;
		}
		.news-list .item {
			flex: 0 0 90%;
			width: calc( 100% - 60px);
			padding-left: 100px;
			position: relative;
			min-height: 150px;
			margin: 0 20px 15px;
			background-color: #FFFFFF;
			transition: all .25s ease;
		}
		.news-list .item img {
			position: absolute;
			width: 90px;
			height: 140px;
			top: 0;
			left: 0;
			object-fit: cover;
			object-position: top center;
			transition: all .25s ease;
		}
		.news-list .item .desc {
			font-size: 11px;
			line-height: 16px;
			padding: 0 10px;			
			position: relative;
		}
			
		.news-list .item .desc a {
			display: block;
			font-family: var(--font-header);
			color: var(--text);
			font-size: 14px;
			line-height: 17px;
			font-weight: 300;
			text-transform: capitalize;
			padding-top: 5px;
			margin-bottom: 7px;
		}
		.news-list .item .desc span {
			display: block;
			margin-top: 10px;
			text-transform: uppercase;
			opacity: .5;
			font-size: 9px;
		}
		.home-animate .text {
			font-size: 42px;
			line-height: 48px;
			padding: 0 20px;
		}
	}
	
	.in-gallery img {
		width: 90%;
		height: 350px;
		object-fit: contain;
		background-color: #FFF;
		box-shadow: 0px 10px 15px -5px rgb(0 0 0 / 10%);
		display: block;
		margin: 0 auto 10px;
	}

	.mod-65 h3 {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.mod-65 p {
		padding: 8px 0;
		margin: 0 0 2px;
	}
	.mod-65 a {
		font-size: 15px;
		line-height: 19px;
		display: inline-block;
	}
	.mod-65 a:hover {
		opacity: .5;
	}


/*Page mods*/
.parallax-window .text-holder {
    font-size: 15px;
    padding-bottom: 35px;
    width: 80%;
    line-height: 20px;
}
.standard.mod-150 .container {
    max-width: 1320px !important;
    left: 0 !important;
}
.standard.mod-150 .col-12 {
    background-color: #f0f0f5 !important;
}
/*Three icons*/
.standard.three-icons .col-icon {
    width: 120px;
    margin: 0 auto;
    padding: 20px;
}
/*Text Image*/
.text-image-box .picture {
    width: 100%;
    max-width: 100%;
    flex: auto;
}
.text-image-box .picture img {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}

/* ======== Landingi ======== */
body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala {
}

/* BUTTON W PARALLAXIE */
body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .parallax-window.mod-226 a.btn.form-call,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .parallax-window.mod-246 a.btn.form-call,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .parallax-window.mod-258 a.btn.form-call,
body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .parallax-window.mod-226 a.btn.form-call span,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .parallax-window.mod-246 a.btn.form-call span,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .parallax-window.mod-258 a.btn.form-call span {
    color: #ffffff !important;
}

body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .parallax-window.mod-226 a.btn.form-call,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .parallax-window.mod-246 a.btn.form-call,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .parallax-window.mod-258 a.btn.form-call {
    border: 2px solid #ffffff !important;
    background: transparent !important;
    padding: 12px 28px !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .25s ease-in-out;
}

body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .parallax-window.mod-226 a.btn.form-call:hover,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .parallax-window.mod-246 a.btn.form-call:hover,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .parallax-window.mod-258 a.btn.form-call:hover {
    background: #1E7D72 !important;
    border-color: #1E7D72 !important;
}

body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .parallax-window.mod-226 a.btn.form-call:hover span,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .parallax-window.mod-246 a.btn.form-call:hover span,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .parallax-window.mod-258 a.btn.form-call:hover span {
    color: #ffffff !important;
}

/* POSZERZENIE TEKSTU W MODULE TEKST-OBRAZ – NA DWÓCH WYBRANYCH STRONACH */
body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .text-image-box .col-7.col-lg-9,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .text-image-box .col-7.col-lg-9,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .text-image-box .col-7.col-lg-9 {
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* TREŚĆ POD H2 W THREE-ICONS */
body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .standard.three-icons.mod-229 .content p,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .standard.three-icons .content p,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .standard.three-icons .content p {
    font-size: 15px !important;
    line-height: 22px !important;
    color: var(--text) !important;
    margin: 10px 0 20px !important;
    text-align: left !important;
}

body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .standard.three-icons.mod-229 .content p strong,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .standard.three-icons .content p strong,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .standard.three-icons .content p strong {
    font-weight: 600;
    color: var(--text);
}

/* ZMNIEJSZANIE ODSTĘPÓW MIĘDZY WSZYSTKIMI MODUŁAMI */
body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .standard,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .standard,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .standard,
body.page-subpage.sub-pomoc-frankowiczom.semimoved .standard {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

body.page-subpage.sub-obsluga-prawna-przedsiebiorcow-bielsko-biala .standard + .standard,
body.page-subpage.sub-obsluga-prawna-spolek-bielsko-biala .standard + .standard,
body.page-subpage.sub-odszkodowanie-zadoscuczynienie-bielsko-biala .standard + .standard {
    margin-top: 0 !important;
}

.footer-extra-menu {
	margin-bottom: 40px;
}

.footer-extra-title {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #0f3d2e;
	margin-bottom: 20px;
	position: relative;
}

.footer-extra-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: #0f3d2e;
	margin-top: 8px;
}

.footer-extra-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.footer-extra-item {
	width: 100%;
	margin-bottom: 10px;
}

.footer-extra-item.two-cols {
	width: 50%;
}

.footer-extra-item a {
	color: #0f3d2e;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.2s ease;
}

.footer-extra-item a:hover {
	color: #000;
	text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
	.footer-extra-item.two-cols {
		width: 100%;
	}
}

