html {
	scroll-behavior: smooth;
}

:root {
	--sticky-offset: 80px;
}

[id] {
	scroll-margin-top: var(--sticky-offset);
}


body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	color: #000;
	font-weight: 300
}

/* HEADER */
header {
	background: #fff;

}


.top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 5%;
	max-width: 1300px;
	margin: 0 auto
}

.logos {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logos a:nth-child(1) img {
	height: 25px;
	padding-top: 2px
}

.logos a:nth-child(2) img {
	height: 30px;
	margin-left: 5px;
}

.hamburger {
	display: none;
	font-size: 28px;
	cursor: pointer;
}

nav {
	background: #f5f6f7;
	width: 100%;
}

nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 18px 4.7%;
	max-width: 1300px;
	margin: 0 auto
}

nav ul li a {
	position: relative;
	text-decoration: none;
	color: #636363;
	font-weight: 400;
	font-size: 14px;
	padding: 8px 4px;
	transition: color 0.3s ease;
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 40%;
	height: 2px;
	background: #0076ce;
	border-radius: 0px;
	transition: transform 0.3s ease;
}

nav ul li a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

#Stacje .banner-image img {
	max-height: 300px;
}


.products a[href="#"] {}

.products a[href="#"]::before {
	content: "JUŻ WKRÓTCE";
	position: absolute;
	inset: 0;
	background: rgba(28, 44, 59, 0.85);
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	letter-spacing: 1px;
}

.products a[href="#"]:hover::before {
	opacity: 1;
}

.hero-content {
	max-width: 1390px;
	margin: 0 auto;
	width: 100%;
}


.menu-stacje-wrap {
	width: 100%;
	background: #002a58;
	padding: 0 4.7%;
	box-sizing: border-box;
	transition: all 0.4s ease;
}

.menu-stacje-wrap.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #002a58;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
}

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

.menu-stacje ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 65px;
	gap: 20px;
}

.menu-stacje li {
	display: flex;
	align-items: center;
	height: 100%;
}

.menu-stacje a:first-child {
	margin-left: -15px
}

.menu-stacje a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	height: 100%;
	padding: 0px 20px;
	transition: all 0.3s ease;
}

.menu-stacje a:hover {
	background: #0672cb;
	color: #fff;
}

.menu-stacje a.active {
	background: #13314f;
	font-weight: 500;
}


/* HERO */
.hero-home {
	background: url('img/baner-home.jpg') center/cover no-repeat;
	height: 550px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	padding-left: 55px;
}

.hero-notebooki {
	background: url('img/hero-notebooki.png') center/cover no-repeat;
	height: 350px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	padding-left: 55px;
}


.hero-stacje-robocze {
	background: url('img/hero-stacje.jpg') center/cover no-repeat;
	height: 350px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	padding-left: 55px;
}

.hpg-card-text-content {
	max-width: 100%;
	color: #ffffff;
	text-align: left;
	margin: 0 auto;
	padding: 0px 20px 40px 20px;
}

.hpg-card-text-content .ghpg-title {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.4;
	color: #e0e6eb;
	margin-bottom: 20px;
	max-width: 300px;
}

.hpg-card-text-content .ghpg-subtitle {
	font-size: 43px;
	font-weight: 300;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 24px;
	max-width: 500px
}

.hpg-card-text-content span {
	display: block;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
	color: #e0e6eb;
	max-width: 500px;
}


.btn-hero {
	display: inline-block;
	padding: 12px 36px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 400;
	font-size: 17px;
	transition: background 0.3s ease, transform 0.3s ease;
	background-color: #fff;
	color: #002b58;
	border-radius: 0px;
	text-decoration: none;
	border: 1px solid #fff;
	text-align: center;
	margin-left: 20px;


}

.btn-hero:hover {
	background: transparent;
	border: 1px solid #fff;
	color: #fff
}


.hero-notebooki .ghpg-subtitle {
	color: #000
}

.hero-notebooki .hpg-card-text-content span {
	color: #000
}

.hero-notebooki .btn-hero {
	background: #0672cb;
	color: #fff;
	border: 1px solid #0672cb
}

.hero-notebooki .btn-hero:hover {
	background: transparent;
	color: #0672cb;
	border: 1px solid #0672cb
}


