/*******************
****** BODY ******
********************/

/** Font Faces**/
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 100;
	src: url(font/OpenSans-Light.ttf) format('truetype');
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url(font/OpenSans-Bold.ttf) format('truetype');
}

/** Body **/
html{
}
body{
	min-width: 600px;
	background: #fff;
	color:#222222;
	margin: 0;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 22px;
	line-height: 1.5em;
	font-weight: 100;
}
b, strong{
	font-weight: 700;
}

@media (max-width: 641px){
	body{
		font-size: 30px;
	}
	#intro, #footer_nav_container{
		text-align: left !important;
	}
}

/*******************
****** SPLASH ******
********************/

#splash{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 390px;
	background: #222222;
}
#splash_iframe{
	border: none;
    width: 100%;
    height: 400px;
    position: absolute;
}
#splash_title{
	color: #fff;
	text-align: center;
	font-size: 120px;
	line-height: 0.85em;
	margin-top: 115px;
	pointer-events: none;
	cursor: default;

	position: relative;
	z-index: 99;
}
#splash_arrow{
	position: absolute;
	bottom:0;
	width:100%;
	height: 50px;
	pointer-events: none;
}
#splash_arrow > div{
    position: absolute;
}
#splash_arrow > div:nth-child(-n+2){
    width: 50%;
    height: 100%;
    background: #fff;
}
#splash_arrow > div:nth-child(1){
    left: -50px;
}
#splash_arrow > div:nth-child(2){
    right: -50px;
}
#splash_arrow > div:nth-child(n+3){
    width: 0;
	height: 0;
	border-style: solid;
}
#splash_arrow > div:nth-child(3){
	border-width: 50px 0 0 50px;
	border-color: transparent transparent transparent #ffffff;
    left: calc(50% - 50px);
}
#splash_arrow > div:nth-child(4){
	border-width: 0 0 50px 50px;
	border-color: transparent transparent #ffffff transparent;
    right: calc(50% - 50px);
}

#home{
	display: block;
    width:70px; height:70px;
    background: url(home.png);
    background-size: 100% 100%;
    position: absolute;
    top: 260px;
    left: 10px;
    text-decoration: none;
}
#home:after{
	content: 'home';
	display: none;
    width: 110px;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -60px;
    left: 10px;
    line-height: 1em;
}
#home:hover:after{
    display: block;
}

#genuine{
	display: block;
    width:70px; height:70px;
    background: url(genuine.png);
    background-size: 100% 100%;
    position: absolute;
    top: 260px;
    left: 110px;
    text-decoration: none;
}
#genuine:after{
	content: 'genuine authentication';
	display: none;
    width: 110px;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -60px;
    left: 0px;
    line-height: 1em;
}
#genuine:hover:after{
    display: block;
}

#ownership{
	display: block;
    width:70px; height:70px;
    background: url(ownership.png);
    background-size: 100% 100%;
    position: absolute;
    top: 260px;
    left: 210px;
    text-decoration: none;
}
#ownership:after{
	content: 'ownership';
	display: none;
    width: 110px;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -60px;
    left: 0px;
    line-height: 1em;
}
#ownership:hover:after{
    display: block;
}

#transfer{
	display: block;
    width:70px; height:70px;
    background: url(transfer.png);
    background-size: 100% 100%;
    position: absolute;
    top: 260px;
    left: 310px;
    text-decoration: none;
}
#transfer:after{
	content: 'ownership transfer';
	display: none;
    width: 110px;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -60px;
    left: 0px;
    line-height: 1em;
}
#transfer:hover:after{
    display: block;
}
/*******************
****** WORDS ******
********************/

