/*
Theme Name: ascar
Author: Łukasz Kuchnio && Łukasz Widz
Author URI: https://kuchnio.com && https://lukaszwidz.pl

*/

* { border: none; margin: 0px; padding: 0px;  }


body {
	background: #fff;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	font-family: 'Red Hat Display', sans-serif;
	font-size: 16px;
	color: #222;
	line-height: 1.5;
	
	overflow-x: hidden;
}

body.overflow {
	overflow: hidden;
}

a {
	color: #EB1C24;
	text-decoration: none;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

a:hover {
	color: #222;
	
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: 0;
}

h1 {
	color: #222;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.1;
}

h2 {
	color: #222;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.1;
}

h3 {
	color: #222;
	font-size: 32px;
	font-weight: 700;
}

h4 {
	color: #222;
	font-size: 18px;
	font-weight: 700;
}

p.button a,
a.button {
	background: #EB1C24;
	border: 2px solid #EB1C24;
	color: #fff;
	padding: 12px 35px;
	border-radius: 20px;
	margin: 0 5px;
	font-size: 16px;
	font-weight: 800;
}

	p.button a:hover,
	a.button:hover {
		background: #373C3F;
		border: 2px solid #373C3F;
	}

#cookie-notice {
	box-shadow: 0 -1px 5px 0 rgba(0,0,0,0.5);
	z-index: 99999999;
}

	#cookie-notice .cookie-notice-container {
		padding: 15px 3%;
		box-sizing: border-box;
		font-size: 16px;
	}

	#cookie-notice .cookie-notice-container a#cn-accept-cookie {
		position: relative;
		color: #AFCA0B;
		background: transparent;
		border: 2px solid #AFCA0B;
		padding: 7px 30px;
		margin: 0 5px;
		font-size: 16px;
		outline: 0;
		border-radius: 4px;
	}
	

		#cookie-notice .cookie-notice-container a#cn-accept-cookie:hover {
			background: #AFCA0B;
			border: 2px solid #AFCA0B;
			color: #fff;
			text-decoration: none;
			cursor: pointer;
		}
		

	
	#cookie-notice .cookie-notice-container a#cn-more-info {
		position: relative;
		background: transparent;
		color: #fff;
		font-size: 16px;
		padding: 0;
		text-decoration: underline;
		border-radius: 10px;
		font-weight: 400;
	}

		#cookie-notice .cookie-notice-container a#cn-more-info:hover {
			color: #fff;
			text-decoration: none;
		}


	#cookie-notice .cookie-notice-container .cn-close-icon {
		display: none;
	}
	
	



header {
	width: 100%;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	padding: 0;
	overflow: hidden;
}

	header .header_inner {
		position: relative;
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: flex-start;
	}
	
	body:not(.home) header .header_inner {
		background: #373C3F;
	}
	
	
		header #logo {
			padding: 5% 20px 0 5%;
		}
		
			header #logo a {
				display: block;
			}
		
			header #logo a img {
				display: block;
			}
			
			@media screen and (max-width: 500px) {
				header #logo a img {
					width: 150px;
					height: auto;
				}
			}

			
			header #menu {
				display: flex;
				align-items: center;
				margin-left: auto;
				position: relative;
				padding: 20px 35px;
				background: #fff;
				border-radius: 0 0 0 20px;
				display: flex;
				align-items: center;
			}

			@media screen and (max-width: 500px) {
				header #menu {
					padding: 10px 20px;
				}
			}



			header #menu #show-menu {
				display: none;
			}
							
			header #menu .show-menu {
				text-decoration: none;
				display: flex;
				flex-direction: column;
				justify-content: space-evenly;
				padding: 0;
				position: relative;
				top: 0px;
				width: 25px;
				height: 32px;
				cursor:  pointer;
				z-index: 9999;
				transform: scale(0.9);
			}

			header #menu .show-menu:hover {
				color: #E40000;
				cursor: pointer;
			}
			
				header #menu #toggle .span  {
					height:  4px;
					background:  #EB1C24;
					transition:  all .3s ease-out;
					backface-visibility:  hidden;
				}
							
				header #menu #toggle .span#two {
					width: 70%;
				}

				header #menu #toggle:hover .span {
					background: #EB1C24;
					transition:  all .3s ease-out;
				}
				
			header #menu input#show-menu ~ .menu_inner {
				position: absolute;
				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				width: 100vw;
				height: 100%;
				
				top: 0;
				left: -100vw;
				
				overflow: hidden;
				
				position: fixed;
				z-index: 9999999999999;
				padding: 60px 0 0 0;
	
				opacity: 0;
				
				transition: 		all 0.5s ease 0s;
				-webkit-transition: all 0.5s ease 0s;
			}
			
				
				header #menu input#show-menu:checked ~ .menu_inner {
					left: 0;
					box-sizing: border-box;
					opacity: 1;
					background-color: #373C3F;
					transition: 		all 0.5s ease 0s;
					-webkit-transition: all 0.5s ease 0s;
				}
				
				header #menu .menu_inner2 {
					display: flex;
					flex-direction: column;
					width: 100%;
					align-items: center;
					overflow: auto;
				}
				
			
				header #menu nav #close-menu {
					position: absolute;
					right: 35px;
					top: 35px;
					
					display: block;
					width: 35px;
					height: 35px;
				}
				
					header #menu nav #close-menu:before {
						content: "";
						display: block;
						width: 35px;
						height: 3px;
						background: #fff;
						
						position: absolute;
						left: 5px;
						top: 5px;
						
						transform: rotate(45deg);
						transition: all 0.2s ease;
					}
				
					header #menu nav #close-menu:after {
						content: "";
						display: block;
						width: 35px;
						height: 3px;
						background: #fff;
						
						position: absolute;
						left: 5px;
						top: 5px;
						
						transform: rotate(-45deg);
						transition: all 0.2s ease;
					}

				header #menu nav #close-menu:hover:after,
				header #menu nav #close-menu:hover:before {
					cursor: pointer;
					background: #EB1C24;
					transition: all 0.2s ease;
				}
					
					
					
					
					
				
				header #menu nav ul {
					padding-top: 0px;
				}

				header #menu nav ul li {
					list-style: none;
					display: block;
					padding: 12px 0;
				}

					header #menu nav ul li a {
						display: block;
						text-align: center;
						padding: 1px 10px;
						border-radius: 3px;
						color: #fff;
						font-weight: 500;
						letter-spacing: 1px;
						line-height: 1.2;
						font-size: 18px;
						text-transform: uppercase;
					}

					header #menu nav ul li.current-menu-item a,
					header #menu nav ul li a:hover {
						color: #EB1C24;
						font-weight: 700;
					}





		header #menu .telefon {
			position: relative;
			border-top: 1px solid rgba(255 255 255 / 0.1);
			display: flex;
			width: 100%;
			flex-direction: column;
			align-items: center;
			padding-bottom: 50px;
			margin-top: 10px;
		}
	
	
			header #menu .telefon .textwidget:first-child {
				order: 2
			}

			header #menu .telefon .textwidget:first-child a {
				margin-top: 20px;
				
				display: flex;
				width: 40px;
				height: 40px;
				justify-content: center;
				align-items: center;
				background: #EB1C24;
				border-radius: 3px;
			}

				header #menu .telefon .textwidget:first-child a img {
					display: inline-block;
				}

				header #menu .telefon .textwidget:first-child a:hover {
					background: #4E565A;
				}
				
				

			header #menu .telefon .textwidget:last-child {
				order: 1;
				font-size: 16px;
				color: #909598;
				text-align: center;
				
			}
				
				header #menu .telefon .textwidget:last-child a {
					color: #EB1C24;
					font-size: 26px;
					font-weight: 700;
				}


