p {
	color: #fff;
}

.header-container {
	padding: 60px 0;
	background-image: url('../../img/main/header-container.jpg?v3.0');
	background-size: cover;
	background-position: bottom right -300px;
	background-repeat: no-repeat;
	height: 700px;
}

@media (max-width: 1400px) {
	.header-container {
		height: 600px;
	}
}

@media (max-width: 1200px) {
	.header-container {
		background-position: bottom right -150px;
	}
}

.header-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
}

/* Text Wrapper */
.text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
	max-width: 50%;
}

.text-wrapper h1 {
	font-size: 2.5rem;
	font-weight: bold;
}

.text-wrapper h2 {
	font-size: 1.75rem;
	color: #fff;
}

.text-wrapper p {
	font-size: 1rem;
	line-height: 1.6;
	color: #fff;
	opacity: 0.8;
}

.text-wrapper img {
	height: 20%;
	width: 20%;
}

/* Image Styles */
.img-wrapper {
	flex: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.header-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.text-wrapper img {
		height: 20%;
		width: 20%;
		margin: 0 auto;
	}
}

.product-container {
	/* background-color: #1a1a1a; */
	padding: 60px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.product-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.product {
	background-color: #333333;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	flex: 1 1 calc(33.333% - 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.product h3 {
	font-size: 1.5rem;
	color: #fff;
	margin: 20px 0;
}

.product .cta {
	margin-top: auto;
}

@media (max-width: 1024px) {
	.product-wrapper {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.product {
		flex: 1 1 100%;
	}
}

@media (max-width: 768px) {
	.product-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.product {
		flex: 1 1 100%;
		max-width: 500px;
	}
}

/* Ogólne style */
.icon-container {
	padding: 60px 0;
	background-color: #333333;
}

/* Stylowanie dla sekcji tytułu */
.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h3 {
	font-size: 1.75rem;
	color: #fff;
	margin-bottom: 10px;
	font-weight: 400;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: bold;
}

/* Ustawienia dla kontenerów z ikonami */
.icon-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

/* Stylowanie dla pojedynczych ikon */
.ico {
	flex: 1 1 calc(25% - 20px); /* Dla desktop: 4 ikony w rzędzie */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.ico img {
	margin-bottom: 20px;
}

.ico h4 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.ico p {
	font-size: 1rem;
	color: #fff;
}

/* Media Queries dla responsywności */
@media (max-width: 991px) {
	.ico {
		flex: 1 1 calc(50% - 20px); /* Dla tabletów: 2 ikony w rzędzie */
	}
}

@media (max-width: 576px) {
	.ico {
		flex: 1 1 100%; /* Dla urządzeń mobilnych: 1 ikona w rzędzie */
	}
}

/* Ogólne style */
.double-container {
	padding: 60px 0;
}

/* Stylowanie dla sekcji tytułu */
.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: bold;
}

/* Ustawienia dla kontenerów z elementami double */
.double-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

/* Stylowanie dla pojedynczych elementów double */
.double {
	flex: 1 1 calc(50% - 20px); /* Dla desktop: 2 elementy w rzędzie */
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.double img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 8px;
}

.double .strong {
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.double h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.double p {
	font-size: 1rem;
	color: #fff;
	line-height: 1.6;
}

/* Media Queries dla responsywności */
@media (max-width: 991px) {
	.double {
		flex: 1 1 100%; /* Dla tabletów: 1 element w rzędzie */
	}
}

@media (max-width: 576px) {
	.double {
		flex: 1 1 100%; /* Dla urządzeń mobilnych: 1 element w rzędzie */
		padding: 15px; /* Mniejsze odstępy na mobile */
	}
}

/* Stylowanie dla kontenerów triple */
.triple-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	margin-top: 60px; /* Dodatkowy odstęp nad sekcją triple */
}

.triple {
	flex: 1 1 calc(33.333% - 20px); /* 3 elementy w rzędzie na desktopie */
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-radius: 8px;
}

.triple img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 8px;
}

.triple .strong {
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.triple h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.triple p {
	font-size: 1rem;
	color: #fff;
	line-height: 1.6;
}

/* Media Queries dla triple */
@media (max-width: 991px) {
	.triple {
		flex: 1 1 calc(50% - 20px); /* 2 elementy w rzędzie na tabletach */
	}
}

@media (max-width: 576px) {
	.triple {
		flex: 1 1 100%; /* 1 element w rzędzie na urządzeniach mobilnych */
		padding: 15px; /* Mniejsze odstępy na mobile */
	}
}

.footer {
	padding-bottom: 60px;
}

.footer-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-top: 40px;
	text-align: center;
}

.footer-wrapper p {
	opacity: 0.6;
}

@media (max-width: 992px) {
	.header-container {
		background-image: url('../../img/main/header-container-mobile.jpg?v2.0');
		background-size: contain;
		background-position: center bottom;
		height: 800px;
	}

	.text-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.header-container {
		height: 700px;
	}
}

@media (max-width: 330px) {
	.header-container {
		height: 750px;
	}
}

.ray-tracing {
	padding: 4rem 1rem;
}

.ray-tracing .container {
	text-align: center;
}

.ray-tracing .container h3 {
	font-weight: 400;
	font-size: 21px;
	text-align: center;
	margin-bottom: 1rem;
}

.ray-tracing .container h2 {
	font-weight: 650;
	font-size: 32px;
	text-align: center;
	margin-bottom: 1rem;
}

.ray-tracing .container p {
	max-width: 60%;
	margin: auto;
}

.ray-tracing .rtx-img {
	text-align: center;
	padding: 2rem 0;
	border-radius: 15px;
	margin: auto;
}

.ray-tracing .rtx-img img {
	border-radius: 15px;
}

.ai {
	background: url('../../img/main/dlss4.png') center bottom -200px no-repeat;
	text-align: left !important;
	padding-top: 20px;
	padding-bottom: 20px;
	background-size: cover;
	max-width: 1920px;
	margin: 0 auto;
	height: 600px;
}

.ai .container {
	display: flex;
	justify-content: center;
}

.ai .container .ai-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	max-width: 80%;
}

