.banner {
	width: 96%;
	height: 270px;
	display: flex;
	margin: auto;
	/* justify-content: space-between; */
	flex-wrap: wrap;
	flex-direction: column;
}

.b-title {
	font-size: 20px;
	line-height: 45px;
	font-weight: 800;
	text-transform: uppercase;
	color: #21B156;
	margin: 20px 0 0 2%;
}

.b-box {
	width: 15%;
	height: 120px;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 2px solid transparent;
	position: relative;
	display: block;
	overflow: hidden;
	box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, .3);
}

.b-box:hover {
	border-color: #21B156;
}

.b-box img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.b-box:nth-of-type(1),
.b-box:nth-of-type(6) {
	width: 18%;
	height: 250px;
}

.b-text {
	width: 96%;
	padding: 15px 2%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
}

@media (max-width:1000px) {
	.banner {
		height: auto;
		flex-direction: row;
		width: 98%;
		padding: 0 1%;
		justify-content: space-between;
		align-items: center;
	}

	.b-box {
		width: 47%;
		height: 120px;
		margin-bottom: 10px;
		border-radius: 5px;
		border: 2px solid transparent;
		position: relative;
		display: block;
		overflow: hidden;
	}

	.b-box:nth-of-type(1),
	.b-box:nth-of-type(6) {
		width: 100%;
		height: 180px;
	}
}