.about-tab2 {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	margin-top: 30px;
}

.news-article-new-sec:hover {
	box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
}

.pagination-content {
	margin-bottom: 20px;
}

.line1212 {
	border-top: 2px solid #007bff;
	margin-top: 10px;
}

.top_line {
	border-top: 2px solid #007bff;
	margin-top: 20px;
}

.pagination {
	justify-content: center;
	margin-top: 20px;
}

.page-link {
	color: #007bff;
}

.page-link:hover {
	text-decoration: none;
	background-color: #007bff;
	color: #fff;
}

.arrow-icon-1 {
	font-weight: bold;
}

article {
	background-color: #ffffff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.bg-dark-radial {
	position: relative;
	background: radial-gradient(ellipse at center, #2b2b2b 0%, #040f28 100%);
	height: 100%;
}

/* Market Css */
.product-card {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
	margin-bottom: 10px;
	background-color: #fff;
	width: 100%;
}

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

.product-card img {
	object-fit: fit;
	max-height: 300px;
	width: 100%;
}

.card-body {
	display: flex;
	flex-direction: column;
/* 	align-items: flex-center; */
}

.form-control-small {
	width: 50px;
}

.btn-add-to-cart {
	margin-top: auto;
	width: 100%;
}

/* Adjust the alignment for the layout */
.card-details {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 20px;
}

.product-details {
	flex: 1;
}

.quantity-details {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.about-tab2 {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	margin-top: 30px;
	text-align: fit;
}

.news-article-new-sec {
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	transition: box-shadow 0.3s;
	color: inherit;
}

.news-article-new-sec:hover {
	box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
}

.pagination-content {
	margin-bottom: 20px;
}

.line1212 {
	border-top: 2px solid #007bff;
	margin-top: 10px;
}

.top_line {
	border-top: 2px solid #007bff;
	margin-top: 20px;
}

.pagination {
	justify-content: center;
}

.page-link {
	color: rgb(255, 0, 0);
}

.page-link:hover {
	text-decoration: none;
}

.arrow-icon-1 {
	font-weight: bold;
}

.slide-container {
	overflow: hidden;
	position: sticky;
}

.slide-content {
	display: flex;
	animation: slide 18s linear infinite;
	/* Adjust the duration as needed */
}

.slide-item {
	padding: 5px;
	text-align: left;
	margin-right: 5px;
	flex-shrink: 0;
	color: #ff8000;
	font-size: 18px;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}