.front-header {
	display: grid;
	grid-template-columns: calc(40% - 25px) 50px calc(60% - 25px); 
	grid-template-rows: 65px 10px 65px;
	margin-bottom: 50px;
}
#front-header-img {
	display: flex;
	justify-content: flex-end;
	grid-area: 1 / 1 / span 3 / span 1;
}
#front-header-img img {
	width: 140px;
}
#monash-uni {
	display: flex;
	grid-area: 1 / 3 / span 1 / span 1;
	font-size: 2.5em;
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	align-items: flex-end;
}
#phil-society {
	display: flex;
	grid-area: 3 / 3 / span 1 / span 1;
	font-size: 2.5em;
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
}
.front-header b {
	color: #2355a4;
}
#placeholder {
	width: 100%;
	height: 500px;
	background: #eaeaea;
}
.content {
	max-width: 1200px;
	text-align: left;
}
.slider {
	margin-bottom: 40px;
}
.front-navi .menu {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: calc(33% - 27px) auto calc(33% - 27px);
}
.front-navi li {
	list-style: none;
	text-align: center;
	height: 200px;
	align-self: center;
	line-height: 200px;
	background: #2256a4;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	font-size: 1.5em;
}
.front-navi li a:before {
	content: '';
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all 0.3s;
}
.front-navi li a:hover:before {
	transform: scale(1.3);
	transition: all 0.3s;
}
.front-navi li:nth-of-type(1) a:before {
	background-image: url("/wp-content/themes/phil2019/css/menu-1.png");
}
.front-navi li:nth-of-type(2) a:before {
	background-image: url("/wp-content/themes/phil2019/css/menu-3.png");
}
.front-navi li:nth-of-type(3) a:before {
	background-image: url("/wp-content/themes/phil2019/css/menu-6.png");
}
.front-navi li:nth-of-type(4) a:before {
	background-image: url("/wp-content/themes/phil2019/css/menu-4.png");
}
.front-navi li:nth-of-type(5) a:before {
	background-image: url("/wp-content/themes/phil2019/css/menu-2.png");
}
.front-navi li:nth-of-type(6) a:before {
	background-image: url("/wp-content/themes/phil2019/css/menu-5.png");
}
.front-navi a {
	color: #fff;
	text-decoration: none;
	z-index: 5;
	width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}
@media only screen and (max-width: 950px) {
	.front-header {
		grid-template-columns: 100%;
		grid-template-rows: 100px 30px auto 7px auto;
	}
	#front-header-img {
		grid-area: 1 / 1 / span 1 / span 1;
		justify-content: center;
	}
	#front-header-img svg {
		width: 100px;
		height: 100px;
	}
	#monash-uni {
		grid-area: 3 / 1 / span 1 / span 1;
	}
	#phil-society {
		grid-area: 5 / 1 / span 1 / span 1;
	}
	#monash-uni, #phil-society {
		font-size: 1.7em;
		justify-content: center;
	}
    .front-navi .menu {
	    display: grid;
	    grid-gap: 40px; 
	    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
	}
	.front-navi li {
		font-size: 1.2em;
		line-height: 160px;
		height: 160px;
	}
	section {
        margin-top: 70px;
    }
    section h2 {
    	font-size: 25px;
    }
}