#slider {
	position: relative;
}

	#slider #slider_inner {
		width: 94vw;
		height: 60vh;
		min-height: 600px;
		margin-left: 0;
		margin-right: 5px;
		
		border-radius: 0 0 20px 0;
	}

	@media screen and (max-width: 500px) {
		#slider #slider_inner {		
			min-height: 450px;
		}
	}
	
	#slider .swiper-slide {
		
	}

		#slider .swiper-slide .slide {
			display: flex;
			flex-direction: column;
			justify-content: center;
			
			width: 100%;
			height: 100%;
			overflow: hidden;
			padding: 50px 3% 0 5%;
			box-sizing: border-box;
			
			
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 50% 50%;
		}
		

		#slider .swiper-slide .slide h2 {
			
			max-width: 90%;
			font-size: 42px;
			font-weight: 700;
			text-transform: uppercase;
			color: #fff;
			padding-bottom: 20px;
			line-height: 1;
		}

		@media screen and (max-width: 500px) {
			#slider .swiper-slide .slide h2 {
				font-size: 36px;
			}
		}

		#slider .swiper-slide .slide .desc {
			
			max-width: 85%;
			color: #fff;
			line-height: 1.4;
		}
		
		@media screen and (max-width: 500px) {
			#slider .swiper-slide .slide .desc p {
				display: none
			}
		}

		
		#slider .swiper-slide .slide .desc a {
			margin-top: 10px;
			display: inline-block;
			color: #fff;
			padding: 7px 20px;
			border: 2px solid #fff;
			border-radius: 20px;
		}
		
		
		#slider .swiper-slide .slide .desc a:hover {
			background: #EB1C24;
			color: #fff;
			border: 2px solid #EB1C24;
			
		}
		
	#slider #nav_right {
		display: none;
	}
		
	#slider #nav_left {
		display: flex;
		justify-content: space-between;
		align-items: center;
		
		position: absolute;
		z-index: 99;
		left: 0;
		bottom: 0;
		padding: 15px 15px 15px 8%;
		
		background: #EB1C24;
		border-radius: 0 20px 0 0;
		color: #fff;
	}
	
		#slider #nav_left .progress {
			position: relative;
			margin-right: 30px;
			margin-left: 5%;
			width: 150px;
			height: 3px;
			background: rgba(255, 255, 255, 0.5);
		}

		@media screen and (max-width: 500px) {
			#slider #nav_left .progress {
				width: 100px;
			}
		}
		
			#slider #nav_left .progress .first {
				position: absolute;
				left: -25px;
				top: 50%;
				transform: translateY(-50%);
			}
			
			#slider #nav_left .progress .last {
				position: absolute;
				right: -25px;
				top: 50%;
				transform: translateY(-50%);
				
			}
			
		
		
			#slider #nav_left .progress .swiper-scrollbar-drag {
				background: #fdf;
			}
		
		#slider #nav_left .button-prev,
		#slider #nav_left .button-next {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 22px;
			height: 22px;
			
			margin: 0 3px;
			outline: 0;
			cursor: pointer;
			
			transition: all 0.2s ease;
			
			background-size: contain;
			background-repeat: no-repeat;
			background-position: 50% 50%;
		}

			#slider #nav_left .button-prev {
				background-image: url(graf/arrow-left-circle.svg);
			}
			
			#slider #nav_left .button-next {
				background-image: url(graf/arrow-right-circle.svg);
			}
			
			#slider #nav_left .button-prev:hover {
				background-image: url(graf/arrow-left-circle-hover.svg);
			}
			
			#slider #nav_left .button-next:hover {
				background-image: url(graf/arrow-right-circle-hover.svg);
			}

			
			
#wszystko {
	padding: 60px 3% 0 3%;
	
	background-image: url(graf/bg_wszystko.jpg);
	background-size: 500px auto;
	background-repeat: no-repeat;
	background-position: 0% 20%;
}

	#wszystko .wp-block-group__inner-container {
		max-width: 1000px;
		margin: 0 auto;
		box-sizing: border-box;
	}

	#wszystko .wp-block-group__inner-container h2 {
		padding-bottom: 10px;
	}

		#wszystko .wp-block-group__inner-container h2 strong {
			color: #EB1C24;
		}
			

	#wszystko .wp-block-group__inner-container .wp-block-columns {
		flex-direction: column;
		justify-content: space-between;
	}
			
		#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column {
			display: flex;
			flex-direction: column;
			position: relative;
			flex-basis: 90%;
			max-width: 90%;
			text-align: center;
			
			margin: 0 auto;
			padding: 40px 20px;
			box-sizing: border-box;
			transition: all 0.2s ease;
		}
		
		#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:after {
			content: "";			
			position: absolute;
			bottom: -5px;
			left: 50%;
			
			display: inline-block;
			border-right: 3px solid #EB1C24;
			border-bottom: 3px solid #EB1C24;
			width: 7px; 
			height: 7px;
			transform: rotate(45deg) translateX(-50%);
		}

		#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:last-child:after {
			display: none;
		}

			#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column figure {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 70px;
				height: 70px;
			
				margin: 0 auto;
				border: 2px solid #E5E5E5;
				border-radius: 4px;
				
				transition: all 0.2s ease;
			}
	
				#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:hover figure svg path {
					transition: all 0.2s ease;
				}
				
			#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column h3 {
				font-size: 30px;
				padding: 20px 0 0px 0;
			}
	

		#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:hover {
			transform: scale(1.05);
			transition: all 0.2s ease;
		}

			#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:hover figure {
				background: #EB1C24;
				border: 2px solid #EB1C24;
				transition: all 0.2s ease;
			}

			#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:hover figure svg path {
				stroke: #fff;
				transition: all 0.2s ease;
			}
			
			#wszystko .wp-block-group__inner-container .wp-block-columns .wp-block-column:nth-child(2):hover figure svg path {
				fill: #fff;
				stroke: transparent;
				transition: all 0.2s ease;
			}
			
			
			
