<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.key-industries {
	h2, p {
		text-align: center;
	}
}

.key-industries__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1em;
	flex-direction: column;
	justify-content: center;
}

.key-industries__item {
	display: flex;
	justify-content: stretch;
  align-items: stretch;
	flex-direction: column;
	padding: 0;
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	&amp; img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: scale(1);
		transition: transform 0.2s ease-in-out;
		transform-origin: center center;
	}
	&amp;::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background: var(--gradient-branded);
		mix-blend-mode: multiply;
		opacity: 0.5;
		position: absolute;
		inset: 0;
		z-index: 1;
	}
	&amp;:hover {
		&amp; img {
			transform: scale(1.05);
		}
		/* &amp; .key-industries__name {
			span::after {
				transform: translateX(0.05em);
			}
		} */
	}
}

.key-industries__item-content {
	position: absolute;
	width: 100%;
	inset: 0;
	padding: 0.5em;
	z-index: 2;
	display: flex;
  flex-direction: column;
  justify-content: center;
	align-items: center;
	gap: 1em;
	&amp; a.button {
		position: static;
		font-size: 1rem;
		flex: 0 0 auto;
	}
}
.key-industries__name {
	font-family: var(--font-cond);
	font-weight: normal;
	font-size: 37px;
	color: white;
	text-align: center;
	line-height: 1;
	&amp; span {
    text-align: center;
		/* &amp;::after {
			content: '';
			display: inline-block;
			width: 11.11px;
			height: 27.24px;
			flex: 1 0 11.11px;
			margin-inline-start: 0.25em;
			background-size: contain;
			background-repeat: no-repeat;
			transform: translateX(0);
			transition: transform 0.2s ease-in-out;
			background-image: url('data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%227px%22%20height%3D%2216.8px%22%20viewBox%3D%220%200%207%2016.8%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%207%2016.8%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFFFFF%22%20points%3D%227%2C8.4%202%2C0%200%2C3.3%202.9%2C8.4%200%2C13.5%202%2C16.8%20%22%2F%3E%3C%2Fsvg%3E');
		} */
	}
}
.key-industries__link {
	display: block;
	/* width: 100%; */
	/* height: 100%; */
	&amp;::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		inset: 0;
	}
}

.key-industries__cta {
	text-align: center;
	margin-block: 2em;
	width: 100%;
	display: flex;
	justify-content: center;
}


@media (min-width: 641px) {
	.key-industries__list {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1025px) {
	.key-industries__item {
		&amp; span {
			font-size: 53px;
			&amp;::after {
				position: relative;
				top: -0.0666em;
			}
		}
	}
}</pre></body></html>