.newCustomRows .row h2, 
.newCustomRows .row h3, 
.newCustomRows .row h4, 
.newCustomRows .row h5 {
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.2rem;
}

.newCustomRows .row .image {
	margin-bottom: 20px;
}

.newCustomRows .row:not(:last-of-type) {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #e2e2e2;
}

.newAwardsRow .row {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #e2e2e2;

	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #e2e2e2;
}

.theTeamRow .container {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #e2e2e2;
}

.teamGrid {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.teamGrid .image {
	margin-bottom: 10px;
	overflow: hidden;
}

.teamGrid .image img {
	filter: grayscale(1);
	transition: all ease 0.3s;
}

.teamGrid .image:hover img {
	transform: scale(1.1);
	
}

.teamIntro {
	text-align: center;
	margin-bottom: 50px;
}

.teamIntro p {
	font-size: 1.2rem;
}

.teamIntro h2 {
	margin-bottom: 20px;
	font-size: 1.4rem;
}

@media (min-width: 600px){
	.teamGrid {
		display: grid;
		grid-gap: 20px;
		
	}

	.teamIntro p {
		font-size: 1.4rem;
	}
}

@media (min-width: 960px){
	.newCustomRows .row {
		display: flex;
		justify-content: space-between;
		
	}
	.newCustomRows .row:not(:last-of-type) {
		margin-bottom: 100px;
		padding-bottom: 100px;
		border-bottom: 1px solid #e2e2e2;
	}

	.newAwardsRow .row {
		margin-top: 100px;
		padding-top: 100px;
		border-top: 1px solid #e2e2e2;
		margin-bottom: 100px;
		padding-bottom: 100px;
		border-bottom: 1px solid #e2e2e2;
	}

	.newCustomRows .row .image {
		width: 55%;
	}

	.newCustomRows .row .image.awardArea {
		width: 60%;
	}

	.newCustomRows .row .text {
		width: 35%;
	}

	.newCustomRows .row:nth-of-type(2n) .text {
		order: 1;
	}
	.newCustomRows .row:nth-of-type(2n) .image {
		order: 2;
	}

	.newCustomRows .row.alt .text {
		order: 1;
	}
	.newCustomRows .row.alt .image {
		order: 2;
	}

	.awardArea {
		column-count: 2;
		column-gap: 30px;
	}
	.awardArea .award {
		padding-left: 0px;
		position: relative;
		margin-bottom: 10px;
		height: auto;
	}
	.awardArea .award:nth-of-type(2n) {
		
	}
	.awardArea .award:before {
		 content: "_ ";
		left: -14px;
		position: absolute;
		top: 0px;

	}
	.teamGrid {
		display: grid;
		grid-gap: 20px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}

	.theTeamRow .container {
		margin-top: 100px;
		padding-top: 100px;
		border-top: 1px solid #e2e2e2;
	}

	.careersBit {
		margin-bottom: 80px;
	}
	
}