#inpost {
	max-width: 100%;
	margin: 0 auto 30px auto;
	padding: 40px 3%;
	background: #F8F8F8;
}

	#inpost .wp-block-media-text {
		font-size: 22px;
		text-align: center;
		
		display: flex;
		flex-direction: column;
	}

		#inpost figure img {
			width: 180px;
			height: auto;
		}
				
	#inpost .wp-block-media-text__content {
		padding: 10px 0 0px 0;
	}
			
			
			
#stacja {
	display: flex;
	justify-content: flex-end;
	padding: 20px 0 0 0;
	box-sizing: border-box;
	overflow: hidden;
}

	#stacja .wp-block-group__inner-container {
		display: flex;
		flex-direction: column;
		position: relative;
		width: 100%;
		box-sizing: border-box;
	}
	

	#stacja .wp-block-group__inner-container h2 {
		display: inline-block;
		padding: 10px 3% 20px 3%;
		text-align: center;
		background: #fff;
		position: relative;
	}
	
	#stacja .wp-block-group__inner-container h2 strong {
		color: #EB1C24;
	}
		
	#stacja .wp-block-group__inner-container .wp-block-columns {
		position: relative;
		z-index: 5;
		
		background: #EB1C24;
		border-radius: 20px 0 0 20px;
		
		justify-content: flex-end;
		align-self: flex-end;
		align-items: center;
		flex-direction: column;
		width: 94vw;
		box-sizing: border-box;
		padding: 30px 3% 30px 5%;
	}
	
			
		#stacja .wp-block-group__inner-container .wp-block-columns .wp-block-column:first-child {
			color: #fff;
			flex-basis: 45%;
			margin: 0;
		}
		

	
			#stacja .wp-block-group__inner-container .wp-block-columns .wp-block-column:first-child li {
				position: relative;
				padding: 10px 0 10px 35px;
				list-style: none;
			}

			#stacja .wp-block-group__inner-container .wp-block-columns .wp-block-column:first-child li:before {
				content: "";
				
				position: absolute;
				left: 0;
				top: 10px;
				
				display: block;
				width: 20px;
				height: 20px;
				
				background-image: url(graf/ico_check_white.png);
				background-size: contain;
				background-repeat: no-repeat;
				background-position: 0% 50%;
			}
		
		

		#stacja .wp-block-group__inner-container .wp-block-columns .wp-block-column:last-child {
			position: relative;
			flex-basis: 45%;
			margin: 0;
		}

			#stacja .wp-block-group__inner-container .wp-block-columns .wp-block-column:last-child h3 {
				color: #fff;
				font-size: 42px;
				line-height: 1.1;
			}

				#stacja .wp-block-group__inner-container .wp-block-columns .wp-block-column:last-child h3:last-child {
					padding-left: 50px;
					 -webkit-text-stroke-width: 1px;
					  -webkit-text-stroke-color: #fff;
					  color: transparent;
				}
		

			
			
#wszystkietypy {
	background: #fff;
}

	#wszystkietypy .wp-block-group__inner-container {
		display: flex;
		flex-direction: column;
		width: 100%;
		background: #fff;
		border-radius: 0 0 20px 0;
		padding: 30px 3%;
		box-sizing: border-box;
	}
	
	
	#wszystkietypy_lista {
		order: 2;
		width: 100%;
		margin: 0 auto;
		padding-top: 40px;
		padding-bottom: 40px;
		justify-content: center;
	}
	

	#wszystkietypy_lista.wszystkietypy_lista_min {
		padding: 40px 0 0 0;
	}
	
	
		#wszystkietypy_lista .wp-block-column {
			margin: 40px 0;
			flex-basis: 45% !important;
			text-align: center;
			align-items: center;
		}
		
		#wszystkietypy_lista .wp-block-column figure {
			position: relative;
			display: flex;
			justify-content: center;
			align-items: center;
			margin: 0 auto;
			width: 100px;
			height: 100px;
			background: #373C3F;
			border-radius: 50%;
			box-shadow: 0 0 0px 20px rgba(55, 60, 63, 0.1);
			transition: all 0.2s ease;
		}

			#wszystkietypy_lista.wszystkietypy_lista_min .wp-block-column figure {
				width: 80px;
				height: 80px;
				box-shadow: 0 0 0px 15px rgba(55, 60, 63, 0.1);
			}
		
			#wszystkietypy_lista.wszystkietypy_lista_min .wp-block-column figure img {
				max-width: 60%;
				height: auto;
			}

		#wszystkietypy_lista .wp-block-column:hover figure {
			background: #EB1C24;
			transform: scale(1.1);
			transition: all 0.2s ease;
		}
		
		#wszystkietypy_lista .wp-block-column figure figcaption {
			display: flex;
			align-items: center;
			justify-content: center;
			
			position: absolute;
			top: -40px;
			left: 50%;
			transform: translateX(-50%);
			
			width: 130%;
			height: 35px;
			margin: 0;
			text-align: center;
			
			background: #EB1C24;
			padding: 5px 10px;
			color: #fff;
			font-weight: 600;
			font-size: 14px;
			border-radius: 5px;
			
			line-height: 1.2;
			
			opacity: 0;
			transition: all 0.2s ease;
		}

		#wszystkietypy_lista .wp-block-column:hover figure figcaption {
			top: -55px;
			
			opacity: 1;
			transition: all 0.2s ease;
		}
			
			
		
	#wszystkietypy h2 {
		order: 1;
		font-size: 30px;
		font-weight: 500;
	}
	
	#wszystkietypy #odnosniki {
		order: 3;
		padding: 30px 0 0 0;
	}
	
	
		#wszystkietypy #odnosniki a:first-child {
			background: #EB1C24;
			border: 2px solid #EB1C24;
			color: #fff;
			padding: 15px 45px;
			border-radius: 20px;
			margin: 0 10px;
			
			font-size: 18px;
			font-weight: 800;
		}
		
			#wszystkietypy #odnosniki a:first-child:hover {
				background: #373C3F;
				border: 2px solid #373C3F;
			}
		
	
		#wszystkietypy #odnosniki a:last-child {
			background: #fff;
			border: 2px solid #EB1C24;
			color: #EB1C24;
			padding: 15px 45px;
			border-radius: 20px;
			margin: 0 10px;
			
			font-size: 18px;
			font-weight: 800;
		}
		
			#wszystkietypy #odnosniki a:last-child:hover {
				background: #EB1C24;
				color: #fff;
				border: 2px solid #EB1C24;
			}
	
	@media screen and (max-width: 700px) {
		#wszystkietypy #odnosniki {
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: column;
			padding: 0;
		}
		
		#wszystkietypy #odnosniki a {
			display: inline-block;
			width: auto;
			margin: 15px 0 !important;
		}
		
	}
	
	
	
	