.hero-stacje-robocze .ghpg-subtitle {
	color: #000
}

.hero-stacje-robocze .hpg-card-text-content span {
	color: #000
}

.hero-stacje-robocze .btn-hero {
	background: #0672cb;
	color: #fff;
	border: 1px solid #0672cb
}

.hero-stacje-robocze .btn-hero:hover {
	background: transparent;
	color: #0672cb;
	border: 1px solid #0672cb
}


#offer h1 {
	margin: 40px 0px 40px;
}

.brand-compare-header-home {
	grid-column: 1 / -1;
	text-align: center;
	margin-bottom: 40px;
}

.brand-compare-header-title-home {
	width: 100%;
	color: #0076ce;
	font-weight: 300;
	letter-spacing: normal;
	font-size: 2.5rem;
	line-height: 3rem;
	margin: 0;
	padding: 0px 10px 40px 10px;
}

.brand-compare-header-title {
	color: #0076ce;
	padding: 10px 10px 90px 10px;
	text-align: center;
	font-weight: 300;
	letter-spacing: normal;
	font-size: 2.5rem;
	line-height: 3rem;
	margin: 0;
}

.products-grid {
	background: #f5f6f7;
	padding: 80px 5%;
	text-align: center;
}


.products-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1300px;
	margin: 0 auto 40px auto;
}

.products-columns:last-child {
	margin-bottom: 0;
}

.product-box {
	background: #fff;
	border: 1px solid #dcdcdc;
	padding: 40px 30px;
	text-align: left;
	border-radius: 0;
	transition: box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box;
}

.product-box .img-wrap {
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px;
}

.product-box:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.product-box img {
	display: block;
	max-width: 240px;
	max-height: 160px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 0 auto 30px auto;
	transition: transform 0.3s ease;
}

.product-box:hover img {
	transform: scale(1.05);
}


.product-box {
	position: relative;
}

.product-box img {
	align-self: center;
}


.product-box h3 {
	font-size: 21px;
	font-weight: 400;
	color: #0076ce;
	margin-bottom: 10px;
}

.product-box h4 {
	font-size: 15px;
	font-weight: 500;
	color: #000;
	margin-top: 0;
	margin-bottom: 30px;
}

.product-box ul {
	list-style-type: disc;
	color: #000;
	font-size: 14px;
	line-height: 21px;
	margin: 0;
}

.product-box ul li {
	margin-bottom: 8px;
}

.copy-box {
	max-width: 1300px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 9px;
	margin: 0 auto;
	line-height: 12px;
	opacity: 0.5;
	text-align: center
}


/* BANERY */


.product-baners {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.product-banner {
	width: 100%;
}

.product-banner-inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 40px 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	max-height: 330px;
}

.product-banner:nth-child(even) .product-banner-inner {
	flex-direction: row-reverse;
}

.product-banner:nth-child(odd) {
	background: #fff;
}

.product-banner:nth-child(even) {
	background: #f5f6f7;
}

.product-banner:nth-child(even) {
	flex-direction: row-reverse;
}

.banner-image {
	flex: 1 1 50%;
	text-align: center;
}

.banner-image img {
	width: auto;
	max-height: 420px;
	display: block;
	margin: 0 auto;
}

.banner-text {
	flex: 1 1 50%;
	color: #000;
}

.banner-text h2 {
	font-size: 34px;
	font-weight: 300;
	margin-bottom: 10px;
	color: #0076ce;
	max-width: 450px
}

.banner-text h3 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 25px;
	margin-top: 0px
}

.banner-text p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 25px;
}

.banner-text small {
	display: block;
	font-size: 11px;
	color: #555;
	margin-bottom: 25px;
}

.btn-primary {
	display: inline-block;
	background: #0076ce;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 14px 34px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.btn-primary:hover {
	background: #005fa3;
}


/* SCROLL TO TOP */
#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #0076ce;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 28px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
	transform: scale(1.1);
}

#scrollTopBtn span {
	display: inline-block;
	transform: rotate(90deg);
}


/* PRODUKTY */
.products {
	position: relative;
	background: #fff;
	padding: 100px 5% 140px 5%;
}

.products-inside {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
}

.products a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 0;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(147deg, #839db4, #d2d2d2 100%);
	min-height: 300px;
}

