/* Tutaj jest miejsce na Twoje style */
#counter {
	margin-top: 64px;
}

.video {
	margin-top: -320px;
	position: relative;
}

.video .container-md {
	position: relative;
}

.video .plyr {
	position: relative;
	z-index: 2;
}

.card {
	display: block;
	background-color: transparent;
	font-size: 0.8em;
}

.card__wrapper {
	background-color: #161c21;
	padding: 32px;
	max-width: 1100px;
	margin: 0 auto;
	border-radius: 32px;
}

.top-padding {
	padding-top: 150px;
}

.player-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

.player-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.button-section h4 {
	font-weight: 400;
}

.button-section h2 {
	font-weight: 600;
}

.button-wrapper {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.button-card {
	background-color: #161c21;
	padding: 40px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.button-card a {
	cursor: pointer;
}
/* Wrapper produktów */
.product-wrapper {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between; /* Wyśrodkowanie produktów */
	align-items: center;
	gap: 20px;
}

/* Styl dla kart produktów */
.product-card {
	background: radial-gradient(circle, #61667a 0%, #1e2329 100%);
	padding: 40px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	color: #fff;
	transition: transform 0.3s ease; /* Dodaj płynne przejście */
}

.product-card:hover {
	transform: translateY(-4px); /* Przesunięcie w górę o 4px */
}

.product-card h4 {
	font-size: 20px;
}

.products {
	margin-top: 40px;
	row-gap: 40px;
	column-gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.product-card img {
	margin-bottom: 20px;
	border-radius: 16px;
}

/* Układ dla desktopu */
@media (min-width: 992px) {
	.product-card {
		flex: 0 1 calc(25% - 20px); /* 4 produkty na szerokich ekranach */
	}
}

/* Układ dla tabletów */
@media (min-width: 768px) and (max-width: 991px) {
	.product-card {
		flex: 0 1 calc(50% - 20px); /* 2 produkty na tabletach */
	}
}

/* Układ dla urządzeń mobilnych */
@media (max-width: 767px) {
	.product-card {
		flex: 0 1 100%; /* 1 produkt na pełną szerokość na telefonach */
	}
}

@media (max-width: 992px) {
	.top__wrapper {
		background-color: #161c21;
		background-image: url('../../img/main/header-mobile.jpg');
		background-size: contain;
		background-position: bottom right;
	}
}

@media (max-width: 576px) {
	.top__wrapper {
		background-color: #161c21;
		background-image: url('../../img/main/header-mobile.jpg');
		background-size: 140%;
		background-position: bottom right;
	}
	.counter__cards-item span {
		font-size: 24px;
	}

	.counter__cards-item p {
		font-size: 16px;
	}
}

.top__wrapper {
	background-position: bottom right;
}
