/*Developed and maintained by RGB101.com*/
/*CSS Reset*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Muli', sans-serif;
	background: #000;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@-ms-viewport{
  width: device-width;
}
h1{
	padding: 5px;
	font-size: 24px;
	font-weight: bold;
}
h2{
	padding: 5px;
	font-size: 18px;
	font-weight: bold;
}
p{
	line-height: 2;
}
a{
	color: #e2e2e2;
	text-decoration: none;
	font-size: 12px;
}
a:hover{
	color:#fff;
}
/*responsive images*/
.img-responsive {
	width: 100%;
	height: auto;
}
/*setup a 4 column grid, middle column will be the main container*/
.container{
	min-width: 100vw;
	margin: auto;
	width: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
}
.page{
	min-height:100vh;
}
.light{
	background: #fff;
	color: #000;
}
.dark{
	background: #000;
	color: #fff;
}
.content{
	grid-column:span 4;
	width: 100%;
	max-width: 960px;
	margin: auto;
}
.coll{
	padding-top: 55px;
}
.cover{
	background: url(../img/bg4.jpg) no-repeat center center scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	grid-column: span 4;
	width: auto;
}
.navigation{
	grid-column: span 4;
	position: sticky;
	position: -webkit-sticky;
	bottom: 0;
	background: rgba(0,0,0,0.9);
	width:100%;
	height:100px;
	margin: auto;
}
#logo{
	float: left;
	padding-left: 20px;
}
#logo-mobi{
	display:none;
}
#navigation-wrapper,#coll-menu-wrapper{
	margin: auto;
	max-width: 960px;
	height: 100%;
}
.nav-link{
	float: left;
}
.nav-link a{
	margin: 10px;
	margin-top: 35px;
	padding: 10px;
	display: block;
}
.nav-link a:hover{
	background: #fff;
	color: #000;
}
#mobile-center{
	margin:auto;
	margin-top:38vh;
	width:245px;
	height: 100px;
}
#mobile-logo{
	display: none;
}

#about{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: auto;
}
.ctext{
	grid-column: span 2;
	padding: 20px;
}
#collection{
  background: url(../img/bg-juilee.com-collection.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  width: 100%;
}
.cont-link{
	display: block;
	float:none;
	padding: 10px;
	width: 35vw;
	max-width: 250px;
}
.cont-link a{
	font-size: 14px;
	display: block;
	padding: 10px;
	color: #fff;
	background: rgba(3,191,226,0.9);
}
.cont-link a:hover{
	background: #fff;
	color: #000;
}
#collection-grid{
	grid-column: span 4;
	margin: 0px;
	width: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
}
.coll-menu{
	width: 100%;
	margin: auto;
	max-width: 960px;
	grid-column: span 4;
	height: 50px;
	background: rgba(3,191,226,0.9);
	position: sticky;
	position: -webkit-sticky;
	top:0;
	z-index: 100;
}
.coll-menu div{
	display: inline;
}
.coll-link{
	float: left;
	display: block;
}
.coll-link a{
	margin: 10px;
	margin-top: 10px;
	padding: 10px;
	color: #fff;
	display: block;
}
.coll-link a:hover{
	background: #fff;
	color: #000;
}
.photo{
	margin: 5px;
  border: 5px solid #ECF8F9;
  -webkit-box-shadow: 3px 3px 12px -4px rgba(107,107,107,1);
  -moz-box-shadow: 3px 3px 12px -4px rgba(107,107,107,1);
  box-shadow: 3px 3px 12px -4px rgba(107,107,107,1);
}

@media only screen and (max-width: 768px) {
	/* For mobile phones: */
	h1{
		padding: 2px;
		font-size: 16px;
		font-weight: bold;
	}
	h2{
		padding: 2px;
		font-size: 16px;
		font-weight: bold;
	}
	.navigation{
		height: 50px;
	}
	#logo{
		display: none;
	}
	#logo-mobi{
		float: left;
		display: inline;
		padding: 5px;
		margin-top: 5px;
	}
	#logo-mobi a{
		display: block;
	}
	.nav-link a{
		margin-top: 10px;
	}
	#logo-mobi a:hover,.nav-link a:hover{
		background: #fff;
		color: #000;
	}
	#mobile-logo{
		display: block;
		padding-left: 10px;
		padding-right: 10px;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.5);
		border-radius: 10px;
	}
	.cont-link a{
		font-size: 12px;
		display: block;
		padding: 5px;
	}
	.coll-link a{
		margin: 5px;
		margin-top: 15px;
		font-size: 12px;
		padding: 5px;
		display: block;
	}
}
@media only screen and (max-width: 465px) {
	/* For mobile phones: */
	.nav-link a{
		margin-top: 20px;
		font-size: 10px;
		padding: 2px;
		padding-left: 0px;
		padding-right: 0px;
	}
	@media only screen and (max-width: 330px) {
		/* For mobile phones: */
		.navigation{
			height: 7vh;
		}
		.nav-link a{
			margin-top: 20px;
			font-size: 10px;
			padding: 2px;
			padding-left: 0px;
			padding-right: 0px;
		}
	}