#autoserwis {
	background: #F8F8F8;
	padding: 100px 3%;
	box-sizing: border-box;
	overflow: hidden;
}

	#autoserwis .wp-block-columns.fit {
		max-width: 1000px;
		margin: 0 auto;
	}

	#autoserwis .wp-block-columns.fit .wp-block-column:first-child {
		flex-basis: 60%;
	}
			
		#autoserwis .wp-block-columns.fit h2 strong {
			color: #EB1C24;
		}
			
	#autoserwis .wp-block-columns.fit .wp-block-column:last-child {
		flex-basis: 40%;
		align-self: center;
		justify-content: center;
		text-align: center;
		padding-top: 50px;
	}

			
	
	#oferta_serwis {
		position: relative;
		width: 100%;
		margin: 0 auto;
		padding-top: 25px;
		display: flex;
		flex-direction: column;
	}

		#oferta_serwis .wp-block-column:nth-child(1),
		#oferta_serwis .wp-block-column:nth-child(3) {
			display: flex;
			flex-direction: column;
			position: relative;
			flex-basis: unset !important;
			max-width: 100%;
			width: 330px;
			align-self: center;
			z-index: 5;
			margin: 0;
		}
		
	
			#oferta_serwis .wp-block-column .wp-block-media-text {
				color: #4E565A;
				font-size: 24px;
				font-weight: 800;
				
				transition: all 0.2s ease;
				
				grid-template-columns: 80px auto !important;
				margin: 25px 0;
				text-align: left;
			}

			#oferta_serwis .wp-block-column:nth-child(1) .wp-block-media-text__media,
			#oferta_serwis .wp-block-column:nth-child(3) .wp-block-media-text__media {
				grid-row: 1 !important;
				grid-column: 1 !important;
			}
			
			#oferta_serwis .wp-block-column:nth-child(1) .wp-block-media-text__content,
			#oferta_serwis .wp-block-column:nth-child(3) .wp-block-media-text__content {
				grid-row: 1 !important;
				grid-column: 2 !important;
			}
			
			
				#oferta_serwis .wp-block-column .wp-block-media-text:hover {
					transform: scale(1.05);
					color: #EB1C24;
					
					transition: all 0.2s ease;
				}
			
			#oferta_serwis .wp-block-media-text figure {
				display: flex;
				width: 65px;
				height: 65px;
				align-items: center;
				justify-content: center;
				
				background: #EB1C24;
				border-radius: 50%;
				
				box-shadow: 0 0 0 12px rgba(227, 30, 36, 0.1);
				transition: all 0.2s ease;
			}
			
				#oferta_serwis .wp-block-media-text:hover figure {				
					box-shadow: 0 0 0 16px rgba(227, 30, 36, 0.1);
					
					transition: all 0.2s ease;
				}
				
					
					#oferta_serwis .wp-block-media-text img {
						width: auto;
						height: auto;
					}
			
			#oferta_serwis .wp-block-column .wp-block-media-text .wp-block-media-text__content {
				padding: 0 0 0 10%;
				text-align: left;
				
				font-size: 22px;
			}
			

				#oferta_serwis .wp-block-column:nth-child(3) div:nth-child(1) {
					order: 1;
				}
				
				#oferta_serwis .wp-block-column:nth-child(3) div:nth-child(3) {
					order: 2;
				}
				

				#oferta_serwis .wp-block-column:nth-child(3) h3 {
					flex-basis: 100%;
					order: 3;
					padding-top: 40px;
				}
			
			#oferta_serwis .wp-block-column:nth-child(3) h3 {

				font-size: 38px;
			}
	
	
	
	
	
	
	
	

		#oferta_serwis .wp-block-column:nth-child(2) {
			
			position: absolute;
			left: 0;
			width: 100%;
			height: 100%;
			margin: 0;
		}


			#oferta_serwis .wp-block-column:nth-child(2) figure {
				position: absolute;
				left: 0%;
				width: 100%;
				height: 100%;
				opacity: 0.1;
			}
				
			#oferta_serwis .wp-block-column:nth-child(2) figure img {
				position: absolute;
				left: 50%;
				top: 50%;
				width: 100%;
				height: 100%;
				transform: translate(-50%, -40%);
				filter: blur(3px);
				
				height: 100% !important;
				width: auto;
			}
				


		
		
#nasze_stacje {
	padding: 0 0 50px 0;
}

	#nasze_stacje .wp-block-group__inner-container {
		position: relative;
		padding: 50px 0 0 0;
		background: #EB1C24;
		color: #fff;
	}

	#nasze_stacje .wp-block-group__inner-container:after {
		content: "";
		
		display: block;
		width: 100%;
		height: 150px;
		
		background: #fff;
		position: absolute;
		left: 0;
		bottom: 0;
	}
			
	#nasze_stacje h5 {
		color: #fff;
		font-weight: 400;
		letter-spacing: 1px;
		opacity: 0.5;
	}
			
	#nasze_stacje h2 {
		color: #fff;
	}
			
	#nasze_stacje #stacje {
		margin: 0 auto;
		padding: 20px 0;
	}
	
		#nasze_stacje #stacje .swiper-wrapper {
			justify-content: center;
			display: flex;
			width: 100%;
			flex-direction: column;
		}
		
		#nasze_stacje #stacje .swiper-slide {
			position: relative;
			width: 96% !important;
			margin: 20px auto 50px auto;
		}
	
		#nasze_stacje #stacje .stacja_img {
			display: block;
			width: 100%;
			height: 50vw;
			min-height: 400px;
			border-radius: 20px;
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 50% 50%;
		}
		

		#nasze_stacje #stacje .stacja_txt {
			position: absolute;
			bottom: 0px;
			left: 0;
			margin-bottom: -40px;
			
			box-sizing: border-box;
			width: 70%;
			
			color: #4E565A;
			font-weight: 500;
			padding: 20px;
			background: #fff;
			border-radius: 0 20px 20px 20px;
			transition: all 0.2s ease;
		}

		@media screen and (max-width: 600px) {
			#nasze_stacje #stacje .stacja_txt {
				width: 90%;
			}			
		}
		
		
			#nasze_stacje #stacje .stacja_txt .stacja_adres {
				padding: 0 0 0 35px;
				margin: 10px 0;
				background-image: url(graf/ico_gps_red.png);
				background-size: 22px 22px;
				background-repeat: no-repeat;
				background-position: 0% 20%;
			}
	
		
			#nasze_stacje #stacje .stacja_txt .stacja_telefon {
				padding: 0 0 0 35px;
				margin: 10px 0;
				background-image: url(graf/ico_tel_red.png);
				background-size: 21px 21px;
				background-repeat: no-repeat;
				background-position: 0% 20%;
			}		

		
			}
		
				#nasze_stacje #stacje .swiper-slide:hover .stacja_txt .stacja_buttons  {
					opacity: 1;
					padding-top: 30px;
					max-height: 50px;
				}
						
				@media screen and (max-width: 600px) {
					#nasze_stacje #stacje .swiper-slide .stacja_txt .stacja_buttons  {
						text-align: center;
					}			
				}
				
				#nasze_stacje #stacje .stacja_txt .stacja_buttons a:first-child {
					display: inline-block;
					padding: 6px 25px;
					font-weight: 600;
					font-size: 15px;
					color: #EB1C24;
					background: #fff;
					border-radius: 20px;
					border: 2px solid #EB1C24;
					
					margin: 5px 10px 5px 0;
				}
		
				#nasze_stacje #stacje .stacja_txt .stacja_buttons a:last-child {
					display: inline-block;
					padding: 6px 25px;
					font-size: 15px;
					font-weight: 600;
					color: #fff;
					background: #EB1C24;
					border-radius: 20px;
					border: 2px solid #EB1C24;
					
					margin: 5px 10px 5px 0;
					
				}

				#nasze_stacje #stacje .stacja_txt .stacja_buttons a:hover {
					color: #fff;
					background: #373C3F;
					border: 2px solid #373C3F;
				}
		
		
		
		
		
