#preloader {
	position: fixed;
	/* top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; */
	bottom: 17px;
	right: 40px;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.2s ease-in-out, visibility 0.2s;
	left: calc(50% + 670px);
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 30px;
	line-height: 30px;

}

#preloader:after {
	content: '';
	position: absolute;
	left: 28px;
	top: 3px;
	font-size: 12px;
	font-weight: 700;
	opacity: .8;
}

.spinner {
	width: 19px;
	height: 19px;
	top: 10px;
  left: 10px;
	border: 2px solid #ccc;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: rgb(204, 204, 204);
	border-top: 2px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

#preloader.hide {
	opacity: 0;
	visibility: hidden;
}

@font-face {
	font-family: 'fntz';
	src: url('fontz/fntz.woff2') format('woff2'), url('fontz/fntz.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--turkus: #00b2bb;
	--cturkus: #3c776f;
	--zielony: #ccf050;
	--czielony: #a8c541;
}

*, *:before, *:after {
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	position: relative;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	min-height: 100%;
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	scrollbar-color: #3f5141 #fff;
	scrollbar-width: thin;
}

html, body {
	width: 100%;
	color: #000;
	max-width: 100vw;
	overflow-x: hidden;
}

body, input {
	font-family: "Plus Jakarta Sans", sans-serif;
}

body {
	font-style: normal;
	overflow-y: hidden;
	min-height: 100%;
}

h2, h3, h4, h5, h6 {
	font-weight: 300;
	display: block;
}

a:active, a:focus {
	outline: none;
}

a {
	outline: none;
	color: #1f3327;
	font-weight: 700;
	text-decoration: none;
}

a:hover {
	color: #333;
}

p, ul li {
	line-height: 26px;
	font-size: 15px;
}

p {
	padding: 0 0 10px;
	display: block;
	font-weight: 400;
}

p:last-of-type {
	padding: 0;
}

p~ul {
	padding: 0 0 10px 0px;
	margin: 5px 0 0 20px;
}

p~ul li {
	list-style: none;
	font-weight: 400;
	padding: 0 0 5px;
}

p~ul li:before {
	font-family: fntz;
	color: var(--czielony);
	font-size: 20px;
	content: "\e810";
	margin: 0 8px 0 -20px;
	top: 3px;
}

.slider-container {
	width: 100%;
	overflow: hidden;
	top: 0;
}

.slider-container .slide {
	position: absolute;
	width: 100%;
	overflow: hidden;
	opacity: 0;
	transition: opacity .5s ease 1s;
	z-index: -1;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	height: 480px;
	background: #122422
}

.slide .wrapper {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -7px;
	z-index: 5;
}

.slide .img {
	transform: translateY(0);
	height: 120%;
	display: flex;
	justify-content: center;
	top: -40px;
	background: #122422
}

.slide.active-slide .img {
	transform: translateY(0);
}

.slide.active-slide img {
	transform: scale(1.02);
}

.slide img {
	transform: scale(1);
	transform-origin: center;
	object-fit: cover;
	transition: transform 8s ease;
	height: 100%;
	width: initial;
}

.slide.active-slide {
	opacity: 1;
	z-index: 1;
	transition: opacity 1s ease;
}

.slide .ovrl {
	background: #1f1313;
	opacity: .4;
}

.ovrl {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	list-style-type: none;
	z-index: 4;
	width: 1300px;
	justify-content: end;
}

.dot {
	width: 6px;
	height: 6px;
	border-radius: 0;
	background: #fff9;
	margin: 0 7px;
	cursor: pointer;
	transition: background .3s ease;

	z-index: 3;
	border-radius: 50%;
}

.dot.active {
	background: #fff;
}

.left-arrow::before {
	color: #c01e45;
	position: absolute;
	top: 0;
	left: 0;
	content: "\e804";
	font-family: fntz;
	font-size: 48px;
	z-index: 12;
	width: 80px;
	transform: rotate(180deg);
}

.right-arrow::before {
	color: #c01e45;
	position: absolute;
	top: 0;
	left: 0;
	content: "\e804";
	font-family: fntz;
	font-size: 48px;
	z-index: 12;
	width: 80px;
}

.left-arrow::before, .right-arrow::before {
	transition: color 0.3s ease;
}

.left-arrow {
	left: 10px;
}

.right-arrow {
	right: 10px;
}

.left-arrow, .right-arrow {
	position: absolute;
	top: 50%;
	width: 80px;
	height: 80px;
	text-align: center;
	line-height: 80px;
	font-size: 30px;
	cursor: pointer;
	z-index: 100;
	transform: translateY(-50%);
}

#container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 125px 50px 0;
	background: #fff;
	box-shadow: 0 0 100px #0000000a;
}

.wrapper {
	max-width: 1300px;
	margin: 0 auto;
}

#header {
	transition: height .2s ease;
	overflow: hidden;
	width: calc(100% - 100px);
	border-bottom-left-radius: 30px;
}

.load #header, .out #header, .sub #header {
	height: 400px;
}

.home #header {
	height: 620px;
}

#slida, #header {
	padding: 140px 0px 0px;
	margin: 0 50px 50px;
}

