@import url('./_config.css');

h1, h2, h3, h4, h5, h6 {
	font-weight: var(--titleWeight);
	color: var(--titleColor);
	font-family: var(--fontTitle);
}
b, strong {font-weight: var(--titleWeight)}

.container {
	max-width: 90%;
	width: var(--containerWidth);
}

body {
	width: 100%;
	overflow-x: hidden;
	font-size: 1.125rem;
	line-height: 1.65;
	font-family: var(--font);
	background: url(/assets/img/bg.png) center top no-repeat;
}

.lead {
	line-height: 1.4;
	color: var(--secondary);
	font-weight: 500;
}

.home h1 {
	color: var(--secondary);
	margin-top: 0;
}

.home h1 > em {
	font-size: var(--h6);
	display: block;
	margin-bottom: 20px;
}




/*
			N A V B A R
*/

.navbar {
	background-color: var(--secondary);
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
}

.navbar-logo {
	margin: 15px 0;
}

.navbar-logo-image {
	display: block;
	height: 37px;
}




/*
			N A V B A R   N A V
*/

.navbar-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.navbar-nav li {
	list-style: none;
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

.navbar-nav > li:not(:first-child) {
	padding-left: var(--navMargin);
}

.navbar-nav a {
	will-change: auto;
}

.navbar-nav > li > a {
	color: hsl(0, 0%, 100%);
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: var(--fontTitle);
	font-weight: 500;
	display: inline-flex;
	text-decoration: none;
	padding: 10px 0;
	transition: all .2s;
	outline: none;
}

.nav-dropdown > a::after {
	filter: invert(1);
}



.navbar-nav .nav-active {
	opacity: .6;
}

.navbar-nav ul {
	position: absolute;
	display: none;
	top: 100%;
	left: var(--navMargin);
	margin: 0;
	padding: 10px;
	min-width: 250px;
	background-color: var(--secondary);
	box-shadow: 0 10px 30px hsla(0, 0%, 0%, .2);
}

.navbar-nav ul a {
	padding: 7px 15px;
	display: flex;
	font-size: 0.8125rem;
	color: white;
	justify-content: space-between;
	text-decoration: none;
	overflow: hidden;
	transition: all .3s ease;
}

.navbar-nav ul a::after {
	transform: rotate(-90deg);
	display: none;
}

.navbar-nav ul a::before {
	content: '>';
	font-family: monospace;
	font-weight: normal;
	font-size: 0.8125rem;
	width: auto;
	height: auto;
	display: block;
	transition: all .3s ease-out;
	transform: translateX(0);
	visibility: visible;
	background: none;
	position: absolute;
	top: 6px;
	left: 0;
	opacity: 0;
	color: var(--primary);
}

.navbar-nav ul a:hover::before {
	transform: translateX(10px) !important;
	opacity: 1;
}
.navbar-nav ul a:hover {
	padding-left: 25px;
	padding-right: 5px;
}

.navbar-nav ul .active > a,
.navbar-nav ul a.active {
	color: var(--primary);
}

.navbar-nav > li > .open,
.navbar-nav .nav-dropdown:hover > ul {
	display: block;
	animation: showDropdown .3s 1 forwards;
}

.navbar-nav .open .open,
.navbar-nav ul .nav-dropdown:hover > ul {
	display: block;
	animation: showNextDropdown .3s 1 forwards;
}

.navbar-nav ul ul {
	top: 0; left: 100%;
}


/* mobile menu */

.mobile-menu-toggler {
	width: 32px;
	height: 24px;
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	background: none;
	transition: all var(--fastSpeed) var(--easeOutBack);
	outline: none;
}

.mobile-menu-toggler div {
	display: block;
	height: 2px;
	width: 32px;
	background-color: white;
	transition: all var(--fastSpeed) var(--easeOutBack);
	transform-origin: right;
}

.mobile-menu-toggler div:first-of-type {
	background-color: var(--primary);
}

.mobile-menu-toggler.active-toggler div:first-of-type {
	transform: rotate(-45deg);
	background-color: #fff;
}

.mobile-menu-toggler.active-toggler div:last-child {
	transform: rotate(45deg);
	width: 100%;
}

.mobile-menu-toggler.active-toggler div:nth-of-type(2) {
	display: none;
}

.mobile-nav {
	transition: transform var(--fastSpeed) var(--easeOutQuart);
	transform: translateX(-100%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	max-width: 80vw;
	width: 300px;
	/* background-color: hsla(0, 0%, 0%, 0.8);
	backdrop-filter: blur(10px); */
	background-color: var(--primary);
	margin: 0;
	padding: 0;
	z-index: 99999;
	overflow-y: auto;
}

.mobile-nav.show {
	transform: translateX(0);
}

.mobile-nav ul,
.mobile-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav ul {
	background-color: hsla(0, 0%, 0%, .3);
}

.mobile-nav a {
	display: block;
	font-size: 1rem;
	text-decoration: none;
	font-weight: 700;
	color: white;
	box-sizing: border-box;
	padding: 10px 15px;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
}

.mobile-nav ul a {
	font-size: 0.875rem;
	font-weight: normal;
	padding-left: 30px;
}

.mobile-nav ul ul a {
	padding-left: 45px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
	color: var(--primary);
	background-color: #fff;
}







/*
			H E A D E R
*/

header .beacon--1 {
	top: 18%;
	left: 44%;
}

header .beacon--2 {
	top: 5%;
	right: 21.7%;
	animation-delay: .4s;
}

header .beacon--3 {
	top: 13%;
	right: 28.5%;
	animation-delay: .2s;
}

header .beacon--4 {
	top: 22%;
	right: 22.4%;
	animation-delay: .5s;
}

header .beacon--5 {
	top: 28%;
	right: 25.6%;
	animation-delay: .6s;
}

header .beacon--6 {
	top: 1%;
	right: 1%;
	animation-delay: .35s;
}

header .beacon--7 {
	top: 70%;
	right: 14%;
	animation-delay: .35s;
}

header .tir {
	position: absolute;
	z-index: 200;
	top: 370px;
	right: 36%;

	opacity: 0;
	transform: translate(0, 0);
}

header .tir.run {
	animation: headertir 3s ease 1 forwards;
}

.beacon--tir {
	position: absolute;
	top: -20px;
	right: 30%;
}





/*
			M A I N   S E C T I O N S
*/

.container {position: relative;}

.beacon {
	background: url(/assets/img/beacon.svg) center no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 100;
	transform-origin: bottom left;
	animation: beacon 1.5s ease-in infinite both;
}

.beacon--reverse {
	transform: rotateY(180deg);
	background: url(/assets/img/beacon.svg) center no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 100;
	transform-origin: bottom left;
	animation: beacon-reverse 1.5s ease-in infinite both;
}

.beacon--xxl {width: 88px; height: 78px;}
.beacon--xl {width: 64px; height: 56px;}

.beacon--lg {width: 54px; height: 48px;}
.beacon--md {width: 40px; height: 35px;}
.beacon--sm {width: 29px; height: 26px;}
.beacon--xs {width: 20px; height: 17px;}



#system-czujnikow {
	padding-top: calc(var(--sectionPadding) * 2);
	padding-bottom: calc(var(--sectionPadding) * 2);
	height: 900px;
}

.decorator {
	position: relative;
	padding-left: 90px;
	margin: 60px 0;
}

.decorator p::before {
	position: absolute;
	top: 10px;
	left: -90px;
	width: 62px;
	height: 3px;
	background-color: var(--primary);
	content: '';
	display: block;
	opacity: 0;
}

.decorator p {
	display: block;
	position: relative;
}

.animate__animated .decorator p,
.animate__animated.decorator p {
	animation-name: intoh5;
	animation-duration: 2s;
	animation-iteration-count: 1;
}

.animate__animated .decorator p::before,
.animate__animated.decorator p::before {
	animation-name: decorate;
	animation-duration: 1s;
	animation-iteration-count: 1;
}

.decorator p:nth-child(1) {animation-fill-mode: forwards;}
.decorator p:nth-child(1)::before {animation-fill-mode: forwards;}

.decorator p:nth-child(2) {animation-delay: 1s; animation-fill-mode: forwards;}
.decorator p:nth-child(2)::before {animation-delay: 1s; animation-fill-mode: forwards;}

.decorator p:nth-child(3) {animation-delay: 2s; animation-fill-mode: forwards;}
.decorator p:nth-child(3)::before {animation-delay: 2s; animation-fill-mode: forwards;}

.decorator p:nth-child(4) {animation-delay: 3s; animation-fill-mode: forwards;}
.decorator p:nth-child(4)::before {animation-delay: 3s; animation-fill-mode: forwards;}





/* .decorator h5 {
	margin-bottom: 50px;
	color: var(--secondary);
} */

.home section p {
	font-weight: 500;
	font-size: 1rem;
	color: var(--secondary);
	margin: 1.5em 0;
}


#system-czujnikow .beacon--1 {top: 0%; right: 15%; animation-delay: .15s;}
#system-czujnikow .beacon--2 {top: 16%; right: 24.5%; animation-delay: .3s;}
#system-czujnikow .beacon--3 {top: 37%; right: 33.5%; animation-delay: .45s;}

.wozek {
	position: absolute;
	right: -5%;
	bottom: 46%;

	opacity: 0;
	transform: translate(0, 0);
}

.wozek.run {
	animation: wozek1 3s ease 1 forwards;
}

.beacon--wozek {
	top: 10%;
	left: 18%;
}


#technologia-dla-transportu {
	min-height: 500px;
}

