#major-sponsors {
	background: #eaeaea;
	text-align: center;
	padding: 20px 0;
}
footer {
	display: grid;
	grid-template-columns: 50px 250px 150px 200px 150px auto 50px;
	grid-template-rows: 35px 40px 90px 50px;
	background: #2256a4;
}
footer h3 {
	display: flex;
	grid-area: 2 / 2 / span 1 / span 1;
	align-self: end;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
}
#blurb {
	display: flex;
	grid-area: 3 / 2 / span 1 / span 1;
	align-self: start;
	margin-top: 10px;
	color: #fff;
	font-size: 0.85em;
}
#footer-links {
	display: flex;
	grid-area: 2 / 4 / span 2 / span 1;
	align-self: center;
}
#footer-links li {
	list-style: none;
}
#footer-links a {
	text-decoration: none;
	font-weight: bold;
	color: #000;
}
#social {
	display: flex;
	grid-area: 2 / 6 / span 1 / span 1;
	justify-content: flex-end;
	align-self: end;
}
#social svg {
	margin-left: 20px;
}
.searchbox {
	display: flex;
	grid-area: 3 / 6 / span 1 / span 1;
	justify-content: flex-end;
	align-self: end;
}
.searchbox label {
	display: none;
}
.searchbox input[type=submit] {
	box-shadow: none;
	border-radius: 0;
	padding: 10px 20px;
	background: #418ad1;
	font-weight: bold;
	border: none;
	float: left;
	cursor: pointer;
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
}
.searchbox input[type=text] {
	border: none;
    padding: 3px 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #666;
    height: 28px;
    width: 200px;
}
#copyright {
	background: #000;
	color: #fff;
	font-size: 0.8em;
	padding: 15px 50px;
	text-align: center;
}
#copyright a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
@media only screen and (max-width: 1100px) {
  footer {
    grid-template-columns: 50px 250px 50px 200px 50px auto 50px;
  }
  #footer-links {
  	display: none;
  }
}
@media only screen and (max-width: 950px) {
  #major-sponsors {
  	display: none;
  }
  footer {
    grid-template-columns: 50px auto 50px;
    grid-template-rows: 20px auto 20px;
  }
  footer h3 {
  	display: none;
  }
  #blurb {
  	display: none;
  }
  .searchbox {
  	display: none;
  }
  #social {
  	grid-area: 2 / 2 / span 1 / span 1;
  	justify-content: center;
  }
}