.nl-solutions-area {
	background-color: #000;
	padding: 9rem 0 14rem 0;
	display: flex;
	justify-content: center;
}
.nl-solutions-area .container {
	max-width: 153rem;
}
.nl-solutions-inner-warp {
	width: calc(100% - 10rem);
	padding: 7rem 0;
	min-width: 158rem;
	max-width: 100%;
	background-color: #0D1012;
}
.nl-solutions-items {
	margin-top: 5rem;
	display: flex;
	gap: 1.5rem;
}
.nl-solutions-item, .nlsi-starlink {
	width: calc(20% - 1.2rem);
	height: 38.9rem;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}
.nl-solutions-item {
	background-repeat: no-repeat;
	background-size: 105%;
	background-position: center;
}
.nl-solutions-item::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.20);
	position: absolute;
	top: 0;
	left: 0;
	transition: all .7s;
}
.nl-solutions-item:hover::after {
	background: rgba(0, 0, 0, 0.70);
}
.nl-solutions-item-inner {
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
}
.nlsi-title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	text-align: center;
	color: #78C370;
	width: 23rem;
	max-width: 100%;
	transform: scale(1.3);
	transition: transform .7s, opacity 0s;
	opacity: 0;
}
.nl-solutions-item:hover .nlsi-title {
	transform: scale(1);
	opacity: 1;
}
.nlsi {
	opacity: 0;
	transition: all .7s;
}
.nl-solutions-item:hover .nlsi {
	opacity: 1;
}
.nlsi ul {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	align-items: center;
}
.nlsi ul li {
	width: 15.2rem;
	height: 3rem;
	border-radius: .2rem;
	background-color: rgba(255, 255, 255, 0.20);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: width .7s, background-color .3s;
}
.nlsi ul li:hover {
	background-color: #78C370;
}
.nl-solutions-item:hover .nlsi ul li {
	width: 18.2rem;
}
.nlsi ul li {
	font-size: 1.2rem;
	line-height: normal;
	color: #fff;
	font-weight: 600;
	transition: all .4s;
}
.nlsi-name {
	width: 100%;
	height: 4.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .7s;
	position: relative;
}
.nlsi-name span {
	font-size: 2rem;
	line-height: normal;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	transform: scale(1);
	transition: all .7s;
}
.nl-solutions-item:hover .nlsi-name span {
	transform: scale(1.15);
}
.nlsi-name::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(120, 195, 112, 0.00) 0%, rgba(90, 147, 84, 0.16) 47.12%, rgba(57, 93, 53, 0.00) 100%);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .7s;
}
.nl-solutions-item:hover .nlsi-name::after {
    opacity: 1;
}
.nlsi-starlink-front {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 105%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.nlsi-starlink:hover .nlsi-name::after {
    opacity: 1;
}
.nlsi-starlink:hover .nlsi-name span {
	transform: scale(1.15);
}
.nlsi-starlink-back {
	width: 100%;
	height: 100%;
	position: relative;
}
.nlsi-starlink-back video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.nlsi-starlink:hover .nlsi-starlink-front {
	background-image: none !important;
}
@media only screen and (max-width: 1050px) {
	.nl-solutions-area {
		padding-top: 87px;
		padding-bottom: 94px;
	}
	.nl-solutions-inner-warp {
		width: 100%;
		min-width: auto;
	}
	.nl-solutions-items {
		margin-top: 40px;
		flex-wrap: wrap;
	}
	.nl-solutions-item, .nlsi-starlink {
		width: 100%;
		height: auto;
		border-radius: 5px;
	}
	.nlsi-title {
		transform: scale(1);
		opacity: 1;
	}
	.nlsi {
		opacity: 1;
		margin-top: 19px;
	}
	.nlsi-name::after {
		opacity: 1;
	}
	.nlsi-name {
		margin-top: 25px;
	}
	.nlsi-starlink-front {
		background-image: none !important;
	}
	.nl-solutions-item::after {
		background: rgba(0, 0, 0, 0.70);
	}
}