/* CSS Document */

*{
	box-sizing:border-box;
	padding:0;
	margin:0;
}
html,body{
	width:100%;
}

body{
	background:#000;
	font-family:Segoe UI, Segoe, Arial;
	font-size:.9em;
}
body #background{
	background-attachment:fixed;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	height:100%;
	opacity:.8;
	position:fixed;
	transition:1s;
	width:100%;
}
body #background canvas{
	position:absolute;
	top:0;left:0;
	pointer-events:none;
}

h1,h2,h3,h4,h5,h6{font-weight:normal;margin-bottom:14px;}
img{max-width: 100%;max-height: 100%;}
p{margin-bottom:14px;padding:4px;}
a{text-decoration:none;color:#009BFF;}
b{font-weight:600;}

body header{
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	-webkit-user-select:none;
	cursor:default;
	display:flex;
	align-items:flex-start;
	height:400px;
	margin:0 auto;
	max-width:1200px;
	padding:40px 20px 200px 20px;
	position:relative;
	user-select:none;
	width:-webkit-calc(100% - 40px);
	width:calc(100% - 40px);
}
body header .text{
	flex:2;
	width:100%;
	font-size:1.4em;
	text-shadow:0 0 8px rgba(0,0,0,1);
	color:#FFF;
	margin-left:20px;
	padding:20px 0;
}
body header .text p{margin:0;padding:0;}
body header #logo{
	display:inline-block;
	color: #fff;
	font-size: 150px;
	font-family: KaiTi;
	text-shadow: 0 1px 10px rgba(0,0,0,.4);
	width:150px;
	height:150px;
	border-radius:50%;
	background:url(../img/logo-white.svg) no-repeat;
	background-size:contain;
	background-position:center;
}
body div.section{
	position:relative;
	width:-webkit-calc(100% - 40px);
	width:calc(100% - 40px);
	margin:0 auto;
	max-width:1200px;
	background:#FFF;
	border-radius:1px;
	box-shadow:0 1px 10px rgba(0,0,0,.4);
	margin-bottom:20px;
}
body div.section div.menu-container{
	position:absolute;
	top:0;left:0;
	width:100%;
	z-index: 10;
	background:rgba(0,0,0,.8);
	margin-top:-40px;
	border-radius:2px 2px 0 0;
}
body div.section div.menu-container.fixed{
	margin-top:0;
	position:fixed;
	top:0;left:0;
	width:100%;
}
body div.section div.menu-container .menu{
	position:relative;
	height:40px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	color:#FFF;
	padding:0 6px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
}
body div.section div.menu-container.fixed .menu{
	max-width:1200px;
	margin:0 auto;
	box-shadow:0 1px 6px rgba(0,0,0,.2);
}
body div.section div.menu-container .menu .mini-menu{
	position:absolute;
	top:100%;left:10px;
	background:rgba(0,0,0,.95);
	min-width:160px;
	border-radius:0 0 1px 1px;
	box-shadow:0 1px 4px rgba(0,0,0,.4);
	opacity:0;
	visibility:hidden;
	transition:.15s;
}
body div.section div.menu-container .menu .mini-menu.show{
	opacity:1;
	visibility:visible;
}
body div.section div.menu-container .menu .mini-menu a{color:inherit;}
body div.section div.menu-container .menu .mini-menu ul{
	list-style:none;
}
body div.section div.menu-container .menu .mini-menu ul li div{
	padding:6px 10px;
	white-space:nowrap;
	transition:.15s;
}
body div.section div.menu-container .menu .mini-menu ul li div:hover{
	background:#FFF;
	color:#000;
}
body div.section div.menu-container .menu .mini-menu ul li div:active{
	background:#222;
	color:#999;
}
body div.section div.menu-container .menu .mini-menu-button{
	position:relative;
	display:none;
	align-items:center;
	justify-content:space-between;
	padding:4px 6px;
	border-radius:1px;
	transition:.15s;
	cursor:pointer;
}
body div.section div.menu-container .menu .mini-menu-button:hover{
	background:#FFF;
	color:#000;
}
body div.section div.menu-container .menu .mini-menu-button:active{
	background:#222;
	color:#999;
}
body div.section div.menu-container .menu .mini-menu-button:before{
	content:'';
	display:inline-block;
	height:22px;
	width:22px;
	background-image:url(../img/menu-white.svg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	margin-right:6px;
	transition:.15s;
}
body div.section div.menu-container .menu .mini-menu-button:hover:before{
	background-image:url(../img/menu-black.svg);
}
body div.section div.menu-container .menu .mini-menu-button:active:before{
	background-image:url(../img/menu-white.svg);
	opacity:.6;
}
body div.section div.menu-container .menu nav{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
body div.section div.menu-container .menu nav ul{
	list-style:none;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:flex-start;
}
body div.section div.menu-container .menu nav ul li{margin-right:4px;position:relative;}
body div.section div.menu-container .menu nav ul li a{color:inherit;}
body div.section div.menu-container .menu nav ul li div{
	padding:4px 10px;
	margin:2px;
	border-radius:1px;
	transition:.2s;
	cursor:pointer;
}
body div.section div.menu-container .menu nav ul li div:hover{
	background:#FFF;
	color:#000;
}
body div.section div.menu-container .menu nav ul li div:active{
	background:#222;
	color:#999;
}
body div.section div.menu-container .menu nav ul li ul{
	position:absolute;
	top:100%;
	opacity:0;
	visibility:hidden;
	transition:.2s;
	box-shadow:0 1px 5px rgba(0,0,0,.2);
}
body div.section div.menu-container .menu nav ul li:hover ul{
	opacity:1;
	visibility:visible;
}
body div.section div.menu-container .menu nav ul li ul li{
	width:100%;
	padding:0;
	margin:0;
}
body div.section div.menu-container .menu nav ul li ul li div{
	margin:0;
	width:100%;
	background:rgba(0,0,0,.95);
	white-space:nowrap;
	border-radius:0;
}
body div.section div.menu-container .menu div.social-icons{
	position:absolute;
	right:20px;top:0;
	width:130px;
	height:40px;
	margin-top:-40px;
	overflow:hidden;
	text-align:right;
}
body div.section div.menu-container.fixed .menu div.social-icons{margin-top:40px;}
body div.section div.menu-container .menu div.social-icons button{
	position:relative;
	height:40px;
	width:40px;
	border:none;
	outline:none;
	background-color:transparent;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	transition:.2s;
	cursor:pointer;
	top:20px;
}
body div.section div.menu-container.fixed .menu div.social-icons button{top:-20px;}
body div.section div.menu-container .menu div.social-icons button:hover{top:0;}
body div.section div.menu-container .menu div.social-icons button#facebook{background-image:url(../img/social-facebook.svg);}
body div.section div.menu-container .menu div.social-icons button#google{background-image:url(../img/social-google.svg);}
body div.section div.menu-container .menu div.social-icons button#twitter{background-image:url(../img/social-twitter.svg);}
body div.section div.menu-container .menu div#select-lang{
	font-size:.85em;
	margin-right:2px;
	text-align:right;
	cursor:default;
	display:flex;
}
body div.section div.menu-container .menu div#select-lang .lang{
	height:24px;
	width:34px;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	opacity:.9;
	transition:.2s;
	border-radius:1px;
}
body div.section div.menu-container .menu div#select-lang .lang:hover{opacity:1;}
body div.section div.menu-container .menu div#select-lang .lang:active{opacity:.8;}
body div.section div.menu-container .menu div#select-lang .lang.es{background-image:url(../img/lang-es.svg);}
body div.section div.menu-container .menu div#select-lang .lang.jp{background-image:url(../img/lang-jp.svg);}
body div.section div.menu-container .menu div#select-lang .lang.en{background-image:url(../img/lang-us.svg);}
body div.section div.menu-container .menu div#select-lang .lang.selected{
	-webkit-filter:grayscale(100%);
	-moz-filter:grayscale(100%);
	-ms-filter:grayscale(100%);
	-o-filter:grayscale(100%);
	filter:grayscale(100%);
	opacity:.4;
}
body div.section div.menu-container .menu div#select-lang span{
	display:inline-block;
	margin-right:4px;
	color:#CCC;
}
body div.section div.menu-container .menu div#select-lang select{
	font-size:inherit;
	font-family:inherit;
	padding:2px 6px;
	border:none;
	outline:none;
	border-radius:1px;
}
body div.section .container{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
}
body div.section .container .content{
	flex:2;
	width:100%;
	border-right: 1px solid #EDEDED;
	padding:20px 30px 30px 30px;
}
body div.section aside{
	padding:20px;
	width:300px;
}
body div.section aside article{
	margin:10px 0;
	padding:10px 0;
	width:100%;
}
body div.section aside article a{color:inherit;}
body div.section aside article .data{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
}
body div.section aside article .data .image{
	height:100px;
	width:100px;
	overflow:hidden;
	margin-right:6px;
	margin-bottom:6px;
}
body div.section aside article .data .image img{
	height:100%;
	width:100%;
	object-fit:cover;
}
body div.section aside article .data .text{
	flex:2;
	width:100%;
}
body div.section aside .empty{
	color:#999;
	font-style:italic;
	text-align:center;
}
body div.section p.autor-comment{
	text-align:right;
	padding:20px 0 0 0;
	color:#999;
	font-style:italic;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
	cursor:default;
}
body div.section p.autor-comment span{
	font-weight:500;
	font-style:normal;
}
body footer{
	background:#010101;
	border-radius:1px;
	box-shadow:0 1px 10px rgba(0,0,0,.4);
	color:#999;
	margin:0 auto;
	max-width:1200px;
	padding:20px;
	position:relative;
	display:flex;
	justify-content:space-between;
	
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
	cursor:default;
}
body footer .eden{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
body footer .eden span{
	margin-right:6px;
}



@media (max-width: 970px){
	body div.section div.menu-container .menu .mini-menu-button{
		display:flex;
	}
	body div.section div.menu-container .menu nav{
		display:none;
	}
}
@media (max-width: 800px){
	body div.section .container{
		flex-direction:column;
	}
	body div.section .container .content{
		border-right:0;
	}
	body div.section .container aside{
		width:100%;
		border-top:1px solid #EDEDED;
	}
	body div.section .container aside article .data .image img{
		height:150px;
		width:150px;
	}
	body footer{
		flex-direction:column;
	}
	body footer .copy{
		display:flex;
		flex-direction:column;
		justify-content:center;
		text-align:center;
	}
	body footer .eden{
		justify-content:center;
		margin-top:10px;
	}
}