#slida .wrapper, #header .wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center
}

#header h1, #header p, #header ul li, #slida h1, #slida p, #slida ul li {
	color: #fff;
}

#header h1 {
	font-size: 34px;
	font-weight: 600;
	padding: 0 0 20px;
}

#header h1:after {
	content: '+';
	position: absolute;
	font-size: 522px;
	left: -220px;
	top: -320px;
	opacity: .1;
}

#header h2 {
	font-size: 22px;
	font-weight: 400;
	padding: 0 0 0px;
}

header {
	z-index: 5;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	left: 50%;
	max-width: 1300px;
	width: 100%;
	transform: translateX(-50%);
	background: #fff;
	transition: height .2s ease;
}

header:after {
	content: '';
	background: #ddd;
	position: absolute;
	left: 0;
	right: 0;
	top: 87px;
	height: 1px;
	z-index: -1;
}

header.scrl:after {
	top: 117px;
}

header.scrl .phone {
	top: 77px;
}

header.scrl .mail {
	top: 102px;
}

header.scrl {
	position: fixed;
	top: -67px;
	height: 134px;
	box-shadow: 900px 0 0 #fff, -900px 0 0 #fff;
	backdrop-filter: blur(5px);
}

.logo {
	background: #fff url(img/intesan-logo.png) no-repeat top left / 240px auto;
	width: 237px;
	height: 55px;
	position: absolute;
	top: 35px;
	left: 0px;
	display: block;
	width: 250px;
	transition: filter .2s ease, width .2s ease;
}

.logo:hover {
	filter: brightness(1.2);
}

.scrl .logo {
	background: #fff url(img/intesan-logo.png) no-repeat bottom center / 100% auto;
	width: 200px;
	height: 43px;
	top: 76px;

}

.hdback {
	background: #2c3c3b;
	position: absolute;
	inset: 0;
	top: 140px;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	overflow: hidden;
	z-index: -1;
}

.home #header .hdback {
	
}

.sub #header .hdback:after {
	content: ''; 
	position: absolute;
	inset: 0;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	z-index: 0;
	filter: brightness(0.6);
}

.sub #header .hdback:before {
	content: ''; 
	position: absolute;
	inset: 0;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	z-index: 1;
	filter: brightness(0.4);
	opacity: .6;
	overflow: hidden;
}

.hom::after {
	font-family: fntz;
	content: '\e815';
	font-size: 14px;
	font-style: normal;
	position: absolute;
	left: 0;
	pointer-events: none;
	top: 0px;
}

#content {
	min-height: 400px;
}

#content .wrapper {
	min-height: 300px;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	opacity: 1;
	transform: translateY(0);
}

.out #content .wrapper {
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .3s ease, transform .3s ease;
}

.load #content .wrapper {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .3s ease, transform .3s ease;
}

.shw {
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .3s ease, transform .3s ease;
}

.shw.sl {
	opacity: 0;
	transform: translateX(-5px);
	transition: opacity .3s ease, transform .3s ease;
}

.shw.vis {
	opacity: 1;
	transform: translate(0, 0);
	transition: opacity .3s ease, transform .3s ease
}

#content .wrapper>div:nth-of-type(1) .shw.vis {
	transition: opacity .3s ease, transform .3s ease;
}

#content .wrapper>div:nth-of-type(2) .shw.vis {
	transition-delay: .1s;
}

.phone, .mail {
	position: absolute;
	color: #000;
	font-weight: 700;
	font-size: 14px;
	z-index: 2;
	transition: color .2s ease, top .1s ease;
}

.kontakt span, .phone span, .mail span {
	font-size: 12px;
	color: #96b238;
	font-weight: 600;
}

.wrapper .kontakt {
	top: -6px
}

.phone {
	font-size: 18px;
	top: 31px;
	letter-spacing: -.5px;
}

.phone.p1 {
	right: 129px;
}

.phone.p2 {
	right: 0px;
}

.mail {
	top: 72px;
	right: 95px;
	background: #fff;
	padding: 0 10px;
}

#cta span {
	color: #fff;
	font-size: 15px;
}

#cta {
	padding: 30px 0;
	background: #fff;
	margin: 30px 0;
}

.mob {
	display: none;
}

footer {
	max-width: 100%;
	padding: 30px 0;
	font-size: 12px;
	font-weight: 400;
	color: #666;
	letter-spacing: 1px;
	margin: 0 auto;
	height: 80px;
	background: #222;
	border-top-right-radius: 30px;
	margin: 30px 50px 0;
}

footer a {
	color: #fff;
}

footer .wrapper {
	display: flex;
	justify-content: space-between;
}

footer a, footer p {
	padding: 0 !important;
	font-size: 11px !important;
	color: #fff9;
}

footer br {
	display: none;
}

footer .logo img {
	height: 60px;
}

#content .wrapper>div {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 30px;
	margin: 0 0 30px;
	border-bottom: 2px solid #eee;
}


#content.kontakt .wrapper>div {
border: 0;
margin: 0;
padding: 0;
}

#content.kontakt .wrapper>div {
	flex-wrap: nowrap
}

