<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.info-wrapper{
	padding: 1vw 6vw;
}

.info-wrapper h2{
	font-size: 33px;
	font-weight: bold;
	color: #4186ba;
	padding: 2vw 0px;
	text-align: center;
}

.info-wrapper h2:before{
	content: "";
	display: block;
	width: 8em;
	max-width: 100%;
	border-bottom: 1px solid #4186ba;
	margin: 0em auto 0.1em;
}

.info-wrapper h2:after{
	content: "";
	display: block;
	width: 8em;
	max-width: 100%;
	border-bottom: 1px solid #4186ba;
	margin: 0.1em auto 0em;
}

.info-wrapper p{
	margin-top: 15px;
}

.industry-wrapper{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

.industry-wrapper p {
	grid-column: span 4;
	justify-items: center;
	display: grid;
	text-align: center;
}

.outerBlue{
	border: 10px solid #3e94ce;
	border-radius: 15px;
	margin-bottom: 10px;
}

.outerOrange{
	border: 10px solid #f5943e;
	border-radius: 15px;
	margin-bottom: 10px;
}

/*Tablet*/
@media (max-width: 960px){
	.industry-wrapper p {
		grid-column: span 6;
	}
}

/* Mobile */
@media all and (max-width: 530px) {
	.industry-wrapper p {
		grid-column: span 12;
	}
}
</pre></body></html>