.ai .container .ai-wrapper .ai-copy {
	text-align: center;
	max-width: 100%;
	text-shadow: 2px 2px 4px #000000;
}

.aipc .container .ai-wrapper .ai-copy {
	text-align: left;
	max-width: 35%;
	text-shadow: 2px 2px 4px #000000;
}

.ai .container .ai-wrapper .ai-copy h3 {
	font-weight: 650;
	font-size: 21px;
	margin-bottom: 1rem;
}

.ai .container .ai-wrapper .ai-copy h2 {
	font-weight: 650;
	font-size: 32px;
	margin-bottom: 1rem;
}

.ai .container .ai-wrapper .ai-copy p {
	margin: 0;
}

.ai .ai-img {
	display: none;
}

@media screen and (max-width: 920px) {
	.ai {
		background-position: right -100px bottom -200px;
		background-size: cover;
		padding: 0 1rem 4rem;
	}
	.ai .container .ai-wrapper .ai-copy {
		margin: auto;
		max-width: 100%;
	}
	.ai .ai-wrapper {
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	.ai .ai-img {
		display: block;
	}
	.rtxon {
		background-size: contain;
		background-position: bottom;
		height: 600px;
	}
}

.aipc {
	background: url('../../img/main/aipc.jpg') right center no-repeat;
	background-size: cover;
	text-align: left !important;
	padding: 0;
	height: 650px;
	display: flex;
	max-width: 1920px;
	margin: 0 auto;
}

.double-cta {
	text-decoration: underline;
	font-weight: 600;
}

.video-container {
	margin-top: 60px;
	padding: 60px 0;
	background-color: #1a1a1a;
}

.video-container .section-title {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.video-container p {
	color: #fff;
	max-width: 50%;
	margin: 0 auto;
}

.video-wrapper {
	max-width: 60%;
	margin: 0 auto;
}

@media (max-width: 992px) {
	.aipc {
		background: rgb(0, 0, 0);
		background-image: linear-gradient(
				276deg,
				rgba(0, 0, 0, 0.2666316526610645) 0%,
				rgba(0, 0, 0, 0.4290966386554622) 100%
			),
			url('../../img/main/aipc.jpg');
		background-position: right center;
		background-size: cover;
		text-align: left !important;
		padding: 0;
		height: 650px;
		display: flex;
		max-width: 1920px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.video-container p {
		max-width: 90%;
	}

	.video-wrapper {
		max-width: 90%;
		margin: 0 auto;
	}
}
