.turnaround > h2 {
	text-transform: uppercase;
	letter-spacing: 5px;
	text-align: center;
}

.turnaround-pill {
	display: block;
	position: relative;
	
	height: 12rem;
	
	margin: auto;
	padding: 10px;
}

.inner {
	display: block;
	position: relative;
	
	box-sizing: border-box;
	
	height: 100%;
	
	float: left;
	box-shadow: inset 0 5px 20px rgba(0,0,0,0.5), inset 0 -5px 20px rgba(0,0,0,0.5);
}

	.inner::after {
		content: '';
		display: block;
		position: absolute;
		
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		
		background-image: linear-gradient(-45deg, rgba(255, 255, 255, .1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%, transparent 75%, transparent);
		
		z-index: 1;
		background-size: 50px 50px;
		
		overflow: hidden;
	}
	
	.inner > h2 {
		text-align: center;
		text-transform: uppercase;
		font-weight: 600;
		margin: 0;
		margin-bottom: 5px;
		border-bottom: 1px solid white;
		color: #fff;
		letter-spacing: 3px;
	}
	
	.inner > p {
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 5px;
		font-size: 1.25rem;
		color: #fff;
		
		margin: 0;
		margin-top: 5px;
	}

#production {
	width: 40%;
	
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	
	background-color: rgb(255, 0, 0);
	background-image: linear-gradient(to bottom, rgb(255,0,0,) 40%, rgb(191,0,0));
	
	border-right: 5px solid white;
}

#shipping {
	width: 60%;
	
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	
	background-color: rgb(51,51,51);
	background-image: linear-gradient(to bottom, rgb(122,122,122), 40%, rgb(51,51,51));
}