.products a::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(147deg, #d2d2d2, #839db4 100%);
	opacity: 0;
	transition: opacity 0.7s ease;
	z-index: 0;
}

.products a:hover::before {
	opacity: 1;
}

.products a > * {
	position: relative;
	z-index: 1;
}

.products a img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: opacity 0.4s ease, filter 0.4s ease;
	display: block;
	margin: 0 auto;
}

.products a:hover img {
	filter: drop-shadow(10px 1px 10px rgba(0, 0, 0, 0.2));
}

.products a span {
	position: absolute;
	top: 0;
	left: 0;
	background: #0672cb;
	color: #fff;
	font-size: 17px;
	font-weight: 300;
	padding: 9px 14px;
	transition: background-color 0.4s ease;
	z-index: 999
}

.products a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.7s ease;
	z-index: 1;
}


.products a:hover::after {
	background: rgba(0, 0, 0, 0);
}

.products a:hover span {
	background: #0672cb;
}

.products a:last-child {
	align-items: flex-end;
}


/* PRODUKTY */
h1 {
	text-align: left;
	margin: 40px 0px 0px;
	padding: 0px 5%;
	font-size: 40px;
}

.section {
	padding: 30px 5% 0px 5%;
}

.section h2 {
	font-size: 25px;
	margin-bottom: 5px;
}

.section p {
	margin-bottom: 20px;
	color: #555;
	font-size: 15px;
	min-height: 40px;
}


/* KONTAKT */
.contact {
	background: #f5f6f7;
	padding: 60px 5% 90px 5%;
	text-align: center;
	color: #000;
	font-size: 30px;
}

.contact h2 {
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: 300
}

.contact h3 {
	margin-bottom: 10px;
	font-size: 21px;
	padding: 0;
	font-weight: 400;
	margin-top: 0;
	font-weight: 300
}

.contact p a {
	text-decoration: none;
	color: #000;
	padding: 0;
	margin: 0;
	font-weight: 300
}


.contact p {
	margin: 5px 0;
	font-size: 15px;
	font-weight: 300
}

.contact img {
	max-height: 60px;
	margin: 20px 0;
}

.btn {
	display: inline-block;
	margin-top: 20px;
	padding: 15px 25px;
	background: #e5194a;
	color: #fff;
	text-decoration: none;
	border-radius: 0px;
	font-weight: 300;
	font-size: 17px;
	min-width: 200px;
	transition: background-color .5s ease, color .5s ease;
	border: 1px solid #e5194a;
}

.btn:hover {
	background-color: #fff;
	color: #e5194a;
	border: 1px solid #e5194a;
}


/* STOPKA */
footer {
	background: #fff;
	color: #000;
	text-align: center;
	padding: 20px;
	font-size: 12px;

}

/* MENU MOBILE */
#menu {
	max-height: none;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out;
}

#menu.active {
	max-height: 500px;
}


@media (max-width: 1180px) {

	.menu-stacje-wrap {
		display: none;
	}

	#scrollTopBtn {
		display: none !important;
	}

	.products-list {
		grid-template-columns: repeat(2, 1fr);
	}

	nav ul li a::after {
		display: none;
	}

	nav a {

		font-size: 16px;
		padding-bottom: 3px;
		display: block;
		padding-top: 3px;
	}

	nav ul {
		flex-direction: column;
		gap: 10px;
		margin-top: 10px;
		padding-bottom: 30px
	}

	#menu {
		max-height: 0;
	}

	.hamburger {
		display: block;
	}

}