#content .wrapper>div:not(.offer):before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 290px;
	width: 40px;
	height: 10px;
	background: #fff;
}

#content .wrapper .offer>div>div:first-of-type>div:first-of-type, #content .wrapper>div:not(.offer)>div:first-of-type {
	flex: 0 1 330px;
	padding: 0 30px 0 0;
}

#content .wrapper .offer>div>div:last-of-type>div:first-of-type {
	flex: 1 1 calc(30% + 330px);
	padding: 0 40px 0 0;
	border-bottom-left-radius: 30px;
	overflow: hidden;
}

#content .wrapper .offer>div>div:last-of-type>div:first-of-type img {
	transform: scale(1);
	height: 100%;
	transition: transform .4s ease, filter .4s ease;
}

#content .wrapper .offer:hover>div>div:last-of-type>div:first-of-type img {
	transform: scale(1.02);
	filter: brightness(110%)
}

#content .wrapper .offer:last-of-type {
	border: 0;
}

#content .wrapper .offer>div>div:last-of-type>div:last-of-type a {
	width: 100%;
	height: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #ccf050;
	color: #fff;
	text-shadow: 0 0 30px #0003, 1px 1px 2px #0003;
	padding: 0;
	transition: padding .2s ease;
}

#content .wrapper .offer>div>div:last-of-type>div:last-of-type a:hover {
	padding: 0 0 0 10px
}

#content .wrapper .offer>div>div:last-of-type>div:first-of-type::after {
	background: #fff;
	content: '';
	position: absolute;
	right: 0;
	width: 40px;
	top: 0;
	bottom: 0;
	z-index: 0;
}

#content .wrapper .offer>div>div:last-of-type>div:last-of-type a::before {
	background: linear-gradient(-60deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: .2;
	transition: opacity .2s ease;
}

#content .wrapper .offer>div>div:last-of-type>div:last-of-type a:hover:before {
	opacity: .0;
}

#content .wrapper .offer>div>div:last-of-type>div:last-of-type {
	flex: 1 1 30%;
	height: auto;
	border-top-right-radius: 30px;
	overflow: hidden;
}

#content .wrapper>div>.col {
	flex: 1 1 calc(100% - 330px);
	display: flex;
	gap: 50px;
}

#content .wrapper>div>.col.c1>div {
	flex: 1 1 100%;
}

#content .wrapper .offer>div>div:first-of-type>div:last-of-type {
	display: flex;
	flex: 1 1 calc(100% - 330px);
}

#content .wrapper .offer>div>div>div>div, #content .wrapper>div>.col.c2>div {
	flex: 1 1 50%;
}

#content .wrapper>div>.col.c1~.col.c2, #content .wrapper>div>.col.c2~.col.c1 {
	padding: 0 0 0 330px;
	margin: 20px 0 0px;
}

#content .wrapper .offer>div {
	flex: 0 0 100% !important
}

#content .wrapper .offer>div>div {
	display: flex;
	margin: 30px 0 0;
}

#map {
	height: 300px;
	width: calc(100% - 100px);
	margin: 0 50px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	overflow: hidden;
}

.marker {
	background: url('img/marker.png') no-repeat center center / cover;
	width: 60px;
	height: 60px;
}

.marker svg {
	display: none !important;
}

h2 {
	color: var(--cturkus);
	font-size: 22px;
	font-weight: 700;
}

.offer h2 {
	color: var(--czielony);
	top: -3px;
}

.offer h3 {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	top: 1px;
}

form {
	max-width: 100%;
	padding: 15px 0 0 0;
}

form>div {
	display: flex;
	gap: 30px;
	margin: 0 0 30px;
	font-size: 15px;
  font-weight: 500;
  color: #999;

  }

  form>div b {
	font-weight: 500;
	padding: 10px 0 0;
  }

form>div>div {
	flex: 0 1 50%;
}

form .wpcf7-form-control-wrap {
	width: 100%;
}

form label {
	position: absolute;
	left: 0;
	top: 8px;
	color: #999;
	z-index: 3;
	transition: transform 150ms ease-out, font-size 150ms ease-out;
	pointer-events: none;
	font-size: 15px;
	font-weight: 500;
}

form .focused label {
	transform: translateY(-20px);
	font-size: 12px;
	color: #666;
}

form textarea, form input {
	border: 0;
	border-bottom: 2px solid #ccc;
	border-radius: 0;
	padding: 10px 0;
	outline: 0;
	width: 100%;
	background-color: transparent;
	transition: border-bottom .3s ease;
	font-size: 15px;
	font-weight: 500;
}


form textarea:focus, form input:focus {
	border-bottom: 2px solid var(--czielony)
}

form .wpcf7-not-valid-tip {
	color: #dc3232;
	position: absolute;
	background: #fff;
	z-index: 5;
	left: 0px;
	top: -1px;
	right: 0;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 0 0 8px #fff;
}

form > .inp > span .wpcf7-not-valid-tip {
	top: 10px;
}


form select {
background: #fff;
border: 0;
border-bottom: 2px solid #ccc;
font-size: 15px;
font-weight: 500;
color: #333;
font-family: "Plus Jakarta Sans", sans-serif;
padding: 10px 0;
}

