body {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.header {
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1270px;
	width: 100%;
	height: auto;
	align-items: center;
	flex-direction: column;
}



.logo {
	flex-basis: 145px;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo img {
	height: auto !important;
	max-width: 100%;
	width: 145px;
	padding-top: 5px;
}

.header-right {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin: 6px 0;
}

.subnavigation-container {
    background: #074c91;
    width: 100%;
    height: 5px;
}

.servicenavigation {
	text-align: center;
	margin: 15px 0;
}

.servicenavigation a {
	color: #666; 
	font-size: 12px; 
	text-transform: uppercase;
	text-decoration: none;
}

.mainnavigation ul li a {
	text-transform: uppercase;
    font-size: 18px;
    color: #666;
    font-weight: normal;
    text-decoration: none;
}

.servicenavigation a:hover,
.mainnavigation a:hover {
	color: #074c91;
} 

@media screen and (min-width: 425px) {

	.header {
		height: 100px;
		flex-direction: row;
		align-items: inherit;
	}

	.servicenavigation {
		text-align: right;
		margin: 0;
	}

}

@media screen and (min-width: 1024px) {

	.header {
		padding: 0 20px;
	}
}