html {height:auto;}

body {
	background-color: #545454;
	background-image: -webkit-gradient(radial,center center,0,center center,460,color-stop(40%,#B2AA9D),color-stop(100%,#C7BDAE));
	background-image: -webkit-radial-gradient(50% 50%,circle,#B2AA9D 40%,#C7BDAE);
	background-image: radial-gradient( circle at 50% 50%,#B2AA9D 40%,#C7BDAE);
	-webkit-font-smoothing: antialiased;
	height:auto;
}

/*body {
	height:auto;
	background:url(../media/images/bg.jpg) center top no-repeat;
	background-size: cover;
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}*/


section#main {
	width: 100%;
	height: 100%;
}

div#box-holder {
	border:6px solid white;
	width:55%;
	margin:0 auto;
	margin-top: 15%;
}

div.images {
	text-align: center;
	padding: 10px;
	border-bottom:6px solid white;
}

img.logo {
	width: 35%;
	height: auto;
	vertical-align: top;
	display:inline-block;
	margin:0 auto;
}

img.headshot {
	width: 35%;
	height: auto;
	display:inline-block;
	margin:0 auto;
}

#main ul {
	margin: 0;
	text-align: center;
	position:relative;
	display:table;
	width:100%;
}

li.social {
	padding-top: 5px;
	padding-bottom: 5px;
	list-style-type: none;
	display: inline-block;
	padding-left: .5em;
	padding-right: .5em;
	color:white;
	display:table-cell;
	border-right: 5px solid white;
}

li.social:last-child {border-right:0;}

li.social a {
	color:white;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

li.social i {color:white;}

li.social a:hover {

	transition-property: all;
	transition-duration: 100ms;
	transition-timing-function: linear;
	transition-delay: 0.3;
}

li.social:hover {
	cursor:pointer;
	transition-property: all;
	transition-duration: 100ms;
	transition-timing-function: linear;
	transition-delay: 0.3;
}


/*----------------------------------------------------------------------------
	MEDIA QUERIES
----------------------------------------------------------------------------*/
@media only screen and (max-width: 800px) {
	#main ul {display:block;}

	li.social {
		display:block;
		border-right: 0;
		border-bottom: 5px solid white;
		}

	li.social:last-child {border-bottom: 0;}
}


@media only screen and (max-device-width: 600px) {
	div#box-holder{margin-top: 45%;}
}

@media only screen and (max-device-width: 320px) and (max-device-width : 568px) and (orientation : portrait) {

}