input.wpcf7-submit {
	max-width: 200px;
	background: #b0cc50;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	margin: 0px 0 0 10px;
	color: #000;
	padding: 20px 20px 18px;
	display: inline-block;
	cursor: pointer;
	border: 0;
	border-radius: 30px;
}

.sbmt {
	justify-content: end;
}

input.wpcf7-submit:hover {
	background: #2d3514;
	color: #fff;
}

.wpcf7 form .wpcf7-response-output {
	margin: -70px 0 0 0;
	padding: 0;
	border: 0;
	font-size: 13px;
	width: calc(100% - 200px);
}

.wpcf7-spinner {
	display: inline-block;
	background-color: #23282d;
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	right: -40px;
	bottom: 15px;
}

#header h2 {
	color: #fff;
	font-size: 22px;

}

.out #header a, 
.out #header ul, 
.out #header p, 
.out #header h1 {
	opacity: 0;
	transition: opacity .4s ease .2s, transform .3s ease;
}

.load #header a, 
.load #header ul,
 .load #header p, 
 .load #header h1 {
	opacity: 1;
	transition: opacity .4s ease, transform .3s ease;
}

.out #header h2 {
	opacity: 0;
	transition: opacity .4s ease .1s;
}

.load #header h2 {
	opacity: 1;
	transition: opacity .4s ease .1s;
}

.out .hdback:after {
	opacity: 0;
	transition: opacity 1s ease .3s;
}

.load .hdback:after {
	opacity: 1;
	transition: opacity .4s ease 0s;
}

img {
	max-width: 100%;
	width: 100%;
}



#funkybox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fffe;
	z-index: 9998;
  }
  
  #funkybox-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
pointer-events: none;
width: 100%;
  max-width: 1000px;

  }


  @media (max-width: 600px) {
	#funkybox-modal { 
		width: 100%;
		pointer-events: initial
	}
  }
  
  #funkybox-modal img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	cursor: grab;
	transform-origin: center center;
	transition: transform 0.3s ease-out; /* Domyślna płynność transformacji */
	background-color: #fff; /* Opcjonalne tło dla modala */
	padding: 10px; /* Opcjonalny padding */
	border-radius: 5px; /* Opcjonalne zaokrąglenie rogów */
  }
  
  #funkybox-close {
	position: fixed;
	top: 20px;
	right: 15px;
	font-size: 44px;
	color: #000;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 10000;
	line-height: 15px;
  }



ul.points {
	list-style: none;
	margin: 20px 0;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: space-between;
}

ul.points li {
	width: 31%;
	display: block;
	z-index: 0;
}

ul.points img {
	width: 60px;
	height: auto;
	margin: 0 0 20px;
	left: 25px;
}

ul.points span {
	position: absolute;
	font-style: italic;
	font-size: 55px;
	top: 26px;
	left: -8px;
	color: #fff;
	text-shadow: 2px 2px 0px #9992;
}

ul.points li:after {
	top: -10px;
	left: -10px;
	content: '';
	height: 70px;
	width: 70px;
	position: absolute;
	border-radius: 100px;
	background: linear-gradient(135deg, rgba(250, 250, 250, 1) 0%, rgba(225, 225, 225, 1) 100%);
	opacity: .6;
	z-index: -1;
}

ul.points h3 {
	font-size: 18px;
	font-weight: 400;
	padding: 6px 0 0 40px;
	line-height: 22px;
}

ul.points p {
	line-height: 25px;
	font-size: 15px;
}

.home h1.title {
	display: none;
}

h1.title {
	font-size: 36px;
	text-align: center;
}

.logos {
	background: #fff;
	margin: 20px 0 0;
}

.logos h3 {
	color: var(--turkus);
	font-size: 20px;
	font-weight: 700;
	padding: 0 0 20px;
}

.logos ul {
	list-style: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.logos ul li img {
	max-width: 140px;
	max-height: 70px;
	margin: 10px 30px;
}

/* Mouse leave event */

.overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #0c203c;
	opacity: .8;
	z-index: 2;
}

i[class^="icon-"]:before, i[class*=" icon-"]:before {
	color: #fff;
	background: #008e37;
	border-radius: 50px;
}

.contact i {
	font-size: 18px;
	margin: 25px 10px 10px 0;
	display: inline-block;
	line-height: 22px;
}

.contact i:before {
	width: 25px;
	height: 25px;
	top: -2px;
}

.btn {
	background: #008e37;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	margin: 15px 0 0;
	color: #fff;
	padding: 22px 40px 20px;
	display: inline-block;
}



.slida h2 {
	color: #fff;
	text-align: left;
	font-weight: 800;
	font-size: 42px;
	line-height: 40px;
	text-shadow: 2px 2px 5px #0005;
	letter-spacing: -.5px;
}

.slida h2 span {
	font-weight: 400;
	font-size: 24px;
}

.slida h2 b:after {
	content: '';
	background: url(img/und.png) no-repeat center center / 100% 100%;
	position: absolute;
	bottom: -5px;
	height: 14px;
	left: -16px;
	right: -70px;
	z-index: 1;
}

