.marquee_posts {
	display: flex;
	white-space: nowrap;
	border-radius: 10px;
	overflow: hidden;
	line-height: 1;
	font-weight: 400;
	margin: 1.5rem 0;
	z-index: 0;
}
.swiper-wrapper {
    transition-timing-function: linear !important;
}
.marquee_posts_title {
	background-color: var(--blue-color);
	padding: 0.75rem;
	color: var(--white-color);
	text-transform: uppercase;
	z-index: 1000;
	position: relative;
}

.marquee_posts_title::after {
	content: '';
	background-color: var(--blue-color);
	position: absolute;
	right: -21px;
	top: 0;
	transform: rotate(45deg);
	border-radius: 10px;
	height: 44px;
	width: 44px;
	display: block;
}
.marquee_posts_title p {
	position: inherit;
	z-index: 100;
}

.marquee_posts_content {
	padding: 0.75rem !important;
	gap: 2rem;
	background-color: #F5F5F5;
}

.marquee_posts_content .swiper-slide, .marquee_posts_content p {
	width: max-content !important;
}

@media all and (max-width:964px) {
	.marquee_posts {
		display: none !important;
	}
}