body {
	background-color: transparent;
	background-image: linear-gradient(180deg, #3279FF66 0%, #fff 13%);
}

.banner {
	width: 66%;
	height: auto;
	padding: 40px 17%;
	filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
	background-color: #FFFFFF00;
	background-image: url(../images/banner.webp);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 46%;
	opacity: 1;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.b_wrapper {
	width: 48%;
	display: none;
	height: 500px;
	object-fit: cover;

}

.web_text {
	position: relative;
	width: 50%;
	height: auto;

	box-sizing: border-box;
}

.web_text h1 {
	font-size: 28px;
	line-height: 1.5;
	text-transform: capitalize;
}

.web_box {
	width: 100%;
	height: auto;
	padding: 20px 0 30px;

}

.web_inner_box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}

.web_inner_box img {
	width: 10%;
	/* height: 60px; */
	border-radius: 10px;
	box-shadow: 0 0.14px 2.29266px rgb(0 0 0 / 3%), 0 0.37px 4.42626px rgb(0 0 0 / 5%), 0 3px 7px rgb(0 0 0 / 9%);
	margin-right: 10px;
}

.web_inner_text {
	width: 70%;
}

.web_inner_text p:nth-of-type(1) {
	font-size: 16px;
	line-height: 1.5;
	color: #000;

}

.web_inner_text p:nth-of-type(2) {
	font-size: 13px;
	margin: 5px 0;
	color: rgb(96, 94, 92);
	;
}

.web_inner_text p:nth-of-type(3) {
	font-size: 13px;
	color: #2B5FDE;
	text-decoration: cadetblue;
}

@media(max-width:760px) {
	.banner {
		width: 96%;
		padding: 20px 2%;
		flex-wrap: wrap;
		background-image: none;
	}
	.b_wrapper{
		display: block;
	}
	.web_text {
		width: 100%;
		margin: auto;
		padding: 10px;
	}

	.web_text h1 {
		font-size: 18px;
	}

	.web_inner_box img {
		width: 23%;
		/* height: 70px; */
	}

	.web_inner_text {
		width: 70%;
	}

	.web_inner_text p:nth-of-type(1) {
		font-size: 14px;
	}

	.web_inner_text p:nth-of-type(2) {
		font-size: 13px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.web_inner_text p:nth-of-type(3) {
		font-size: 12px;
	}

	.b_wrapper {
		width: 100%;
		display: block;
		height: 230px;
	}
}