.slida h2.sec {
	position: absolute;
	color: #fff;
	font-size: 17px;
	z-index: 2;
	font-weight: 300;
	text-align: left;
	padding: 7px 20px 3px 14px;
	top: calc(50% + 15%);
	left: 15px;
}

#header a {
	background: #ceef5f;
	white-space: nowrap;
	text-align: center;
	padding: 15px 45px 15px 25px;
	color: #000;
	font-weight: 500;
	font-size: 16px;
	border-radius: 30px;
	font-weight: 800;
	box-shadow: 10px 5px 20px #ccf15066;
}

.arr span:after,
#header .wrapper a span:after {
	content: '';
	border-right: 2px solid #000;
	border-top: 2px solid #000;
	position: absolute;
	width: 10px;
	height: 10px;
	top: 4px;
	margin: 0 10px;
	transform: rotate(45deg) translate(0, 0);
	transition: rotate .2s ease, transform .2s ease;
	opacity: .8
}

.arr span:before,
#header .wrapper a span:before {
	content: '';
	position: absolute;
	width: 11px;
	height: 2px;
	right: -30px;
	top: 8px;
	margin: 0 10px;
	background: #000;
	transform: translate(-2px, 0);
	opacity: 0;
	transition: opacity .2s ease .1s, transform .2s ease .5s
}

.arr:hover span:after,
#header .wrapper a:hover span:after {
	transform: rotate(45deg) translate(2px, -2px);
}
.arr:hover span:before,
#header .wrapper a:hover span:before {
	opacity: .8;
	transform: translate(3px, 0);
	transition: opacity .2s ease 0s, transform .2s ease 0s
}

#header .wrapper a:before {
	background: linear-gradient(90deg, rgba(174, 202, 80, 1) 0%, rgba(205, 242, 80, 1) 100%);
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 1;
	border-radius: 30px;
	transition: opacity .2s ease;
}

#header .wrapper a:hover:before {
	opacity: 0;
}


#content .wrapper .offer>div>div:last-of-type>div:last-of-type a::after {
	content: '';
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	position: absolute;
	width: 20px;
	height: 20px;
	top: calc(50% - 7px);
	right: 40px;
	margin: 0 10px;
	transform: rotate(45deg) translate(0, 0);
	transition: rotate .2s ease, transform .2s ease;
	opacity: .8;
	z-index: 3;
}



#header.hd.uslugi a {
	background: #000;
	white-space: nowrap;
	text-align: center;
	padding: 15px 45px 15px 25px;
	color: #000;
	font-weight: 500;
	font-size: 16px;
	border-radius: 50px;
	font-weight: 800;
	box-shadow: 10px 5px 20px #ccf15066;
	position: absolute;
  right: 0;
  cursor: pointer;
}


#header.hd.uslugi a::before {
display: none;
}



#header .wrapper span {
	z-index: 1;
}



.gallery {
	padding: 0 0 0 330px
}


#content .wrapper > div > .col.c2 ~ .col.c1 .gallery {
	padding: 0 0 0 0px
}

.gallery  {
	
display: flex;
align-items: center;

}

.gallery li {
margin: 0 30px 0 0;

}

.gallery.logos img {
	max-height: 35px;
	filter: saturate(0%);
	opacity: .3;
	transition: filter .2s ease, opacity .2s ease;
}

.col h3 {
	padding: 0 0 10px;
	  font-weight: 700;
  	font-size: 18px;
}

.col h3 strong  {
	background: #6c6e70;
	color: #fff;
	border-radius: 20px;
	height: 24px;
	width: 24px;
	display: inline-block;
	text-align: center;
	margin: 0 4px 0 0;
}

.gallery.solo li {
text-align: center;
margin: 0 auto;
}

.gallery.solo img {
	max-height: 330px;
padding: 40px 0 0;
transition: transform .1s ease;
}

.gallery.solo img:hover {
	transform: scale(1.02);
}

#content .wrapper > div > .col.c2 ~ .col.c1 .gallery.solo img {
padding: 20px 0 0
}

.gallery:hover img {
	filter: saturate(100%);
	opacity: 1;
}

nav {
	top: 17px;
	left: 320px;
	position: absolute;
	background: #fff;
	padding: 0 10px;
	//transition: opacity .2s ease;
}

.scrl nav {
	opacity: 0;
	pointer-events: none;
}

ul {
	list-style: none;
}

.menu a, .socials a {
	display: inline-block;
	color: #000;
	line-height: 23px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0 10px 0 0;
	transition: font-weight .2s ease;
}

.menu li ul li a:focus, .menu li ul li a:hover, .menu .current-page-parent>a, .menu .current_page_item>a {
	font-weight: 800;
}

.menu>li:hover>a {
	font-weight: 800;
}

.menu li .current_page_item>a {
	color: var(--czielony)
}

.menu li ul {
	position: absolute;
	top: 0;
	left: 150px;
	width: 500px;
	display: flex;
	flex-wrap: wrap;
}

.menu-item-has-children>ul li {
	visibility: hidden;
	opacity: 0;
	transform: translate(-3px, 0);
	transition: opacity .4s ease, transform .2s ease 1s;
	background: #fff;
}