#technologia-dla-transportu .md\:w-5-12 {
	padding-right: calc(100% / 12);
}

#technologia-dla-transportu h2 {
	margin-top: 0;
}

#technologia-dla-transportu .beacon--1 {top: 0; left: 13%;}

#technologia-dla-transportu .beacon--2 {top: 65%; left: 29.5%; animation-delay: .15s;}
#technologia-dla-transportu .beacon--3 {top: 95%; left: 37%; animation-delay: .3s;}
#technologia-dla-transportu .beacon--4 {top: 85%; left: 50%; animation-delay: .45s;}




#kontrola-dostaw {
	padding-top: var(--sectionPadding);
	padding-bottom: var(--sectionPadding);
}

#kontrola-dostaw .md\:w-5-12 {
	padding-left: calc(100% / 12);
}

#kontrola-dostaw h2 {
	margin-top: 0;
}


#kontrola-dostaw .paczka {
	position: absolute;
	top: 5.5%;
	right: 7.5%;
	transform: translateY(-80px);
	opacity: 0;
}

#kontrola-dostaw .paczka.run {
	animation: paczka 1s 2s var(--easeOutQuart) 1 forwards;
}

#kontrola-dostaw .beacon--1 {right: 3%; top: -7.5%; animation-delay: 2.6s;}
#kontrola-dostaw .beacon--2 {right: 10%; top: -4%; animation-delay: .15s;}
#kontrola-dostaw .beacon--3 {right: 17%; top: 25%; animation-delay: .3s}
#kontrola-dostaw .beacon--4 {right: 28.5%; top: 87%; animation-delay: .45s}




