.header {
	margin-top: 28px;
	padding-bottom: 20px;
	display: none;
}

.header .row {
	margin: 0;
	border-bottom: 1px solid #595959;
}

.header h2 {
	font-size: 16px;
	color: #595959;
	display: flex;
	align-items: flex-end;
	height: 100%;
	justify-content: flex-end;
	padding-right: 15px;
	padding-bottom: 20px;
}

.header .dev {
	padding: 0;
}

.header .cta {
	padding: 0;
	display: none;
}

.header .cta h2,
.cta-mobile h2 {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
}

.header .btn,
.cta-mobile .btn {
	border: 1px solid #595959;
	padding: 20px;
	font-size: 14px;
	border-radius: 0;
	color: #595959;
	margin-bottom: 0;
	cursor: pointer;
}

.cta-mobile .btn {
	border: 1px solid #FFF;
	color: #FFF;
}

.header .btn a,
.cta-mobile .btn a {
	color: #595959;
}

.cta-mobile {
	margin-top: 1px;
	background-color: #a3a1a1;
	padding: 20px 0;
}

.cta-mobile div {
	text-align: center;
}

@media only screen and (min-width: 576px) {
	
	.header {
		border-bottom: 1px solid #595959;
		padding-bottom: 28px;
		display: block;
	}
	
	.header .row {
		margin: 0 -15px;
		border-bottom: none;
	}
	
	.header .cta {
		display: block;
	}
	
	.header h2 {
		justify-content: left;
		padding-right: 0;
		padding-bottom: 0;
	}
	
	.cta-mobile {
		display: none;
	}
}