
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	-ms-box-sizing: inherit;
	-o-box-sizing: inherit;
	box-sizing: inherit;
}
body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.8em;
}
a {
	color: black;
	text-decoration: none;
}
a:hover {
	color: grey;
}
img {
	max-width: 100%;
	height: auto;
}
.middle {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.text-center {
	text-align: center;
}
#content {
	max-width: 750px;
	margin: 0 auto;
}
#content h2 {
	margin-top: 4em;
}
/*
#logo, #contact > li {
	opacity: 0;
}
#logo {
	animation: fadein 1s ease 0.1s forwards;
}
#contact > li:nth-child(1) {
	animation: fadein 1s ease 0.3s forwards;
}
#contact > li:nth-child(2) {
	animation: fadein 1s ease 0.6s forwards;
}
#contact > li:nth-child(3) {
	animation: fadein 1s ease 0.9s forwards;
}
#contact > li:nth-child(4) {
	animation: fadein 1s ease 1.2s forwards;
}
#contact > li:nth-child(5) {
	animation: fadein 1s ease 1.5s forwards;
}
*/
#logo {
	margin-top: 40px;
	margin-bottom: 40px;
}
#contact {
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	white-space: nowrap;
}
span.side {
	margin: 0 10px;
}

/*ANIMATION*/
@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

ul.menu {
	list-style-type: none;
	margin: 40px 0;
	padding: 0;
	line-height: 1.4em;
	text-align: left;
}

ul.menu li {
	margin-bottom: 40px;
}
ul.menu h3 {
	margin-bottom: 0.3em;
}
ul.menu p {
	font-size: 0.85em;
	margin-top: 0.3em;
	max-width: 85%
}


.col {
	float: left;
	margin-left: 4%;
	margin-bottom: 4%;
}

.col.full {
    clear: left !important;
    margin-left: 0 !important;
    width: 100% !important;
}

.grid1 .col {
	width: 100%;
}

.grid2 .col {
	width: 48%;
}

.grid3 .col {
	width: 30.66%;
}

.grid4 .col {
	width: 22%;
}

.grid1 .col:nth-of-type(1n+1),
.grid2 .col:nth-of-type(2n+1),
.grid3 .col:nth-of-type(3n+1),
.grid4 .col:nth-of-type(4n+1) {
	margin-left: 0;
	clear: left;
}

.hidden {
	display: none;
}

.clearfix:after {
  content: '';
  display: table;
  clear: both;
}



/* iPhone 6 Plus Portrait
***************************************************/
@media screen and (max-width: 414px) { 
	
	ul.menu p {
		max-width: 100%
	}
	span.side {
		margin: 0 4px;
	}

	.open {
		font-size: .9rem;
	}

	
}
