/* Позиционирование ==============================================================*/
.body-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.no-scroll {
	overflow: hidden;
}

.main-index-container {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	/* padding-bottom: 40px; */
}

/* Основная обёртка ==============================================================*/
.product-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 20px 40px 20px;
}

.product-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}



.content-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 40px 0px;
}

.content-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.content-text-id h1 {
	color: white;
	padding: 20px 0px 40px 0px;
	font-weight: 700;
}

.product-card {
	background-color: #2a2a2a;
	border-radius: 0.375rem;
	overflow: hidden;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	-webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	-o-transition: transform 0.3s ease, box-shadow 0.3s ease;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transition: transform 0.3s ease, box-shadow 0.3s ease,
		-webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	text-decoration: none;
	color: inherit;
	flex: 0 0 32%;
}

.product-card:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.product-card-body {
	padding: 1rem;
}

.product-title {
	text-align: center;
	margin-bottom: 0.5rem;
	font-size: 16px; 
	font-weight: 700;
	color: white;
}

@media (max-width: 1050px) and (min-width: 772px) {
	.product-card {
		flex: 0 0 45%;
	}
}

@media (max-width: 771px) {
	.product-card {
		flex: 0 0 90%;
	}
}

@media (max-width: 500px) {
	.product-card {
		flex: 0 0 100%;
	}
}

@media (max-width: 1050px) {
	.content-wrapper {
		padding: 20px 0px;	
	}
}
