html header {
	display: flex;
	margin: auto;
	color: white;
	min-height: 60vh;
	line-height: 1.25;
	position: relative;
	background-color: var(--d-gray);
	padding-top: 7.5rem;
	padding-bottom: 4.5rem;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	text-align: left;
	min-height: 35vh;
	padding-bottom: 1.5rem;
}
header .textwrapper label,
header .textwrapper h1,
header .textwrapper h3 {
	color: white;
}
section.first.lander {
	margin: 2rem auto;
}
.greenin {
	animation: green 1.5s ease backwards;
}
.solutions {
	display: flex;
	max-width: 1500px;
	margin: auto;
}
.solutions .holder {
	position: sticky;
	text-align: left;
	min-width: 17.5rem;
	max-width: 17.5rem;
	z-index: 15;
}
.solutions .holder .feature {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background-color: white;
	border-left: 3px solid transparent;
	transition: var(--ease);
	cursor: pointer;
}
.solutions .holder .feature .feat {
	display: none;
}
.solutions .holder .feature:last-of-type {
	margin-bottom: 0;
}
.solutions .holder .feature .subtitle {
	font-weight: 500;
	font-size: 1.1rem;
	transition: var(--ease);
}
.solutions .holder .feature .subtitle p:before {
	content: '+';
	display: inline-block;
	margin-right: 0.25rem;
}
.solutions .holder .feature:hover .subtitle {
	color: var(--green2);
}
.solutions .holder .feature.active {
	border-color: var(--green2);
	transform: translateX(0.5rem);
}
.solutions .holder .feature.active .title {
	color: var(--green2);
}
.solutions .details {
	box-sizing: border-box;
	margin: 0;
	padding-left: 1.5rem;
}
.solutions .details .highlight {
	display: flex;
	background-color: white;
	flex-wrap: nowrap;
	position: sticky;
	min-height: 55vh;
	flex-direction: column;
	align-items: center;
	top: 7.5rem;
	bottom: 2.5rem;
	width: 100%;
	overflow: hidden;
}
.solutions .details .highlight .feature-text {
	text-align: left;
	padding: 1.5rem 3rem;
}
.solutions .details .highlight .feature-text .bullet {
	font-weight: 500;
	transition: var(--ease);
}
.solutions .details .highlight .feature-text .bullet.green {
	color: var(--green2);
}
.solutions .details .highlight .feature-text .title {
	color: var(--green2);
}
.solutions .details .highlight .feature-image {
	padding: 0 1.5rem;
	box-sizing: border-box;
	width: 100%;
}
.solutions .details .highlight .feature-image img {
	width: 100%;
	margin-bottom: -3rem;
}
.solutions .details .highlight .feature-image img.nodrop {
	margin-bottom: 0;
}
.solutions .details .highlight .feature-image img.drop {
	width: 70%;
	margin-bottom: -12.5rem;
}
.solutions .details .highlight .feature-image img.spam {
	width: 35%;
}
section article.explore-industry {
	padding: 0 5rem 2rem;
}
section article.explore-industry button {
	margin: 0.25rem 1rem;
}

@keyframes green {
	0% {
		color: var(--green2);
	}
	50% {
		color: var(--green2);
	}
}

@media screen and (max-width: 1020px), screen and (max-device-width: 1020px) {
	.solutions .details .highlight .feature-image {
		padding: 0 0.5rem;
	}
}

@media screen and (max-width: 750px), screen and (max-device-width: 750px) {
	header {
		padding-bottom: 3rem;
	}

	.solutions .holder .feature > .subtitle {
		display: none;
	}

	.solutions .holder .feature .feat {
		display: block;
		font-size: 1.1rem;
		line-height: 1.5rem;
		margin: 1rem auto;
		margin-bottom: 1.5rem;
	}

	.solutions .holder .feature .feat .bullet {
		font-weight: 500;
		transition: var(--ease);
	}

	.solutions .holder .feature .feat.img img {
		width: 100%;
	}

	.solutions .details {
		display: none;
	}

	.solutions .holder {
		width: 100%;
		max-width: 100%;
	}

	.solutions .holder .feature .title,
	.solutions .holder .feature.active .title {
		color: var(--green1);
	}

	.solutions .holder .feature.active {
		border-color: transparent;
		transform: none;
	}
}