#parametry {
	padding: var(--sectionPadding) 0;
}

#parametry h2 {margin-top: 0;}

#parametry .decorator {
	margin-bottom: 0;
	margin-top: 30px;
}

#parametry .decorator h5 {
	margin-bottom: 30px;
}

#parametry .w-full.relative {
	height: 320px;
	margin-top: 30px;
}

#parametry .ikona--1 {
	position: absolute;
	top: -40px;
	left: 100px;
	animation: updown 5s linear infinite forwards;
}



#parametry .ikona--2 {
	position: absolute;
	top: -40px;
	left: 40%;
	animation: updown 6s linear infinite forwards;
}

#parametry .ikona--3 {
	position: absolute;
	top: 170px;
	left: 175px;
	animation: updown 5.5s linear infinite forwards;
}

#parametry .ikona--4 {
	position: absolute;
	top: 90px;
	left: 380px;
	animation: updown 7s linear infinite forwards;
}

#parametry .beacon--reverse {
	top: 27%;
	left: 33%;
}



#bezpieczenstwo {
	padding-bottom: var(--sectionPadding);
}

#bezpieczenstwo .md\:w-5-12 {
	padding-left: calc(100% / 12);
}

.tir2 {
	position: absolute;
	top: 88px;
	right: 0;
}