.current_page_ancestor>ul li, .current_page_item>ul li, .menu-item-has-children:hover>ul li {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
	transition: opacity .4s ease, transform .2s ease 0s
}

.menu-item-has-children>ul {
	visibility: visible;
	opacity: 0;
}

.current_page_ancestor>ul, .menu-item-has-children:hover>ul {
	visibility: visible;
	opacity: 1;
}

.menu li ul li:after {
	content: '/';
	padding: 0 10px 0 0;
	font-weight: 300;
	font-size: 12px;
	top: -1px;
	position: relative;
	color: #999
}

.menu li ul li:last-of-type:after {
	display: none;
}

.menu-item-has-children:hover>ul li:nth-child(1) {
	transition-delay: .05s;
}

.menu-item-has-children:hover>ul li:nth-child(2) {
	transition-delay: .1s;
}

.menu-item-has-children:hover>ul li:nth-child(3) {
	transition-delay: .15s;
}

.menu-item-has-children:hover>ul li:nth-child(4) {
	transition-delay: .2s;
}

.menu-item-has-children:hover>ul li:nth-child(5) {
	transition-delay: .25s;
}

.menu-item-has-children:hover>ul li:nth-child(6) {
	transition-delay: .3s;
}

.menu-item-has-children:hover>ul li:nth-child(7) {
	transition-delay: .35s;
}

.menu-item-has-children:after {
	content: '';
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	position: absolute;
	width: 8px;
	height: 8px;
	top: 9px;
	margin: 0;
	transform: rotate(45deg) translate(0, 0);
	transition: rotate .2s ease, transform .2s ease;
	opacity: 1;
	right: -25px;
}

.menu-item-has-children:before {
	content: '';
	position: absolute;
	width: 9px;
	height: 1px;
	right: -25px;
	top: 12px;
	background: #000;
	transform: translate(-2px, 0);
	opacity: 0;
	transition: opacity .2s ease .1s, transform .2s ease .5s
}

.menu-item-has-children.current_page_ancestor:after, .menu-item-has-children:hover:after {
	transform: rotate(45deg) translate(2px, -2px);
}

.menu-item-has-children.current_page_ancestor:before, .menu-item-has-children:hover:before {
	opacity: .8;
	transform: translate(3px, 0);
	transition: opacity .2s ease 0s, transform .2s ease 0s
}

table {
	margin: 40px auto 20px;
	max-width: 80%;
}

td, th {
	padding: 15px 20px;
	text-align: left;
	background: #eee;
	box-shadow: 0 0 0 3px #fafafa;
	line-height: 24px;
	font-size: 14px;
	text-align: center;
}

th {
	color: #fff;
	background: #bbb;
}

table td:first-child, table th:first-child {
	text-align: left;
}

table th:last-child {
	width: 270px;
}

strong {
	font-weight: 800;
}

footer strong {
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 30px 0 0;
}

footer b {
	font-style: italic;
	letter-spacing: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	background: transparent;
	border: 0;
	height: 0px;
	padding: 25px 0;
	clear: both;
	display: block;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

.mobmenuE {
	cursor: pointer;
	position: absolute;
	top: 56px;
	right: 0px;
	height: 50px;
	width: 50px;
	z-index: 999;
	transition: transform .2s ease;
	display: none;
}

.mobmenuX, .mobmenuX:after, .mobmenuX:before {
	transition: background  .2s ease, transform .2s ease;
}

.mobmenuE:focus>.mobmenu, .mobmenuE:active>.mobmenu, .mobmenuE:hover>.mobmenu, .mobmenu:hover {
	visibility: visible;
	opacity: 1;
}



.mobmenuX {
	background: #000;
	height: 2px;
	width: 25px;
	margin: 25px 0 0 5px;
}

.mobmenuX::before, .mobmenuX::after {
	background: #000;
	content: '';
	display: block;
	height: 2px;
	width: 25px;
}

.mobmenuX::before {
	transform: translateY(-9px);
}

.mobmenuX::after {
	transform: translateY(7px);
}

.mobmenuE.vis .mobmenuX {
	background: transparent;
}

.mobmenuE.vis .mobmenuX:before {
	transform: translateY(0px) translateX(-1px) rotate(-45deg);
	width: 30px;
	background: #fff;
}

.mobmenuE.vis .mobmenuX:after {
	transform: translateY(-2px) translateX(0px) rotate(45deg);
	width: 30px;
	background: #fff;
}

.mobmenuE:after {
	background: #fff;
	content: '';
	display: block;
	height: 1px;
	width: 32px;
	transform: rotate(-45deg) translateX(48px) translateY(10px);
	opacity: 0;

}



footer img {
	max-width: 600px;
	margin: 20px;
	box-shadow: 0 0 0 1px #ddd;
}

.topbar {
	left: 0;
	right: 0;
	position: fixed;
	top: 0;
	height: 4px;
	background: var(--turkus);
	z-index: 52;
}

.topbar:before {
	content: '';
	position: absolute;
	left: calc(50% - 630px);
	border-radius: 100%;
	top: -1px;
	height: 4px;
	width: 160px;
	background: var(--turkus);
	box-shadow: 0 0 5px var(--turkus), 0 0 8px var(--turkus), 0 0 12px var(--turkus);
}

.close {
	position: absolute;
	top: 23px;
	right: 20px;
	transform: rotate(45deg) !important;
	display: none;
}

.close:after {
	font-family: fntz;
	content: '\e816';
	font-size: 36px;
	font-style: normal;
	color: #fff;
	transition: all .2s ease;
}

#totop {
	transition: all .3s ease;
	position: fixed;
	bottom: -20px;
	left: calc(50% + 670px);
	display: block;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	z-index: 123;
	width: 40px;
	height: 40px;
	background: #fff;
	line-height: 40px;
	border-radius: 50%;
}

