.banner_box {
	width: 100%;
	height: auto;
	margin: 20px auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	border-bottom: 1px solid #D8D8D8;
	background-color: #F9F9F9;
}

.b_inner-box {
	width: 44%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px 2%;
}

.b-title {
	width: 100%;
	border-bottom: 1px solid #D8D8D8;
	line-height: 2;
	font-size: 20px;
}

.b-left-box {
	width: 52%;
}

.bg {
	position: absolute;
	inset: -200px;
	width: calc(35% + 200px);
	height: calc(100% + 400px);
	background-repeat: repeat;
	background-size: 100px 100px;
	background-position: center;
	border-radius: var(--border-raduis);
	--filter-params: blur(100px) saturate(4) opacity(0.8);
	--transform-scale: scale(1.5);
	filter: var(--filter-params);
	transform: var(--transform-scale) translate3d(0, 0, 0);
}

.b-center-box {
	width: 48%;
}

.b-right-box {
	width: 48%;
}

.bf-box {
	width: 100%;
	height: 522px;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
	border-radius: 10px 0 0 10px;
}

.bf-box::after {
	content: "";
	position: absolute;
	inset: 0px;
	width: 100%;
	background-image: radial-gradient(circle farthest-side at 100% 50%, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}



.bf-text {
	position: absolute;
	top: 40%;
	left: 5%;
	width: 200px;
	color: #fff;
	z-index: 20;
}


.bf-text p:nth-of-type(1) {
	font-size: 18px;

	line-height: 1.5;
}

.bf-text p:nth-of-type(2) {
	font-size: 14px;
	margin-top: 10px;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.bf-text p:nth-of-type(3) {
	font-size: 14px;
	margin-top: 10px;
	line-height: 1.5;

}

.play_btn {
	width: auto;
	font-size: 17px;
	padding: 0px 20px;
	color: #fff;
	line-height: 40px;
	border-radius: 5px;
	text-align: center;
	background-color: #005FB8;
	margin-top: 20px;
}

.bn-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	margin-bottom: 25px;
	border-radius: 5px;
	transition: all 0.3s linear;
}

.b-center-box .bn-box:nth-of-type(1) {
	background-color: #fff;
}

.bn-box:hover {
	transform: translateY(-10px);
	background-color: #fff;
}

.bn-box img {
	width: 60px;
	height: 60px;
	border-radius: 7px;

}


.bn-text {
	width: 60%;
	height: auto;
	padding: 5px 0;
	line-height: 1.5;

}

.bn-text p,
.br-text p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.bn-text p:nth-of-type(1) {
	font-size: 15px;
	color: #000;
	margin-bottom: 5px;
	-webkit-line-clamp: 1;
}

.bn-text p:nth-of-type(2) {
	font-size: 12px;
	text-transform: capitalize;
	-webkit-line-clamp: 1;
	color: #000;

}

.b_free {
	font-size: 12px;
	color: hsl(240 3.7% 15.9%);
	border-radius: 10px;
	padding: 2px 8px 3px;
	background-color: hsl(240 4.8% 95.9%);
}

.br-box {
	width: 100%;
	height: auto;
	margin-bottom: 25px;
}

.br-box img {
	width: 100%;
	height: 160px;

}

.br-text {
	width: 100%;
}

.br-text p:nth-of-type(1) {
	color: #2E874D;
	font-size: 15px;
	font-weight: 600;
	margin: 5px 0;
	text-transform: capitalize;

}

.br-text p:nth-of-type(2) {
	font-size: 15px;
	color: #000;
	margin-bottom: 5px;
	-webkit-line-clamp: 1;
}

.br-text p:nth-of-type(3) {
	font-size: 12px;
	color: #000;
	-webkit-line-clamp: 1;
}


@media(max-width:760px) {

	.banner_box {
		width: 95%;
	}

	.b-left-box,
	.b-center-box,
	.b-right-box {
		width: 100%;
	}

	.b_inner-box {
		width: 96%;
		padding: 5px 2%;
		box-sizing: border-box;
	}

	.bf-box {
		height: 280px;
		border-radius: 10px;
	}

	.bf-text {
		width: 100%;
	}

	.bf-box img,
	.br-box img {
		width: 100%;
		height: 200px;
		border-radius: 5px;
	}

	.bf-box {
		margin-bottom: 20px;
	}

	.b-title {
		font-size: 25px;
	}

	.play_btn {
		width: 28%;
		font-size: 15px;
		color: #fff;
		line-height: 36px;
	}

	.bf_text_info p:nth-of-type(3) {
		-webkit-line-clamp: 1;
	}
}

@media(min-width:760px) {
	.b-title {
		width: 100%;
		margin: 0 auto 10px;
		text-align: left;
		line-height: 2;
		font-size: 20px;

	}

}