@font-face {
	font-family: "Helvetica Neue Thin";
	src: url('/fonts/HelveticaNeue-Thin-12.ttf');
}

@font-face {
	font-family: "Helvetica Neue Medium";
	src: url('/fonts/HelveticaNeue-Medium-11.ttf');
}

@font-face {
	font-family: "Helvetica Neue";
	src: url('/fonts/HelveticaNeue.ttf');
}

html, body {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	font-family: "Helvetica Neue Medium", "helvetica", "sans-serif";
	font-size: 16px;
	font-weight: 300;
	color: #434343;
}

* {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}



#walkeroo {
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	width: 100%;
	height: 100%;
}

#nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 8.5rem;
	padding: 0 3rem;
	max-width: 60rem;
	margin: 0 auto;
}

#logo {
	display: inline-flex;
	flex-direction: row;
}

#logo-name {
	font-size: 4rem;
	line-height: 8.5rem;
	text-align: right;
	vertical-align: middle;
}

#logo-name > span {
	font-family: "Helvetica Neue Thin", "helvetica", "sans-serif";
	color: #c4ad92;
}

#logo-icon {
	display: inline-block;
	width: 6rem;
	height: 6rem;
	line-height: 8.5rem;
	background-image: url("/images/kangaroo.colored.svg");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	transform: translate(-2.75rem, 1.5rem);
}

#menu {
	margin-left: 0.5rem;
	display: inline-flex;
	width: 6rem;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
}

#menu > a {
	font-size: 2rem;
	color: #434343;
	text-decoration: none;
}

#menu > a:first-child {
	margin-left: 0;
}

#menu > a:hover {
	color: #666666;	
}

#menu > a:active {
	color: #999999;	
}

#banner {
	position: relative;
	width: 100%;
	height: 300px;
}

#banner-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url("/images/pattern3.jpg");
	background-size: cover;
	background-position: center;
	opacity: 0.5;
}

#banner-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #C49D92;
	opacity: 0.5;
	z-index: 1;
}




#details {
	position: relative;
	width: 100%;
	overflow-x: hidden;
	max-width: 60rem;
	margin: 0 auto;
}

#details .title {
	font-size: 3rem;
	margin-bottom: 0.75rem;
}

#details .description {
	width: 25rem;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-family: "Helvetica Neue Medium", "helvetica", "sans-serif";
}

#details .properties {
	width: 25rem;
	margin: 0;
	padding: 0;
	font-size: 1rem;
	font-family: "Helvetica Neue", "helvetica", "sans-serif";
}

#details .properties > .property {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

#details .property i {
	margin-right: 1.25rem;
	width: 1.25rem;
	text-align: center;
}

#details a.property {
	color: #000000;
	text-decoration: none;
}

#details a.property:hover {
	color: #434343;
}

#details a.property:active {
	color: #666666;
}

#samples {
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	height: 18rem;
	width: 24.5rem;
}

#samples #thumbnails {
	display: inline-flex;
	flex-direction: column;
	width: 5rem;
	height: 18rem;
	justify-content: space-between;
}

#samples .thumbnail {
	display: inline-block;
	width: 5rem;
	height: 5rem;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: all 0.2s ease;
}

#samples .thumbnail.active {
	outline: 0.25rem solid #d9d9d9;
}

#samples #main-image {
	display: inline-block;
	width: 18rem;
	height: 18rem;
	background-size: contain;
	background-image: url("/images/samples/sample1.jpg");
	background-repeat: no-repeat;
	transition: all 0.2s ease;
}

#samples #thumbnail-1 {
	background-image: url("/images/samples/sample1.jpg");
}

#samples #thumbnail-2 {
	background-image: url("/images/samples/sample2.jpg");
}

#samples #thumbnail-3 {
	background-image: url("/images/samples/sample3.jpg");
}


#learn {
	padding: 5rem 3rem;
	min-height: 24rem;
	border-bottom: 1px solid #d9d9d9;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

#order {
	padding: 5rem 3rem;
	border-bottom: 1px solid #d9d9d9;
}

#copyright {
	padding: 3rem;
	color: #999999;
	text-align: center;
}

/*
@media (max-width: 960px) {
	#samples {
		flex-direction: column;
		justify-content: space-between;
		height: 17.5rem;
		width: 14rem;
	}

	#samples #thumbnails {
		flex-direction: row;
		width: 14rem;
		height: 3rem;
	}

	#samples .thumbnail {
		width: 4.25rem;
		height: 3rem;
		background-size: cover;
	}

	#samples #main-image {
		width: 14rem;
		height: 14rem;
	}
}
*/


@media (max-width: 960px) {
	#nav {
		flex-direction: column;
		justify-content: center;
		height: auto;
		padding: 2rem 0 4rem;
	}

	#logo {
		flex-direction: column-reverse;
		align-items: center;
	}

	#logo-name {
		line-height: 4rem;
		transform: translateY(-1rem);
	}

	#logo-icon {
		transform: none;
		width: 10rem;
		height: 10rem;
	}

	#menu {
		margin-left: 0;
		line-height: 4rem;
	}

	#menu > a:first-child {
		margin-left: 0;
	}

	#learn {
		flex-direction: column;
		padding: 5rem 0;
	}

	#order {
		padding: 5rem 0;
	}

	#details .title {
		width: 100%;
		text-align: center;
		margin-bottom: 1.5rem;
	}

	#details .description {
		width: 80%;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 4rem;
	}

	#details .properties {
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		text-align: center;
	}
	
	#details .properties > .property {
		flex-direction: column;
		width: 45%;
		margin-bottom: 4rem;
	}

	#learn .properties > .property:last-child {
		width: 100%;
	}

	#details .property i {
		font-size: 3rem;
		width: 2.5rem;
		margin: 0;
		margin-bottom: 1rem;
	}

	#details .property > span > span {
		display: none;
	}

	#samples {
		margin: 1rem auto;
	}
}

/*
#products {
	position: absolute;
	top: 150px;
	left: 0px;
	width: 100%;
}

#product {
	position: absolute;
	left: calc( 50% - 150px );
	top: 0px;
	width: 300px;
	height: 300px;
	background-image: url("/images/samples/sample1.jpg");
	background-size: contain;
	border: 10px solid #000000;
}
*/