#words{
	width: 100%;
	padding-top: 10px;
	padding-bottom: 30px;
}
#intro{
	max-width: calc(100% - 50px);
	width:640px;
	margin: auto;
	text-align: justify;
	overflow: hidden;
}
#gallery{
	max-width: calc(100% - 40px);
	width:800px;
	margin: auto;
	margin-top: 20px;
	overflow: hidden;
}
#gallery #entry{
	float:left;
	margin-bottom: 35px;
	position: relative;
	transition: opacity 0.6s ease-in-out, top 0.6s ease-in-out;
}
#gallery #entry #thumb{
	border: 1px solid #eee;
	background: #bbb;

	transition: opacity 0.1s ease-in-out;
	opacity: 1;
}
#gallery #entry:hover #thumb{
	opacity: 0.7;
}
#gallery #entry #name{
	color: #000;
	font-weight: 700;
	line-height: 1.3em;
    margin-top: 6px;
}
#gallery #entry #description{
	color: #909090;
	font-size: 0.92em;
	line-height: 1.3em;
}
#gallery[size=big]{
	width: 600px;
}
#gallery[size=big] #entry{
	width: 600px;
}
#gallery[size=big] #entry #thumb{
	width: 598px;
	height: 148px;
}
#gallery[size=big] #entry:hover #thumb{}
#gallery[size=big] #entry #name{}
#gallery[size=big] #entry #description{}
#gallery[size=small]{
	width: 820px;
}
#gallery[size=small] #entry{
	width: 400px;
	margin: 0 5px 25px 5px;
}
#gallery[size=small] #entry #thumb{
	width: 398px;
	height: 98px;
}
#gallery[size=small] #entry:hover #thumb{}
#gallery[size=small] #entry #name{
	font-size: 0.92em;
	margin-top: 3px;
	margin-bottom: 5px;
}
#gallery[size=small] #entry #description{
	font-size: 0.83em;
}
#gallery[size=small] .divider{
	display: block;
	clear:both;
}
#load_more{
	
	clear: both;
	margin: 0 auto;
	
	border: 2px solid black;
	border-radius: 10px;

	font-size: 30px;
	text-align: center;
	font-weight: 100;
	line-height: 40px;
	
	width: 300px;
	height: 40px;
	padding: 10px 0;
	cursor: pointer;

	transition: all 0.1s ease-in-out;
	position: relative;
	top:0;
	opacity: 1.0;
	
}
#load_more:hover{
	opacity: 0.5;
	top:-3px;
}

/*******************
**** FOOTER NAV ****
********************/

#footer_nav_container{
	width: 100%;
	padding: 30px 0 50px 0;
	background: #f0f0f0;
	text-align: justify;
}
#footer_nav{
	margin: 0 auto;
	max-width: calc(100% - 50px);
	width:640px;
}
.footer_buttons{
	text-align:center;
	padding-bottom: 1em;

	margin-top: -0.5em;
    margin-bottom: -0.5em;
}
.tag{
	position: relative;
	top:0;
	transition: top 0.1s ease-in-out;
	display: inline-block;
	color: #fff;
	border-radius: 10px;
	padding: 0 15px;
	margin: 5px;
	font-size: 1em;
	/*font-weight: 700;*/
	text-decoration: none;
	line-height: 1.7em;
	border-bottom: 4px solid rgba(0,0,0,0.35);
}
.tag:hover{
	top:-2px;
}
.tag[small=yes]{
	font-size: 0.75em;
	line-height: 1.4em;
	padding: 0 10px;
	font-weight: 100;
	margin: 1px;
	border-radius: 100px;
	border: none;
}
.tag.rainbow{
	font-size:1.5em;
	color: #000;
    background: #dd4040; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, hsl(0, 100%, 63%), hsl(30, 100%, 63%), hsl(60, 100%, 63%), hsl(90, 100%, 63%), hsl(120, 100%, 63%), hsl(180, 100%, 63%), hsl(240, 100%, 63%)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, hsl(0, 100%, 63%), hsl(30, 100%, 63%), hsl(60, 100%, 63%), hsl(90, 100%, 63%), hsl(120, 100%, 63%), hsl(180, 100%, 63%), hsl(240, 100%, 63%)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, hsl(0, 100%, 63%), hsl(30, 100%, 63%), hsl(60, 100%, 63%), hsl(90, 100%, 63%), hsl(120, 100%, 63%), hsl(180, 100%, 63%), hsl(240, 100%, 63%)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, hsl(0, 100%, 63%), hsl(30, 100%, 63%), hsl(60, 100%, 63%), hsl(90, 100%, 63%), hsl(120, 100%, 63%), hsl(180, 100%, 63%), hsl(240, 100%, 63%)); /* Standard syntax (must be last) */
}

/*******************
** FOOTER CREDITS **
********************/

#footer_credits_container{
	width: 100%;
	padding: 50px 0 75px 0;
	background: #222222;
}
#footer_credits{
	margin: 0 auto;
	max-width: calc(100% - 50px);
	width:600px;
	color: #fff;
	font-size: 0.71em;
	text-align: center;
	line-height: 1.5em;
}
#footer_credits a{
	color:#dd4040;
}
#footer_credits a:hover{
	color:#ee5151;
}
.sharing{
	margin-top: 20px;
}
.sharing a{
	display: inline-block;
    height: 20px;
    width: 20px;
    margin: 5px;
    border:1px solid #fff;
    border-radius: 100px;
    padding:5px;
}
.sharing a:hover{
	background: rgba(255,255,255,0.3);
}
.sharing svg{
	width:20px;
	height:20px;
	fill:#fff;
}