.tir2.run {
	animation: tir2 3s ease 1 forwards;
}

.tir2 .beacon {
	top: -30px;
	right: 5%;
}

.mountain {
	position: absolute;
	top: 38%;
	right: 7%;
	z-index: 300;
	width: 400px;
}



#oszczednosci {
	padding: 160px 0;
}

#oszczednosci h4 {
	margin: 50px 0;
}

#oszczednosci ul {
	margin: 0;
	padding: 0;
}

#oszczednosci li {
	list-style: none;
	position: relative;
	color: var(--secondary);
	font-weight: 500;
	font-size: 1.5rem;
	margin-bottom: 30px;
	padding-left: 80px;
	display: flex;
	align-items: center;
}
/*
#oszczednosci li::before {
	content: '';
	display: block;
	width: 45px;
	height: 61.07px;
	flex-shrink: 0;
	margin-right: 15px;
	background: url(/assets/img/check.svg) center no-repeat;
} */


#znajdz-zgube {
	padding-top: 300px;
	padding-bottom: 300px;
}

.zguba {
	position: absolute;
	top: 45%;
	left: 20%;
	z-index: 30;
	height: 122px;
}

.magazyn {
	position: absolute;
	z-index: 30;
	transform: translateY(-100%);
}

.zguba.run .magazyn {
	animation: magazyn .5s 1s ease 1 forwards;
}

@keyframes magazyn {
	0% {opacity: 0; transform: translateY(-100%);}
	10% {opacity: 1; transform: translateY(-100%);}
	100% {opacity: 1; transform: translateY(-40%);}
}

.zguba .beacon {
	z-index: 20;
	position: absolute;
	top: 15.5%;
	left: 44%;
}

.zguba .beacon--xl {display: none;}

.podloga {
	z-index: 10;
	position: relative;
}


#znajdz-zgube .beacon--xxl {
	top: -25px;
	left: 28%;
	z-index: 50;
	animation-delay: 2.5s;
}




#news {
	padding-bottom: var(--sectionPadding);
}

#news .md\:w-5-12 {
	padding-left: calc(100% / 12);
}

#news h2 {margin-top: 0;}

#news iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}

#news img {
	max-width: 100%;
	height: auto;
	display: block;
}


.btn {
	border-radius: 50px;
	padding: 1em 2em;
	text-transform: uppercase;
	font-weight: 700;
	font-family: var(--fontTitle);
	font-size: 1rem;
}


#media {
	padding: var(--sectionPadding) 0;
}

#media h2 {
	margin-bottom: 60px;
}

.wozek2 {
	position: absolute;
	top: -10%;
	left: -10%;
	opacity: 0;
}

.wozek2.run {
	animation: wozek2 3s ease 1 forwards;
}

.wozek2 .beacon--reverse {
	top: -38%;
	left: 83%;
}



/*
			F O O T E R
*/

.madeby {
	color: white;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
}

.madeby small {
	float: left;
	margin: 4px 4px 0 0;
	font-size: 0.6875rem;
}


footer {
	background-color: var(--secondary);
	color: white;
	padding: var(--sectionPadding) 0 30px;
}

footer h2 {margin-top: 0;}

footer hr {
	opacity: .2;
	background-color: #fff;
	margin: var(--sectionPadding) 0 30px;
}

