.banner {
	width: 100%;
	margin: 20px auto;
	/* display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap; */
	position: relative;

}

.banner-img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-position: bottom;
}

.b_title {
	margin: 40px auto;
	text-align: center;
	position: relative;
	z-index: 10;
	text-align: center;

}

.b_title h1 {
	color: #220d4e;
	font-size: 45px;
	line-height: 1.5;
}

.b_title h2 {
	color: #79718b;
	font-size: 25px;
	line-height: 1.5;
	font-weight: 400;
}

.banner_inner {
	display: flex;
	width: 80%;
	height: 570px;
	justify-content: space-between;
	flex-direction: column;
	flex-wrap: wrap;
	margin: auto;
	position: relative;
}

.b-box {
	width: 21.5%;
	height: 280px;
	border-radius: 10px;
	box-shadow: 0 3.2px 7.2px rgba(0, 0, 0, .133), 0 .6px 1.8px rgba(0, 0, 0, .11);
	position: relative;
	overflow: hidden;
}

.b-box img {
	width: 100%;
	height: 100%;
	display: block;
}

.b-text {
	position: absolute;
	bottom: 0;
	width: 96%;
	padding: 20px 2% 10px;
	left: 0;
	background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .95))
}

.b-text p {
	width: 70%;
	line-height: 1.5;
	color: #fff;

}

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

}

.b-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;
}

.b-text::after {
	content: "Get";
	position: absolute;
	right: 10px;
	bottom: 10px;
	filter: drop-shadow(rgba(255, 255, 255, 0.8) 0px 0px 6px);
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 15px;
	padding: 5px 25px;
	color: #000;
	font-size: 12px;

}

.b-box:nth-of-type(1) {
	width: 55%;
	height: 100%;
}

.b-box:nth-of-type(2) {
	width: 43%;
	height: 280px;
}

.b-box:nth-of-type(4) {
	position: absolute;

	bottom: 0;
	right: 0;
}

@media (max-width: 768px) {
	.banner {
		width: 100%;
		height: auto;
		margin: 0px auto 20px;
		padding-top: 10px;
		display: block;
	}

	.b_title {
		margin: 40px auto 10px;
	}

	.b_title h1 {
		font-size: 25px;
	}

	.b_title h2 {
		font-size: 16px;
		text-align: center;
	}

	.banner_inner {
		width: 96%;
		height: auto;
		flex-direction: row;
	}

	.b-box {
		width: 48%;
		height: 150px;
	}

	.b-box:nth-of-type(1),
	.b-box:nth-of-type(2) {
		width: 100%;
		height: 200px;
		margin-bottom: 20px;
	}

	.b-text p:nth-of-type(1) {
		font-size: 15px;
	}

	.b-text p {
		width: 62%;
	}

	.b-text::after {
		right: 4px;
		bottom: 5px;
		padding: 0px 17px;
	}
}