.grid-container{
	grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, minmax(50px, auto));
    display:grid;
}

.red-header{
	background:radial-gradient(ellipse at center, #d34444 0%,#c61010 100%);
	grid-column: 1 / 4;
    grid-row: 1 / 2;
    color:white;
}

.headerBG{
	grid-column: 4 / 13;
	grid-row: 1 / 2;
	background: url(../images/MainImage.jpg) center no-repeat;
	background-size:cover;
}

a.logo {
    position: relative;
    width: 300px;
    height: 89px;
    margin: 0px;
    display: inline-block;
    overflow: hidden;
}

a.logo span {
    background: url(../images/HIABlogo.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    width: 300px;
    height: 89px;
    top: 0;
    left: 0;
    display: block;
    background-size:100%;
}

.intro-text{
	padding: 20px 30px 100px;
}

.logo_container{
	margin-top: 30px;
}

.exclusive{
	grid-column: 2 / 13;
	grid-row: 1 / 2;
	align-self:end;
}

.exclusiveLeft{
	grid-column: 2 / 4;
	grid-row: 1 / 2;
	align-self:end;
	justify-self: end;
	padding-right: 10px;
}

.exclusiveRight{
	grid-column: 4 / 13;
	grid-row: 1 / 2;
	align-self:end;
	padding-left: 10px;
}

.nav{
	grid-column: 4 / 13;
	grid-row: 1 / 2;
}

.nav ul {
    background: rgba(0,0,0,.2);
    padding: 0;
    list-style: none;
     margin-top: 15px;
}

.nav ul li {
    display: inline-block;
    padding: 15px 25px;
}

.nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 900;
}

.nav-icons {
	grid-column: 10 / 12;
	grid-row: 1 / 2;
	margin-top: 15px;
    justify-self: left;
}

.nav-icons ul {
    padding: 0;
}

.nav-icons ul li {
    display: inline-block;
    background: rgba(146, 148, 148, 0.6);
    margin-top: 10px;
    padding: 2px;
}

.nav-icons ul li a {
    padding: 15px 5px;
}

.nav-icons .glyphicon {
    color: white;
    font-size: 1.6em;
}