footer a {
	color: white;
	transition: opacity .2s;
	text-decoration: none;
}

footer a:hover {
	opacity: .8;
}


footer .last.flex, footer .last.flex a {
	color: hsl(0, 0%, 100%, .5);
	font-size: 0.75rem;
}

footer .last.flex a {
	margin: auto 1em;
}

address {
	font-style: normal;
}

footer address {margin-top: 50px;}


/*
			K E Y F R A M E S
*/

@keyframes showDropdown {
	0% {opacity: 0; transform: translateY(-10px);}
	100% {opacity: 1; transform: translateY(0);}
}

@keyframes showNextDropdown {
	0% {opacity: 0; transform: translateX(-10px);}
	100% {opacity: 1; transform: translateX(0);}
}

@keyframes beacon {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	20% {
		opacity: 1;
		transform: scale(.6);
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}

@keyframes beacon-reverse {
	0% {
		opacity: 0;
		transform: scale(0) rotateY(180deg);
	}

	20% {
		opacity: 1;
		transform: scale(.6) rotateY(180deg);
	}

	100% {
		opacity: 0;
		transform: scale(1) rotateY(180deg);
	}
}

@keyframes headertir {
	0% {
		opacity: 0;
		transform: translate(0, 0);
	}

	20% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 1;
		transform: translate(180%,110%);
	}
}


@keyframes wozek1 {
	0% {
		opacity: 0;
		transform: translate(0, 0);
	}

	20% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 1;
		transform: translate(-180%,100%);
	}
}

@keyframes tir2 {
	0% {
		opacity: 1;
		transform: translate(0, 0);
	}

	20% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 1;
		transform: translate(-280%,178%);
	}
}


@keyframes wozek2 {
	0% {
		opacity: 0;
		transform: translate(0, 0);
	}

	20% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 1;
		transform: translate(120%,40%);
	}
}

@keyframes paczka {
	0% { transform: translateY(-80px); opacity: 0; }
	10% { transform: translateY(-80px); opacity: 1; }
	100% { transform: translateY(0); opacity: 1; }
}

@keyframes updown {
	0% {transform: translateY(0);}
	25% {transform: translateY(10px);}
	50% {transform: translateY(0);}
	75% {transform: translateY(-10px);}
	100% {transform: translateY(0);}
}

@keyframes decorate {
	0% {opacity: 0}
	100% {opacity: 1}
}

@keyframes intoh5 {
	0% {font-size: 1rem}
	100% {font-size: var(--h6)}
}










/*

			M E D I A   Q U E R I E S

*/

@media screen and (max-width: 1280px) {
	#kontrola-dostaw .paczka {right: 5.5%;}
	#kontrola-dostaw .beacon--1 {right: 1%;}
	#kontrola-dostaw .beacon--2 {right: 8%;}
	#kontrola-dostaw .beacon--3 {right: 15%;}
	#kontrola-dostaw .beacon--4 {right: 26.5%;}
}