#totop:after {
	font-family: fntz;
	content: '\e811';
	font-size: 26px;
	font-style: normal;
	color: #425b7a;
	transition: all .2s ease;
}

#totop.show {
	opacity: 1;
	visibility: visible;
	bottom: 17px;
}

#totop.show:hover {
	bottom: 22px;
}

#totop:hover:after {
	text-shadow: 0 0 7px #fff;
}

@media (max-width: 1420px) {
	#totop {
		left: initial;
		right: 50px;
	}
	footer p:last-of-type {
		padding: 0 50px 0 0 !important;
	}
}

@media (max-width: 1360px) {
	.menu li ul {
		z-index: 5;
		box-shadow: 50px -22px 0 20px #fff;
		background: #fff;
	}
	.logo {
		left: 30px;
	}
	#slida, #header {
		margin: 0 30px 50px;
	}
	#slida .wrapper, #header .wrapper {
		padding: 0 30px;
	}
	#content .wrapper {
		padding: 0 60px;
	}
	#header {
		width: calc(100% - 60px);
	}
	footer {
		padding: 30px;
		margin: 30px 30px 0;
	}
	#map {
		width: calc(100% - 60px);
		margin: 0 30px;
	}
	.phone.p2 {
		right: 30px;
	}
	.phone.p1 {
		right: 159px;
	}
	.mail {
		right: 125px;
	}
	header::after {
		right: 30px;
	}
}

