.nl-platform-area {
	background-color: #000;
	padding: 10rem 0;
}
.nl-platform-area .container {
	max-width: 153rem;
}
.nl-platform-items {
	display: flex;
	gap: 1.5rem;
	margin-top: 6rem;
}
.nl-platform-item {
	width: calc(20% - 1.2rem);
	border-radius: 1rem;
	overflow: hidden;
	height: 44rem;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	padding: 2rem 1.5rem;
	transition: all .7s;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.nl-platform-item:hover {
	width: 46.4rem;
	flex-shrink: 0;
}
.nl-platform-item-title {
	font-size: 1.6rem;
	line-height: normal;
	color: #fff;
	font-weight: 600;
	padding-bottom: .9rem;
	transition: all .7s;
	position: absolute;
	bottom: 2.5rem;
	z-index: 1;
}
.nl-platform-item:hover .nl-platform-item-title {
	font-size: 3.2rem;
	bottom: 13rem;
}
.nl-platform-item-text {
	font-size: 1.2rem;
	line-height: normal;
	color: #fff;
	padding-top: .5rem;
	min-height: 11.5rem;
	position: relative;
	right: -10rem;
	opacity: 0;
	transition: right .5s, opacity .1s;
	transition-delay: .2s, 0s;
	width: 43.3rem;
	/* max-width: 43.3rem; */
	z-index: 1;
}
.nl-platform-item:hover .nl-platform-item-text {
    right: 0;
    opacity: 1;
}
.nl-platform-line {
	width: 11rem;
	height: .4rem;
	background-color: #50B848;
	transition: all .5s;
	transition-delay: .2s;
	position: relative;
	left: -100%;
	z-index: 1;
}
.nl-platform-item:hover .nl-platform-line {
    left: 0;
}
.nl-platform-item::after {
	content: '';
	width: 100%;
	background-color: rgba(0, 0, 0, .4);
	position: absolute;
	bottom: 0;
	left: 0;
	height: 17.6rem;
	filter: blur(125px);
}
@media only screen and (max-width: 1050px) {
	.nl-platform-area {
		padding-top: 20px;
		padding-bottom: 0;
	}
	.nl-platform-items {
		margin-top: 29px;
		flex-wrap: wrap;
	}
	.nl-platform-item {
		width: 100%;
		height: auto;
		padding: 50px 15px 25px;
		border-radius: 3px;
	}
	.nl-platform-item::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, .6);
	}
	.nl-platform-item-title {
		position: relative;
		bottom: 0;
		padding: 0;
		z-index: 1;
		font-size: 23px;
		padding-bottom: 4px;
	}
	.nl-platform-line {
		left: 0;
		z-index: 1;
	}
	.nl-platform-item-text {
		position: relative;
		opacity: 1;
		width: 100%;
		font-size: 14px;
		z-index: 1;
		left: 0;
		margin-top: 8px;
	}
	.nl-platform-item:hover .nl-platform-item-title {
		font-size: 23px;
		bottom: 0;
	}
	.nl-platform-item:hover {
		width: 100%;
		flex-shrink: 0;
	}
	.nl-platform-item:hover .nl-platform-item-text {
		right: inherit;
		opacity: 1;
	}
}
