.font-bold {
	font-weight: 700;
}

.font-extrabold {
	font-weight: 800;
}

.slider-wrapper.brand-slide {
	width: 572px;
	height: 73px;
	overflow: hidden;
	position: relative;
}

.brand-slide .slider-track {
	display: flex;
	width: max-content;
	animation: scrollLeft 20s linear infinite;
}

.brand-slide .slider-image {
	width: 518px;
	height: 73px;
	object-fit: cover;
	flex-shrink: 0;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-1036px);
		/* 518 x 2 */;
	}
}

/* Brand Slider End */
/* dropdown */
.product-choose.dropdown-container {
	position: relative;
	width: auto;
}

.product-choose .dropdown-btn {
	width: 100%;
	background-color: white;
	border: 1px solid #d1d5db;
	padding: 18px 40px 18px 14px;
	border-radius: 12px;
	text-align: left;
	cursor: pointer;
	transition: border 0.2s ease;
	position: relative;
}

.product-choose .dropdown-btn:focus {
	outline: none;
	border-color: #3b82f6;
}

.product-choose .dropdown-btn svg {
	position: absolute;
	right: 48%;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.product-choose .dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 180px;
	overflow-y: auto;
	background-color: white;
	border: 1px solid #d1d5db;
	border-top: none;
	z-index: 50;
	border-radius: 0 0 6px 6px;
	scroll-behavior: smooth;
}

.product-choose .dropdown-item {
	padding: 10px 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.product-choose .dropdown-item:hover {
	background-color: #f3f4f6;
}

.hidden {
	display: none;
}

.bg-partition {
	background: #FAF2DC;
	background: linear-gradient(90deg, rgba(250, 242, 220, 1) 0%, rgba(250, 242, 220, 1) 0%, rgba(247, 243, 232, 1) 100%, rgba(246, 245, 244, 1) 100%);
	padding: 12px 0px;
	border: 1px solid #dad4c6;
}

/* CArousel */
/* ====== Layout & Theme ====== */
.op-section {
	padding: 1.5rem 0rem;
}

.op-card {
	padding: 2px;
}

.op-head h2 {
	letter-spacing: -0.02em;
	font-size: 2rem;
	margin: 0;
}

.op-head {
	margin-bottom: 20px;
}

.op-sub {
	color: #475569;
	margin-top: 0px;
}

.op-viewport {
	position: relative;
	overflow: hidden;
	margin-top: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.op-track {
	display: flex;
	gap: 1rem;
	will-change: transform;
	transition: transform 0.3s ease;
}

.op-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	min-width: 180px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .06);
	box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
	transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.op-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
}

.op-logo {
	height: 50px;
	width: auto;
	display: block;
}

.banner-property {
	background-image: url(https://img.indiafilings.com/us/images/usa-company-filings.webp);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 45px 15px;
}

/* Fade edges */
.op-viewport::before,
.op-viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 32px;
	z-index: 2;
	pointer-events: none;
}

.op-viewport::before {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}

.op-viewport::after {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

/* Dots */
.op-dots {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 1rem;
	display: none;
}

.op-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.op-dot.is-active {
	width: 9px;
	background: #d40808;
}

/* ---------------- Media Queries ---------------- */
@media (max-width: 768px) {
	.op-item {
		width: 120px;
		height: 80px;
	}

	.op-logo {
		height: 35px;
	}

	.mobile-hidden {
		display: none;
	}

	.mobile-block {
		display: block;
	}

	.mobile-padding-2 {
		padding: 10px;
	}

	.banner-property {
		padding: 20px 10px;
	}
}

@media (max-width: 768px) {
	.op-item {
		width: 100%;
		min-width: 100%;
		height: 80px;
	}

	.op-logo {
		height: 40px;
	}
}