

html{
	margin: 0;
	padding: 0;
}

body{
	background: #edeef0;
	color: #003e6b;
	font-family: freight-sans-pro, sans-serif;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	bottom: 0;
	text-align: center;
}

.wrapper{
	box-sizing: border-box;
	-ms-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	padding: 50px 25px;
	position: relative;
	width: 100%;
}

.wrapper:before{
	border: 2px solid #495965;
	content: '';
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 25px;
	left: 25px;
}

.container{
	margin: 0 auto;
	position: relative;
	width: 80%;
	z-index: 10;
}

h1,h2,h3,h4,h5,h6,p{
	display: block;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	margin: 0;
	padding: 0;
}

h1{
	font-family: gin, serif;
	margin: 0 auto 20px auto;
	max-width: 400px;
	width: 80%;
}

h1 img{
	display: block;
	width: 100%;
}

h2{
	border-bottom: 2px solid rgba(72,88,101,0.2);
	/*border-bottom: 2px solid #b6bcc2;*/
	font-size: 30px;
	margin-bottom: 30px;
	padding-bottom: 20px;
}
h2 span{
	white-space: nowrap;
}
h2 .pipe{
	display: inline-block;
	margin: 0 5px;
}

h2 .pipe:before{
	content: '|';
}

h3{
	font-size: 50px;
	margin-bottom: 20px;
}
h3 strong{
	font-family: gin, serif;
	font-weight: 400;
	font-size: 0.6em;
}

p{
	line-height: 1.2;
	margin: 10px 0;
}

a{
	color: #003e6b;
	text-decoration: none;
}

.address{
	margin-bottom: 30px;
}

.inventory-link{
	margin: 30px 0 0 0;
}
.inventory-link a{
	color: #c00;
	font-family: gin, serif;
	font-size: 1.5em;
	font-weight: 700;
	text-decoration: underline;
}

@media screen and (max-width: 1023px) {
	
	h2 span{
		display: block;
		white-space: normal;
	}
	h2 .pipe{
		display: block;
	}
	h2 .pipe:before{
		background: #003e6b;
		content: '';
		display: inline-block;
		height: 1px;
		margin: 10px 0 7px 0;
		width: 50px;
	}
}

@media screen and (max-width: 640px) {
	body{
		font-size: 20px;
	}
	h2{
		font-size: 20px;
	}

	h3{
		font-size: 30px;
	}
}