* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
	padding: 10px 10%;
}
.nav-item {
	color: #7A7A7A;
	font-family: "Roboto", Sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1.2px;
	line-height: 20px;
	transition: .4s;
	align-items: center;
    display: flex;
	box-shadow: none;
  	text-decoration: none;
}

.nav-item-footer {
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	background-color: rgba(0,0,0,0);
	
}

.logo {
    height: 100px;
    margin-right: 20px;
}

.nav {
    background: #005ea8;
    padding: 12px;
    text-align: center;
}

.nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

.hero {
    width: 100%;
	
    
    max-height: 400px;
	background-image: url("../images/header.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
    padding: 10% 0% 15% 10%;
	color:#fff;
}

.content {
    padding: 40px 10%;
}

.content.light {
    background: #f9f9f9;
}

.content h2 {
    margin-bottom: 20px;
    color: #005ea8;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: top;
}

.content-grid img {
    width: 100%;
    border-radius: 5px;
}

ul {
    margin-top: 10px;
    padding-left: 20px;
}

.footer {
    background: #222;
    color: #54595F;
    text-align: left;
    padding: 50px 25% 0 25%;
}
.addressitem {
	color: #80292f;
	border: 1px solid #555;
	border-radius: 2px;
	padding: 10px;
	font-size:12pt;
}
.addressitemtext {
		padding-left: 10px;
		color:#54595F;
		line-height:12pt;
		font-size:10pt;
}
/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }
	.footer {
		background: #222;
		color: #54595F;
		text-align: left;
		padding: 50px 10% 0 10%;
	}
}