#kliencionas {
	display: none !important;
}
		
		
		
#mapa {
	filter: grayscale(1);
	opacity: 0.7;
	
	width: 92vw;
	overflow: hidden;
	border-radius: 0 20px 0 0;	
}

	#mapa iframe {
		height: 70vw !important;
	}

body.page-id-14 #mapa,
body.page-id-12 #mapa,
body.page-id-10 #mapa {
	position: relative;
	margin-top: -40px;
}






#content {
	position: relative;
}

#content:not(.home) {
	padding: 65px 0 0 0;
}

	#content #header {
		position: relative;
		overflow: hidden;
		width: 92vw;
		background: #373C3F;
		
		height: 65px;
		border-radius: 0 0 20px 0;
	}
	
		#content #header h1 {
			position: absolute;
			top: 38px;
			letter-spacing: 1px;
			font-size: 30px;
			padding-left: 5%;
			color: #fff;
		}
	
	
	#content.txt .content_inner {
		max-width: 1350px;
		margin: 0 auto;
		padding: 60px 3%;
		box-sizing: border-box;
	}

		#content.txt .content_inner h2 {
			font-size: 32px;
			padding-bottom: 20px;
		}


	#content ul {
		list-style: none;
		padding: 20px 0;
	}
				
		#content ul li {
			padding: 10px 0 10px 35px;
			
			background-image: url(graf/ico_check_red.png);
			background-position: 0% 9px;
			background-repeat: no-repeat;
		}

	#content ol {
		padding: 5px 0;
		margin-left: 20px;
	}
				
		#content ol > li {
			padding: 7px 0;
		}


	
	#content .wp-block-columns.fit {
		max-width: 1350px;
		margin: 0 auto;
	}
	
	#content .wp-block-columns.col_stacje {
		max-width: 1000px;
		flex-direction: column;
	}
	
		#content .wp-block-columns.col_stacje .wp-block-column:first-child {
			display: none;
		}
	
	
		#content .wp-block-columns.col_stacje .wp-block-column:last-child {
			position: relative;
			flex-basis: 100%;
			padding: 60px 0 10px 0;
			box-sizing: border-box;
			background: #fff;
			margin: 0;
		}
	
		#content .wp-block-columns.col_stacje .wp-block-column:last-child .stacje_txt {
			position: relative;
			padding: 0 3%;			
		}


	#content #sub_stacje {
		position: relative;
		max-width: 1000px;
		margin: 0 auto;
		padding: 50px 0 0 0;
	}

		#content #sub_stacje .sub_stacja {
			display: flex;
			flex-direction: column;
			width: 100%;
			padding: 0 3% 50px 3%;
			box-sizing: border-box;
			text-align: center;
		}
	
			#content #sub_stacje .sub_stacja .stacja_img {
				display: block;
				position: relative;
				width: 80%;
				max-width: 400px;
				margin: 0 auto;
				height: 50vw;
				max-height: 300px;
				border-radius: 20px;
				background-size: cover;
				background-repeat: no-repeat;
				background-position: 50% 100%;
			}

			#content #sub_stacje .sub_stacja .stacja_img span {
				display: none;
			}
				
			#content #sub_stacje .sub_stacja .stacja_txt {
				display: flex;
				width: 100%;
				flex-direction: column;
				margin: 0 auto;
				align-items: center;
				padding-top: 20px;
			}
				
				#content #sub_stacje .sub_stacja .stacja_txt .stacja_adres {
					padding: 0 0 0 35px;
					margin: 10px 0;
					background-image: url(graf/ico_gps_red.png);
					background-size: 22px 22px;
					background-repeat: no-repeat;
					background-position: 0% 20%;
				}
	
				#content #sub_stacje .sub_stacja .stacja_txt .stacja_telefon {
					padding: 0 0 0 35px;
					margin: 10px 0;
					background-image: url(graf/ico_tel_red.png);
					background-size: 21px 21px;
					background-repeat: no-repeat;
					background-position: 0% 20%;
				}		
		
				#content #sub_stacje .sub_stacja .stacja_txt .stacja_buttons {
					padding-top: 20px;
					text-align: center;

				}
										
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_buttons a:first-child {
						display: inline-block;
						padding: 8px 30px;
						font-weight: 600;
						color: #fff;
						background: #EB1C24;
						border-radius: 20px;
						border: 2px solid #EB1C24;
						
						margin: 5px;
					}
						
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_buttons a:last-child {
						display: inline-block;
						padding: 8px 30px;
						font-weight: 600;
						color: #EB1C24;
						background: #fff;
						border-radius: 20px;
						border: 2px solid #EB1C24;
						
						margin: 5px;
						
					}
					
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_buttons a:hover {
						color: #fff;
						background: #373C3F;
						border: 2px solid #373C3F;
					}
		
				#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi {
					margin-top: auto;
					padding-bottom: 25px;
				}		
				
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi span.mob {
						display: block;
						padding: 25px 0 15px 0;
						font-size: 16px;
						font-weight: bold;
						color: #EB1C24;
					}
					
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul {
						display: flex;
						flex-wrap: wrap;
						list-style: none;
						padding: 0;
						justify-content: center;
					}

					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li {
						display: flex;
						
						position: relative;
						width: 50px;
						height: 50px;
						border-radius: 3px;
						border: 1px solid #909598;
						margin-right: 10px;
						padding: 0;
						margin: 10px 15px;
						
						opacity: 0.2;
						
						background-position: 50% 50%;
						background-size: auto auto;
						background-repeat: no-repeat;
					}

						#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.stacjapaliw {
							background-image: url(graf/ico_stacjapaliw.png);
						}
						
						#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.myjnia {
							background-image: url(graf/ico_myjnia.png);
						}
						
						#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.odkurzacz {
							background-image: url(graf/ico_odkurzacz.png);
						}
						
						#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.kompresor {
							background-image: url(graf/ico_kompresor.png);
						}
						
						#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.jedzenie {
							background-image: url(graf/ico_jedzenie.png);
						}
						
						#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.napoje {
							background-image: url(graf/ico_napoje.png);
						}
						

					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.checked {
						opacity: 1;
					}

					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li:not(.checked) {
						cursor: not-allowed;
					}

				
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li span {
						opacity: 0;
						position: absolute;
						z-index: 9;
							
						background: #EB1C24;
						color: #fff;
						border-radius: 5px;
						padding: 5px 10px;
					
						white-space: pre;
							
						text-align: center;
						left: 50%;
						transform: translateX(-50%);
						bottom: -30px;
						transition: all 0.2s ease;
					}
					
					#content #sub_stacje .sub_stacja .stacja_txt .stacja_uslugi ul li.checked:hover span {
						opacity: 1;
						bottom: -40px;
						transition: all 0.2s ease;
					}
					
				

	#stacjekontroli_top {
		position: relative;
		width: 100vw;
		background: #F8F8F8;
	}

		#stacjekontroli_top .wp-block-group__inner-container {
			position: relative;
			z-index: 1;
		}
		
		#stacjekontroli_top .wp-block-group__inner-container:before {
			content: "";
			
			position: absolute;
			z-index: -1;
			right: 0;
			top: 0;
			
			display: block;
			width: 50%;
			height: 100%;
			
			background: #fff;
			
		}
		
		#stacjekontroli_top > .wp-block-group__inner-container > .wp-block-columns {
			max-width: 1200px;
			margin: 0 auto;
			flex-direction: column;
		}
						
			#stacjekontroli_top > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column:first-child {
				display: none;
			}

						
			#stacjekontroli_top > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column:last-child {
				flex-basis: 100%;
				margin: 0;
				padding: 60px 3% 150px 3%;
				box-sizing: border-box;
				background: #fff;
				border-radius: 0 0 0 20px;
			}
				
			#stacjekontroli_top > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column:last-child .stacja_txt {
				position: relative;
			}
				
				
			#stacjekontroli_top > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column:last-child ul {
				list-style: none;
				padding: 40px 0;
			}
				
				#stacjekontroli_top > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column:last-child ul li {
					padding: 10px 0 10px 35px;
					
					background-image: url(graf/ico_check_red.png);
					background-position: 0% 9px;
					background-repeat: no-repeat;
				}
				
	#stacjekontroli_img {
		position: relative;
		
		max-width: 100vw;
		margin: 0 auto;
		
		background: #F8F8F8;
	}	
	
	
		#stacjekontroli_img .wp-block-group__inner-container {
			position: relative;
			z-index: 2;
			max-width: 1200px;
			margin: 0 auto;
			margin-top: -100px;
		}
			
		#stacjekontroli_img .wp-block-group__inner-container figure {
			margin: 0;
		}
			
		#stacjekontroli_img .wp-block-group__inner-container img {
			display: block;
			width: 95%;
			margin: 0 auto;
			height: auto;
			border-radius: 20px;
		}
		
		
	#stacjekontroli_cennik {
		position: relative;
		
		max-width: 100vw;
		margin: 0 auto;
		padding-bottom: 50px;
		
		background: #F8F8F8;
	}	
	
		#stacjekontroli_cennik .wp-block-group__inner-container {
			max-width: 1200px;
			margin: 0 auto;
			padding: 30px 3%;
			box-sizing: border-box;
			
		}

		#stacjekontroli_cennik .wp-block-group__inner-container .wp-block-columns {
			flex-direction: column;
		}
		
		#stacjekontroli_cennik .wp-block-group__inner-container .wp-block-column:first-child {
			display: none;
		}

		#stacjekontroli_cennik .wp-block-group__inner-container .wp-block-column:last-child {
			flex-basis: 100%;
			margin: 0;
			box-sizing: border-box;
		}
			
			
		#stacjekontroli_cennik .wp-block-group__inner-container table {
			padding-top: 30px;
			vertical-align: top;
		}
			
		#stacjekontroli_cennik .wp-block-group__inner-container table td {
			width: 50%;
			box-sizing: border-box;
			vertical-align: top;
			
			color: #909598;
		}

			
		#stacjekontroli_cennik .wp-block-group__inner-container table td:first-child {
			padding: 0 50px 20px 0;
		}
		
		#stacjekontroli_cennik .wp-block-group__inner-container table td:last-child {
			padding: 0 0 20px 50px;
		}
			
		@media screen and (max-width: 550px) {
			#stacjekontroli_cennik .wp-block-group__inner-container table td {
				display: block;
				width: 100%;
				text-align: center;
				padding: 20px 0 !important;
			}
		}
			
		#stacjekontroli_cennik .wp-block-group__inner-container table td img {
			vertical-align: middle;
			margin: 20px 15px 20px 0;
		}
			
		#stacjekontroli_cennik .wp-block-group__inner-container table td em {
			font-style: normal;
			color: #EB1C24;
		}

		#stacjekontroli_cennik .wp-block-group__inner-container table td strong {
			display: inline-block;
			color: #222;
			margin-top: 10px;
			padding-top: 10px;
			padding-right: 20px;
			border-top: 1px solid #909598;
		}
		
		
	#odbierzprezent {
		display: flex;
		position: relative;
		margin-top: -50px;
		padding-bottom: 50px;
	}
		
		#odbierzprezent .wp-block-group__inner-container {
			display: flex;
			width: 100%;
			flex-direction: column;
			align-items: center;
		}
	
		#odbierzprezent h2 {
			position: relative;
			align-self: flex-end;
			width: 90%;
			box-sizing: border-box;
			
			background: #EB1C24;
			border-radius: 20px 0 0 20px;
			color: #fff;
			font-size: 30px;
			font-weight: 400;
			padding: 40px 10% 40px 5%;
		}
	
	

		#odbierzprezent a {
			display: inline-block;
			margin-top: 50px;
			
			background: #fff;
			border: 2px solid #EB1C24;
			color: #EB1C24;
			padding: 15px 45px;
			border-radius: 20px;
			font-size: 18px;
			font-weight: 800;
		}
	
			#odbierzprezent a:hover {
				background: #373C3F;
				border: 2px solid #373C3F;
				color: #fff
			}
			
			
			
			

	#autoserwis_sub {
		position: relative;
		width: 100%;
	}
	
	
		#autoserwis_sub .wp-block-group__inner-container {
			position: relative;
			z-index: 1;
		}
	

		#autoserwis_sub .wp-block-group__inner-container:before {
			content: "";
			
			position: absolute;
			z-index: -1;
			left: 0;
			top: 0;
			
			display: block;
			width: 50%;
			height: calc(100% - 100px);
			
			background: #F8F8F8;
		}

		#autoserwis_sub .wp-block-group__inner-container:after {
			content: "";
			
			position: absolute;
			z-index: -1;
			right: 0;
			top: 0;
			
			display: block;
			width: 50%;
			height: 100%;
			
			background: #fff;
		}
		
		#autoserwis_sub .wp-block-columns {
			max-width: 1350px;
			flex-direction: column;
			margin: 0 auto;
		}

			#autoserwis_sub .wp-block-columns .wp-block-column:first-child {
				display: none;
			}
	
			#autoserwis_sub .wp-block-columns .wp-block-column:last-child {
				position: relative;
				z-index: 1;
				flex-basis: 100%;
				padding: 60px 3% 100px 3%;
				box-sizing: border-box;
				border-radius: 0 0 0 20px;
				margin: 0;
				background-color: #fff;
				

				background-image: url(graf/img_autoserwis_blur.jpg);
				background-position: 0% 106px;
				background-size: auto 590px;
				background-repeat: no-repeat;
			}			


			
			

		#autoserwis_sub .wp-block-media-text {
			padding: 30px 0;
			grid-template-columns: 90px auto !important;
		}

			#autoserwis_sub .wp-block-media-text figure {
				display: flex;
				width: 65px;
				height: 65px;
				align-self: flex-start;
				margin-top: 15px;
				align-items: center;
				justify-content: center;
				transform: translateX(20px);
				background: #EB1C24;
				border-radius: 50%;
				box-shadow: 0 0 0 12px rgba(227, 30, 36, 0.1);
				transition: all 0.2s ease;
			}
					
				#autoserwis_sub .wp-block-media-text figure img {
					width: auto;
					height: auto;
				}
		
			#autoserwis_sub .wp-block-media-text .wp-block-media-text__content {
				grid-column: 2;
				grid-row: 1;
			}
		
			#autoserwis_sub .wp-block-media-text h3 {
				font-size: 24px;
				font-weight: 800;
				padding-bottom: 20px;
			}
			
			
			
			
	#praca {
		position: relative;
		width: 100%;
	}
	
	
		#praca .wp-block-group__inner-container {
			position: relative;
			z-index: 1;
		}

		#praca .wp-block-columns {
			width: 100%;
			margin: 0 auto;
			
			flex-direction: column;
		}

			#praca .wp-block-columns .wp-block-column:first-child {
				position: relative;
				flex-basis: 100%;
				max-width: 100%;
				box-sizing: border-box;
				padding: 60px 3% 0px 3%;
				
				overflow: hidden;
			}

				#praca .wp-block-columns .wp-block-column:first-child .swiper-wrapper {
				}

				#praca .wp-block-columns .wp-block-column:first-child .swiper-wrapper .swiper-slide {
					padding: 30px 0 0 0;
					cursor: pointer;
					transition: all 0.2s ease;
					text-align: center;
					background-image: none;
					background-position: 50% 50%;
					background-repeat: no-repeat;
				}
				
				#praca .wp-block-columns .wp-block-column:first-child .swiper-wrapper .swiper-slide:hover {
					color: #EB1C24;
					
					transition: all 0.2s ease;
				}
				
				#praca .wp-block-columns .wp-block-column:first-child .swiper-wrapper .swiper-slide-thumb-active {
					font-weight: bold;
					
					background-image: url(graf/ico_arrow_down_red.png);
					background-position: 50% 0%;
					background-repeat: no-repeat;
				}
					
					

			#praca .wp-block-columns .wp-block-column:last-child {
				position: relative;
				z-index: 1;
				flex-basis: 100% !important;
				max-width: 100%;
				box-sizing: border-box;
				padding: 60px 3% 50px 3%;
				box-sizing: border-box;
				border-radius: 0 0 0 20px;
				
				background: #fff;
				overflow: hidden;
			}

				#praca .wp-block-columns .wp-block-column:last-child .oferta_txt {
					padding-bottom: 50px;
				}
			
					#praca .wp-block-columns .wp-block-column:last-child .oferta_txt a {
						display: inline-block;
						margin-top: 10px;
					}
			
			
			
			
			
			
			
	#kontakt {
		position: relative;
		z-index: 1;
		width: 100%;
	}

	
		#kontakt .wp-block-group__inner-container {
			position: relative;
			z-index: 1;
		}

		
		#kontakt .wp-block-columns {
			position: relative;
			z-index: 2;
			max-width: 1350px;
			margin: 0 auto;
			
			flex-direction: column;
		}

			#kontakt .wp-block-columns .wp-block-column:first-child {
				position: relative;
				flex-basis: 100%;
				margin: 0;
				padding: 0 3%;
				box-sizing: border-box;
				
			}

				#kontakt .wp-block-columns .wp-block-column:first-child:before {
					content: "";
					
					position: absolute;
					top: 100px;
					right: -2px;
					
					display: block;
					width: 250px;
					height: 600px;
					
				}
				


			#kontakt .wp-block-columns .wp-block-column:last-child {
				position: relative;
				z-index: 1;
				flex-basis: 80%;
				padding: 60px 3% 50px 3%;
				box-sizing: border-box;
				margin: 0;
				
				background: #fff;
			}

			
			
				#kontakt .kontakt_cols {
					padding-top: 40px;
				}
			
					#kontakt .kontakt_cols .wp-block-column {
						flex-basis: 50% !important;
						padding: 0 !important;
					}
				
					#kontakt .kontakt_cols .wp-block-column h3 {
						font-size: 22px;
					}

					#kontakt .kontakt_cols .wp-block-column .wp-block-media-text {
						grid-template-columns: 21px auto !important;
						padding: 25px 0;
					}
					
						#kontakt .kontakt_cols .wp-block-column .wp-block-media-text img {
							width: 21px;
							height: auto;
						}

						#kontakt .kontakt_cols .wp-block-column .wp-block-media-text .wp-block-media-text__content {
							padding: 0 0 0 20px;
							
							grid-column: 2;
							grid-row: 1;
						}
	
	

	
			#kontakt form p {
				display: block;
				color: #111D48;
				padding-bottom: 10px;
			}
			
			#kontakt form label {
				display: block;
				margin: 5px 0;
			}
			
			#kontakt form label span {
				display: block;
			}
			
			#kontakt form input,
			#kontakt form textarea {
				display: block;
				width: 100%;
				max-width: 100%;
				min-width: 100%;
				font-family: initial;
				
				padding: 16px 20px 8px 20px;
				box-sizing: border-box;
				
				background: #FBFBFB;
				box-sizing: border-box;
				border-radius: 4px;
			}
			
			
	
			#kontakt form input::placeholder,
			#kontakt form textarea::placeholder {
				color: transparent;
			}


				#kontakt form .floating-label {
					position: absolute;
					pointer-events: none;
					transition: 0.2s ease all;
					
					color: #999;
					font-size: 14px;
					
					top: 10px;
					left: 20px
				}
				
				#kontakt form textarea .floating-label {
					top: 0px;
				}

					#kontakt form input:focus ~ .floating-label,
					#kontakt form input:not(:placeholder-shown) ~ .floating-label{
						font-size: 10px;
						
						top: 0px;
						left: 20px;
						transform: translateX(0%);
					}	
			
					
					#kontakt form textarea:focus ~ .floating-label,
					#kontakt form textarea:not(:placeholder-shown) ~ .floating-label {
						font-size: 10px;
						
						top: 3px;
						left: 20px;
						transform: translateX(0%);
					}	
	
			
			
			
			#kontakt .regulamin {
				display: block;
				text-align: right;
				font-size: 13px;
			}
			
			#kontakt form .submit {
				display: flex;
				justify-content: flex-end;
				margin: 5px auto;
				text-align: right;
			}
			
			#kontakt form .submit .submit_inner {
				display: inline-block;
				position: relative;
			}
				
				#kontakt form .submit button {
					display: inline-block;
					background-color: #EB1C24;
					padding: 10px 50px;
					border-radius: 5px;
					border: 2px solid #EB1C24;
					color: #fff;
					font-size: 16px;
					font-weight: 600;
					border-radius: 20px;
					outline: 0;
					
					transition: all 0.2s ease;
				}
					
				#kontakt form button:hover {
					border: 2px solid #373C3F;
					background: #373C3F;
					color: #fff;
					cursor: pointer;
					
					transition: all 0.2s ease;
				}
					
				
				#kontakt form .ajax-loader {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
				}

				#kontakt form .ajax-loader {
					background-image: url(graf/white-dots.svg);
					background-size: 35%;
					background-repeat: no-repeat;
					background-position: 50% 50%;
					margin: 0;
					z-index: 10;
					display: block;
					border-radius: 20px;
					width: 100%;
					height: 100%;
					background-color: #373C3F;
					
					opacity: 0;
					
					transition: 0.3s ease;
				}

				#kontakt form .ajax-loader.is-active {
					opacity: 1;
					transition: 0.3s ease;
				}
				
				
				#kontakt form  .wpcf7-not-valid-tip {
					color: #ED1C24;
					font-size: 13px;
					padding-bottom: 0 !important;
				}
				
				#kontakt form .wpcf7-not-valid-tip {
					padding-left: 15px;
					padding-bottom: 10px;
				}
				
				#kontakt form.invalid .wpcf7-response-output {
					border: 2px solid #EB1C24;
					background: #EB1C24;
					color: #fff;
					text-align: center;
					padding: 10px 0;
					margin: 10px 0 0 0;
					line-height: 1.5;
					border-radius: 4px;
				}
				
				#kontakt form.sent .wpcf7-response-output {
					border: 2px solid #46b450;
					background: #46b450;
					color: #fff;
					text-align: center;
					padding: 10px 0;
					margin: 10px 0 0 0;
					line-height: 1.5;
					border-radius: 4px;
				}
			
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
footer {
	position: relative;
	margin-top: -10px;
	background: #373C3F;
	padding: 50px 0 80px 0;
}

	footer:after {
		content: "";
		display: block;
		width: 8vw;
		height: 55%;
		
		position: absolute;
		left: 92vw;
		top: 0;
		
		background: #fff;
		border-radius: 0 0 0 20px;
	}

	footer #footer_inner {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		margin: 0 auto;
		padding: 0 2%;
		box-sizing: border-box;
	}
		
		footer .footer_col1 {
			order: 1;
			display: flex;
			flex-basis: 220px;
			padding: 0 2% 0 0;
			flex-direction: column;
			
			font-size: 12px;
			color: #fff;
		}
		
		@media screen and (max-width: 700px) {
			footer .footer_col1 {
				flex-basis: 100%;
				margin-bottom: 20px;
			}
		}
		
			footer .footer_col1 .copyrights {
				position: absolute;
				bottom: 20px;
				left: 0;
				text-align: center;
				width: 100%;
				box-sizing: border-box;
				margin-top: auto;
			}
		
			footer .footer_col1 a {
				color: #fff;
				font-weight: 600;
			}
	

		footer .footer_col2 {
			order: 3;
			color: #fff;
			flex-basis: 45%;
			padding: 30px 2% 10px 2%;
		}
				
		@media screen and (max-width: 700px) {
			footer .footer_col2 {
				flex-basis: 100%;
			}
		}
				
			footer .footer_col2 h5 {
				position: relative;
				font-weight: 700;
				font-size: 16px;
				padding-bottom: 10px;
				margin-bottom: 10px;
			}
			
			footer .footer_col2 h5:after {
				content: "";
				width: 50px;
				height: 1px;
				background: #E31E24;
				
				position: absolute;
				left: 0;
				bottom: 0;
			}
	

			footer .footer_col2 ul li {
				list-style: none;
				padding: 2px 0;
			}
	
			footer .footer_col2 ul li a {
				color: #fff;
				font-size: 14px;
			}
			
			footer .footer_col2 ul li a:hover {
				color: #E31E24;
			}
	
	
		footer .footer_col3 {
			order: 4;
			color: #fff;
			flex-basis: 45%;
			padding: 30px 2% 10px 2%;
		}
		
			footer .footer_col3 h5 {
				position: relative;
				font-weight: 700;
				font-size: 16px;
				padding-bottom: 10px;
				margin-bottom: 10px;
			}
			
			footer .footer_col3 h5:after {
				content: "";
				width: 50px;
				height: 1px;
				background: #E31E24;
				
				position: absolute;
				left: 0;
				bottom: 0;
			}
	

			footer .footer_col3 p {
				padding: 5px 0 15px 0;
				font-size: 14px;
			}

			footer .footer_col3 a {
				color: #fff;
				font-size: 14px;
			}
			
			footer .footer_col3 a:hover {
				color: #E31E24;
			}
	
	
		footer .footer_col4 {
			order: 2;
			color: #fff;
			flex-basis: 55%;
			padding: 0;
			
			font-weight: 700;
			color: #4E565A
		}
		
		

		
		footer .footer_col4 .textwidget {
			display: flex;
			flex-direction: row;
			align-items: center;
			padding-left: 10%;
		}

		@media screen and (max-width: 700px) {
			footer .footer_col4 {
				flex-basis: 85%;
				margin-bottom: 20px;
			}
			
			footer .footer_col4 .textwidget {
				padding: 0;
			}
		}

			footer .footer_col4 a {
				display: inline-block;
				margin: 0;
				color: #fff;
				font-size: 28px;
			}
	
				footer .footer_col4 a strong {
					color: #E31E24;
				}
	
			footer .footer_col4 a:hover {
				color: #E31E24;
			}
	

			footer .footer_col4 p:last-child {
				margin-left: auto;
			}
			
				footer .footer_col4 p:last-child a {
					margin-top: auto;
					display: flex;
					width: 30px;
					height: 30px;
					justify-content: center;
					align-items: center;
					background: #EB1C24;
					border-radius: 3px;
				}

				footer .footer_col4 p:last-child a:hover {
					background: #373C3F;
				}
		
		
	
	
	