@media (max-width: 768px) {


	.copy-box {
		padding-left: 15px;
		padding-right: 15px
	}


	.hero-notebooki {
		height: auto;
		min-height: 160px;
		padding: 0px 10px 0px 20px !important;
		text-align: left;
		background-image: none;
	}

	.hero-stacje-robocze {
		height: auto;
		min-height: 160px;
		padding: 0px 10px 0px 20px !important;
		text-align: left;
		background-image: none;
	}

	.hpg-card-text-content {
		max-width: 480px;
		margin: 0 auto;
		color: #000;
		padding: 0px 20px 20px 0px;
	}

	.hpg-card-text-content .ghpg-title {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.hpg-card-text-content .ghpg-subtitle {
		font-size: 30px;
		line-height: 1.2;
		margin-bottom: 18px;
	}

	.hpg-card-text-content span {
		font-size: 15px;
		line-height: 1.5;
		color: #333;
	}

	.btn-hero {
		display: none;
	}

	.brand-compare-header-title {
		color: #0076ce;
		padding: 0px 10px 40px 10px;
		text-align: center;
		font-weight: 300;
		letter-spacing: normal;
		font-size: 27px;
		line-height: 32px;
		margin: 0;
	}

	.products-grid {
		padding: 40px 5% 80px 5%;
	}

	.product-banner-inner {
		flex-direction: column !important;
		text-align: center;
		gap: 25px;
		padding: 40px 20px;
		max-height: none !important;
	}

	.product-banner-inner .banner-text {
		order: 1;
	}

	.product-banner-inner .banner-image {
		order: 2;
	}

	.banner-image img {
		max-height: 250px !important;
		width: 100%;
		height: auto;
	}

	.banner-text h2 {
		font-size: 26px;
		max-width: 300px;
		margin: 10px auto;
		line-height: 25px;
	}

	.banner-text h3 {
		font-size: 17px;
		margin-bottom: 18px;
	}

	.banner-text p {
		font-size: 15px;
		line-height: 22px;
	}

	.product-baners {
		gap: 0;
	}

	.product-banner {
		padding: 0;
	}

	.product-banner-inner {
		padding: 20px 5%;
	}

	.products-inside {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.products {
		padding: 60px 8%;
	}

	.products a {
		min-height: 280px;
		width: 100%;
	}

	.products a img {
		max-height: 220px;
		width: auto;
		object-fit: contain;
	}

	.products a span {
		font-size: 16px;
		padding: 8px 12px;
	}

	.products-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-box {
		text-align: center;
	}

	.product-box ul {
		text-align: left;
		display: inline-block;
	}

	.products-list {
		grid-template-columns: 1fr;
	}

	footer {
		font-size: 12px;
	}

	.contact h2 {
		font-size: 26px;
		max-width: 300px;
		margin: 10px auto;
	}

	.contact h3 {
		font-size: 16px;
	}

	h1 {
		font-size: 30px;
	}

	.section h2 {
		font-size: 21px;
		margin-bottom: 0px;
	}

	.grid-2 {
		padding-right: 0px;
	}

	.product-col.narrow {
		padding-right: 0px;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.grid-2 {
		grid-template-columns: 1fr;
	}

	.logos a:nth-child(1) img {
		height: 24px;
		padding-top: 4px;
	}

	.hero-home {
		height: auto;
		min-height: 280px;
		background-color: #002b58;
		background-image: url('img/baner-home.jpg');
		background-position: 100% calc(100% - 30px);
		;
		background-size: 140%;
		padding: 60px 2% 270px 2%;
		text-align: center;
		justify-content: center;
	}

	.hero-home .hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 25px;
	}

	.brand-compare-header-title-home {
		font-size: 34px;
		line-height: 35px;
		margin: 0;
		padding: 0px 0px 0px 0px;
	}

	.hero-home .hpg-card-text-content {
		max-width: 480px;
		color: #fff;
		text-align: center;
		padding: 0 10px;
	}

	.hero-home .ghpg-title {
		font-size: 14px;
		line-height: 1.4;
		color: #e0e6eb;
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
		max-width: 90%
	}

	.hero-home .ghpg-subtitle {
		font-size: 33px;
		line-height: 1.2;
		color: #ffffff;
		margin-bottom: 18px;
	}

	.hero-home .hpg-card-text-content span {
		font-size: 17px;
		line-height: 1.5;
		color: #e0e6eb;
		display: block;
		max-width: 420px;
		margin: 0 auto;
	}

	.hero-home .btn-hero {
		display: inline-block;
		margin-top: 10px;
		font-size: 15px;
		padding: 10px 28px;
		border-radius: 0;
		background: #fff;
		color: #0e0e0e;
		border: 1px solid #fff;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.hero-home .btn-hero:hover {
		background: transparent;
		color: #fff;
		border-color: #fff;
	}
}


@media (min-width: 1480px) {

	.hero-stacje-robocze,
	.hero-notebooki {
		height: 440px;
	}