@media screen and (max-width: 1199px) {
	header h1 {font-size: var(--h2);}
	header .beacon--6 {display: none;}

	header .beacon--2 {right: 12.7%;}

	header .beacon--3 {
		top: 16%;
		right: 22.5%;
	}

	header .beacon--4 {
		top: 24%;
		right: 14%;
	}
	header .beacon--5 {
		top: 31%;
		right: 18%;
	}

	header .beacon--7 {
		top: 77%;
		right: 3%;
	}

	#system-czujnikow .beacon--1 {
		top: 9%;
		right: 4%;
		animation-delay: .15s;
	}

	#system-czujnikow .beacon--2 {
		top: 22%;
		right: 16.5%;
		animation-delay: .3s;
	}

	#system-czujnikow .beacon--3 {
		top: 41%;
		right: 29%;
		animation-delay: .45s;
	}

	.wozek {
		right: -5%;
		bottom: 25%;
	}

	#technologia-dla-transportu .beacon--1 {
		top: 32%;
		left: 4%;
	}

	#technologia-dla-transportu .beacon--2 {
		top: 89%;
		left: 23%;
	}

	#technologia-dla-transportu .beacon--3 {
		top: 113%;
		left: 33%;
	}

	#technologia-dla-transportu .beacon--4 {
		top: 104%;
		left: 50%;
	}

	#kontrola-dostaw .paczka {
		right: -4.5%;
		top: 19.5%;
	}

	#kontrola-dostaw .beacon--1 {
		right: -10%;
		top: 8%;
	}

	#kontrola-dostaw .beacon--2 {
		right: -3%;
		top: 10%;
	}

	#kontrola-dostaw .beacon--3 {
		right: 7%;
		top: 34%;
	}

	#kontrola-dostaw .beacon--4 {
		right: 21.5%;
		top: 85%;
	}

	#parametry .ikona--4 {
		left: 326px;
	}

	#parametry .beacon--reverse {
		top: 30%;
		left: 44%;
	}

	.mountain {
		top: 53%;
		right: 7%;
	}

	.tir2 {
		position: absolute;
		top: 164px;
		right: 0;
	}

	#znajdz-zgube .beacon--xxl {
		top: -15px;
		left: 30%;
	}

	#media a {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#media a img {
		max-width: 80%;
		max-height: 80px;
		object-fit: contain;
		object-position: center;
	}
}














@media screen and (min-width: 320px) and (max-width: 1020px) {
	body {
		background: none;
	}
	.mountain,
	.zguba,
	.tir, .wozek, .wozek2, .tir2, .paczka,
	.beacon:not(header .beacon--1), .beacon--reverse {display: none;}

	.w-full {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.row {
		margin-left: 0;
		margin-right: 0;
	}


	.navbar-logo-image {height: 25.43px;}

	.navbar .btn {
		padding: 0;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 30px;
	}

	.navbar .btn span {display: none;}

	.navbar .btn img {
		height: 24px;
		margin: 0;
	}

	.slogan {
		text-align: center;
	}

	header h1 {
		font-size: var(--h4);
	}

	header .lead {
		font-size: 1rem;
	}

	header {
		background: url(/assets/img/mobile/mobile-bg-1.svg) bottom no-repeat;
		background-size: contain;
		padding-bottom: 200px;
	}

	header .py-90 {
		padding: 30px 0;
	}

	header .beacon--1 {
		top: 5%;
		left: auto;
		right: 0%;
	}

	.decorator {padding-left: 50px;}

	.decorator p::before {
		left: -50px;
		width: 33px;
		height: 5px;
		border-radius: 4px;
	}


	#system-czujnikow {
		height: auto;
		padding: 0 0 60px;
		background: url(/assets/img/mobile/mobile-section-bg.svg) bottom no-repeat;
		background-size: contain;
	}

	h2 {font-size: var(--h4);}

	#technologia-dla-transportu {
		text-align: center;
		background: url(/assets/img/mobile/mobile-bg-2.svg) bottom no-repeat;
		background-size: contain;
		padding-top: 60px;
		padding-bottom: 200px;
		min-height: 10px;
	}

	@keyframes intoh5 {
		0% {font-size: 1rem}
		100% {font-size: 1.05rem}
	}

	#kontrola-dostaw {
		padding: 30px 0 180px;
		text-align: center;
		background: url(/assets/img/mobile/mobile-bg-3.svg) bottom no-repeat;
		background-size: contain;
	}


	#parametry {
		padding: 60px 0;
		background: url(/assets/img/mobile/mobile-section-bg.svg) bottom no-repeat;
		background-size: contain;
		text-align: center;
	}

	#parametry .md\:w-7-12 {display: none;}

	#parametry .decorator {
		padding: 0;
		animation: none;
		display: flex;
		flex-wrap: wrap;
	}

	#parametry .decorator p {
		flex-basis: 50%;
		width: 50%;
		text-align: left;
		display: flex;
		align-items: center;
		padding-left: 0;
		position: relative;
		margin: 0;
	}

	#parametry .decorator p::before {
		width: 36px;
		height: 82px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		left: 0;
		top: auto;
		position: relative;
		margin-right: 10px;
		background-color: transparent;
	}

	/* #parametry .decorator p:first-child:before {background-image: url(/assets/img/mobile/mobile-lokalizacja.svg)} */
	#parametry .decorator p:first-child:before {background-image: url(/assets/img/parametr3.svg); background-size: 30px auto}
	#parametry .decorator p:nth-child(2):before {background-image: url(/assets/img/mobile/mobile-temperatura.svg); background-size: 24px auto}
	#parametry .decorator p:nth-child(3):before {background-image: url(/assets/img/mobile/mobile-wilgotnosc.svg)}
	#parametry .decorator p:last-child:before {background-image: url(/assets/img/mobile/mobile-wstrzasy.svg)}


	#bezpieczenstwo {
		text-align: center;
		background: url(/assets/img/mobile/mobile-bg-4.svg) bottom no-repeat;
		background-size: contain;
		padding-bottom: 150px;
	}

	#oszczednosci {
		padding: 15px 0 60px;
		background: url(/assets/img/mobile/mobile-section-bg.svg) bottom no-repeat;
		background-size: contain;
	}

	#oszczednosci h4 {
		margin: 25px 0;
		font-size: var(--h5);
	}

	#oszczednosci li {
		font-size: 1rem;
		padding-left: 15px;
	}

	#znajdz-zgube {
		padding-top: 0;
		padding-bottom: 120px;
		text-align: center;
		background: url(/assets/img/mobile/mobile-bg-5.svg) bottom no-repeat;
		background-size: contain;
	}

	#znajdz-zgube .beacon--1 {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		margin: 0;
	}

	#news {
		text-align: center;
		padding: 40px 0 100px;
		background: url(/assets/img/mobile/mobile-section-bg.svg) bottom no-repeat;
		background-size: contain;
	}

	#news iframe {
		height: auto;
		margin-bottom: 20px;
	}

	#news .flex.col {
		flex-direction: column-reverse;
	}

	#media {
		padding: 60px 0 30px;
	}

	#media h2 {
		margin-top: 0;
	}

	#media a {
		flex-basis: 50%;
		margin-bottom: 30px;
	}

	footer .container > .flex >  .w-full:not(:last-child) {
		margin-bottom: 60px;
	}

	.flex.last {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.copy {
		text-align: center;
		margin-bottom: 15px;
	}

	section {
		width: 100%;
		overflow: hidden;
	}


}