@media (max-width: 800px) {
	header {
		transform: none;
		width: 100%;
		left: 0;
	}
	.menu li ul li::after {
		content: '―';
		padding: 0 0px 0 0;
		font-weight: 300;
		font-size: 12px;
		top: 8px;
		position: absolute;
		color: #fff;
	}
	.menu li ul li:last-of-type:after {
		display: initial;
	}
	.menu-item-has-children>ul {
		visibility: visible;
		opacity: 1;
	}
	.menu li ul {
		box-shadow: none;
		background: transparent;
	}
	.menu li ul {
		margin: 0 20px 0;
	}
	.mobmenuE {
		display: block;
		transition: top .2s ease;
	}
	nav.act~.mobmenuE {
		position: fixed;
		top: 56px;
	}
	.scrl .mobmenuE {
		top: 31px;
	}
	content .wrapper>div {
		display: flex;
		flex-direction: column;
	}
	#content .wrapper>div:not(.offer)>div:first-of-type {
		flex: 0 1 100%;
		padding: 0 0 20px 0;
	}
	#header h2 {
		color: #fff;
		font-size: 18px;
	}
	h2 {
		font-size: 20px;
	}
	h2 br {
		display: none;
	}
	h3 {
		font-size: 18px;
		padding: 0 0 10px;
	}
	header h2 {
		font-size: 17px;
	}
	#totop {
		right: 24px;
	}
	#content .wrapper {
		padding: 0 20px;
	}
	#content .wrapper>div>.col {
		flex: 1 1 100%;
		gap: 10px;
		flex-direction: column;
	}
	#slida .wrapper, #header .wrapper {
		padding: 0 15px;
	}
	#content .wrapper>div>.col.c1~.col.c2, #content .wrapper>div>.col.c2~.col.c1 {
		padding: 0 0 0 0px;
	}
	#content .wrapper .offer>div>div {
		margin: 30px 0 0;
		flex-direction: column;
		gap: 10px;
	}
	#content .wrapper .offer>div>div:first-of-type>div:first-of-type {
		flex: 0 1 100%;
		padding: 0 30px 0 0;
	}
	#content .wrapper .offer>div>div:first-of-type>div:last-of-type {
		flex: 1 1 100%;
		flex-direction: column;
	}
	#content .wrapper .offer>div>div:last-of-type>div:first-of-type {
		flex: 1 1 100%;
		padding: 0 0px 0 0;
		border-bottom-left-radius: 20px;
	}
	#content .wrapper .offer>div>div:last-of-type>div:last-of-type {
		flex: 1 1 80px;
		border-top-right-radius: 20px;
	}
	footer {
		border-top-right-radius: 20px;
		margin: 0;
	}
	#header {
		padding: 140px 20px 70px;
		height: 600px;
		margin: 0 5px 50px;
	}
	#header br {
		display: none;
	}
	#header h1 {
		font-size: 24px;
		padding: 0 0 10px;
	}
	p, ul li {
		line-height: 24px;
		font-size: 14px;
	}
	#header {
		height: 530px;
		padding: 120px 0px 20px;
		margin: 0 5px 20px;
		width: calc(100% - 10px);
	}
	p~ul li {
		padding: 0px;
	}
	.slide {
		height: 400px;
	}
	.home #header {
		height: 520px;
	}
	.slide .wrapper {
		padding: 0 20px;
	}
	.sub #header {
		height: 300px;
	}
	.phone {
		top: 8px;
	}
	.phone.p1 {
		right: 140px;
	}
	.phone.p2 {
		right: 20px;
	}
	.mail {
		top: 33px;
		right: 10px;
	}
	#content .wrapper .offer>div>div:last-of-type>div:first-of-type::after {
		display: none;
	}
	.logo {
		background: #fff url(img/intesan-logo.png) no-repeat top left / 220px auto;
		top: 43px;
		left: 20px;
	}
	.hdback {
		top: 110px;
	}
	header::after {
		display: none;
	}
	nav {
		position: fixed;
		background: #00130ed1;
		inset: 0;
		height: 100vh;
		backdrop-filter: blur(5px);
		opacity: 0;
		visibility: hidden;
		z-index: 4;
		transition: opacity .3s ease, visibility .3s ease;
		pointer-events: none;
	}
	nav.act {
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	.menu {
		padding: 125px 0 0;
	}
	.menu-item-has-children>ul li {
		visibility: visible;
	}
	.menu a {
		display: block;
		font-size: 22px;
		line-height: 44px;
		color: #fff;
		padding: 0 13px 0 0;
	}
	.menu li {
		text-align: right;
	}
	nav>ul li ul li, nav>ul li {
		opacity: 0;
		transition: opacity .4s ease, transform .4s ease;
		transform: translateX(5px)
	}
	nav.act>ul li ul li, nav.act>ul li {
		opacity: 1;
		transform: translateX(0px)
	}
	nav.act>ul li:nth-child(1) {
		transition-delay: .05s;
	}
	nav.act>ul li:nth-child(2) {
		transition-delay: .1s;
	}
	nav.act>ul li:nth-child(2) ul li:nth-child(1) {
		transition-delay: .15s;
	}
	nav.act>ul li:nth-child(2) ul li:nth-child(2) {
		transition-delay: .2s;
	}
	nav.act>ul li:nth-child(2) ul li:nth-child(3) {
		transition-delay: .25s;
	}
	nav.act>ul li:nth-child(2) ul li:nth-child(4) {
		transition-delay: .3s;
	}
	nav.act>ul li:nth-child(2) ul li:nth-child(5) {
		transition-delay: .35s;
	}
	nav.act>ul li:nth-child(3) {
		transition-delay: .4s;
	}
	.menu li ul {
		position: initial;
		left: 0px;
		width: initial;
		display: flex;
		flex-direction: column
	}
	.menu-item-has-children>ul li {
		background: transparent;
	}
	menu a, .socials a {
		line-height: 43px;
		font-size: 22px;
	}
	.hom::after {
		font-size: 26px;
		color: #fff;
		left: initial;
		right: 13px;
		top: 4px;
	}
	.hom.current-menu-item::after {
		color: var(--czielony)
	}

	.dots {
		position: absolute;
		bottom: 25px;
		right: 10px;
		left: initial;
		transform: none;
	}
	#content .wrapper>div {
		margin: 20px 0 0 0;
		padding: 0 0 20px;
	}
	#content .wrapper .offer>div>div {
		margin: 15px 0 0;
	}
	#map {
		width: calc(100% - 10px);
		margin: 0 5px 5px;
	}
	form>div {
		display: flex;
		gap: 20px;
	}
	header.scrl .mail {
		display: none;
	}
	header.scrl {
		top: 0px;
		height: 84px;
		box-shadow: 0 0 10px 10px #0002;
	}
	header.scrl .phone {
		top: 7px;
	}
	.scrl .logo {
		top: 28px;
	}
	.slider-container .slide {
		height: 400px;
  	}
	  .gallery {
		padding: 0px;
	  }
	  #content .wrapper > div:not(.offer)::before {
		display: none
	  }

	  #header.hd.uslugi a {

		position: static;
		margin: 20px auto 0;
	  }

}

@media (max-width: 650px) {
	footer .wrapper {
		flex-direction: column;
		justify-content: center;
		align-items: start;
		padding: 0 0 0 20px;
	}
	footer {
		padding: 20px 0;
		height: initial;
	}
	#content.kontakt .wrapper>div {
		flex-wrap: wrap;
	}
	#content.kontakt .wrapper>div>div {
		display: flex;
		gap: 10px 30px;
	}
	#content.kontakt .wrapper>div>div p:first-of-type br:first-of-type {
		display: none;
	}
	.wrapper .kontakt {
		top: 0;
	}
	.gallery li {
		margin: 0 20px 0 0;
	}
		

}

@media (max-width: 550px) {
	#content .wrapper>div:not(.offer)>div:first-of-type {
		flex-wrap: wrap;
	}
	#content.kontakt .wrapper>div>div p:first-of-type {
		flex: 0 0 100%
	}
}