@media screen and (min-width: 480px) and (max-width: 1020px) {
	.home header {
		padding-bottom: 268px;
	}

	#technologia-dla-transportu {
		padding-bottom: 55vw;
	}

	#kontrola-dostaw,
	#bezpieczenstwo {padding-bottom: 45vw;}

	#znajdz-zgube {padding-bottom: 30vw;}

	header .beacon--1 {
		top: 8%;
		left: auto;
		right: 4%;
	}
}



@media screen and (min-width: 600px) and (max-width: 1020px) {
	.home header {
		padding-bottom: 55vw;
	}

	#technologia-dla-transportu {
		padding-bottom: 55vw;
	}

	#kontrola-dostaw,
	#bezpieczenstwo {padding-bottom: 45vw;}

	#znajdz-zgube {
		padding-bottom: 30vw;
	}

	header .beacon--1 {
		top: 8%;
		left: auto;
		right: 4%;
	}

	#parametry .md\:w-5-12 {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#parametry .decorator {
		width: 65%;
	}
}


@media screen and (min-width: 800px) and (max-width: 1020px) {
	#technologia-dla-transportu {
		padding-bottom: 46vw;
	}

	#kontrola-dostaw, #bezpieczenstwo, #znajdz-zgube {
		padding-bottom: 36vw;
	}

	#znajdz-zgube {
		padding-bottom: 30vw;
	}

	#media a {
		flex-basis: 33%;
		margin-bottom: 30px;
	}
}