.head_div
{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.head_div[mobile=true]
{
	flex-direction:column;
}

.head_div > .logo
{
	width:16vw;
	padding:3vw 0;
	margin-top:1vw;
	margin-left:1vw;
	margin-right:auto;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
	background-image:url(./res/logo.png);
}
.head_div[mobile=true] > .logo
{
	width:100%;
	padding:12% 0;
}

.head_div > nav
{
	background:rgba(100,100,100,.5);
}
.head_div[mobile=true] > nav
{
	background:#525252;
}
.head_div > nav > ul
{
	list-style-type:none;
	margin:0;
	padding:0;
	font-size:120%;
	text-align:right;
}
.head_div[mobile=true] > nav > ul
{
	font-size:500%;
	text-align:center;
}
.head_div > nav > ul > li
{
	position:relative;
	display:inline-block;
	padding:.5vw 1vw;
	margin:.5vw;
	text-transform:uppercase;
	color:#fafafa;

	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
.head_div[mobile=true] > nav > ul > li
{
	margin:0 1vw;
}
.head_div > nav > ul > li > a
{
	text-decoration:none;
	background:inherit;
	color:inherit;
}
.head_div > nav > ul > li:hover
{
	transition:all .2s cubic-bezier(.5,3,.5,1.5);
	background:#fafafa;
	color:#000;
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/
.body_div
{
	display:flex;
}
.body_div[mobile=true]
{
	flex-direction:column;
}

.body_div > article > header
{
	padding:2vw 0;
	text-align:center;
	font-size:200%;
	font-style:italic;
}
.body_div[mobile=true] > article > header
{
	padding:4vw 0;
	font-size:400%;
}
.body_div > article > section
{
	display:flex;
	align-items:center;
}
.body_div[mobile=true] > article > section
{
	flex-direction:column;
}

.body_div > article > section > .pictures
{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	background-color:rgba(50,50,50,.2);
}
.body_div[mobile=false] > article > section > .pictures:not(:empty)
{
	flex-basis:40%;
}
.body_div[mobile=true] > article > section > .pictures:not(:empty)
{
	flex-basis:100%;
}
.body_div > article > section > .pictures > figure
{
	position:relative;
	margin:0;
	cursor:pointer;
}
.body_div > article > section > .pictures > figure:hover:before
{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.2);
	content:'';
}
.body_div > article > section > .pictures > figure:hover:after
{
	position:absolute;
	left:50%;
	top:50%;
	font-family:E_Ionicons;
	font-size:3em;
	color:#fff;
	content:'\f37d';

	transform:translate(-50%, -50%);
	animation:kfm_figure_hover ease-in-out .2s forwards;
}
.body_div > article > section > .pictures > .top:hover:after
{
	font-size:10em;
}
@keyframes kfm_figure_hover
{
	100%
	{
		transform:translate(-50%, -50%) scale(1.5);
	}
}
.body_div > article > section > .pictures > .top
{
	flex-basis:100%;
}
.body_div > article > section > .pictures > .small
{
	flex-basis:20%;
}
.body_div > article > section > .pictures > .small:not(:last-child)
{
	border-right:1px solid #fff;
}
.body_div > article > section > .pictures > .top > img
{
	width:100%;
}
.body_div > article > section > .pictures > .small > img
{
	width:100%;
	aspect-ratio:1/1;
	object-fit:cover;
}
.body_div > article > section > .pictures > .small > a
{
	box-sizing:border-box;
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	padding:.1vw 0;
	text-align:center;
	font-size:150%;
	color:#fff;
	background-color:rgba(50,50,50,.8);
}
.body_div[mobile=false] > article > section > .pictures > .small > a
{
	font-size:400%;
}
.body_div > article > section > .pictures > figure > figcaption
{
	display:none;
}

.body_div[mobile=false] > article > section > .content
{
	flex-basis:60%;

	display:flex;
}
.body_div > article > section > .content > p
{
	margin:auto;
	padding:2vw 5%;
	white-space:pre-line;
}
.body_div[mobile=true] > article > section > .content > p
{
	font-size:450%;
}

.body_div[mobile=false] > article > footer > p
{
	font-size:140%;
}
.body_div[mobile=true] > article > footer > p
{
	text-align:center;
	font-size:340%;
}
.body_div > article > footer > p > a
{
	display:inline-block;
	padding:.5% 3%;
	text-decoration:none;
	font-size:120%;
	color:#fff;
	background:#eb8418;
}

.body_div > nav
{
	background:linear-gradient(45deg, #e5e5e5 10%, #eee 10%, #e5e5e5 20%, #eee 20%, #e5e5e5 30%, #eee 30%, #e5e5e5 40%, #eee 40%, #e5e5e5 50%, #eee 50%, #e5e5e5 60%, #eee 60%, #e5e5e5 70%, #eee 70%, #e5e5e5 80%, #eee 80%, #e5e5e5 90%, #eee 90%);
}
.body_div[mobile=true] > nav
{
	width:100%;
	font-size:400%;
}

.body_div > nav > h1
{
	display:block;
	padding:2vw 0;
	letter-spacing:.2vw;
	text-align:center;
	text-transform:uppercase;
	font-size:120%;
	font-weight:bold;
	font-style:italic;
}
.body_div > nav > ul
{
	list-style-type:none;
	margin:0;
	padding:0;
	font-size:120%;
	text-align:left;
}
.body_div > nav > ul > li
{
	white-space:nowrap;
	text-transform:uppercase;
	margin:1vw auto;
	padding:.5vw 0;
	color:#0f4373;
	background:rgba(0,0,0,.1);

	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
.body_div[mobile=true] > nav > ul > li
{
	padding:2vw 0;
}
.body_div > nav > ul > li:hover
{
	transition:all .5s cubic-bezier(.5,3,.5,1.5);
	color:#fff;
	background:#0f4373;
}
.body_div > nav > ul > li > a
{
	display:block;
	margin:auto 1vw;
	text-decoration:none;
	color:inherit;
}
.body_div > nav > ul > li > a:before
{
	margin-right:.3em;
	content:'\25ba';
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/
.foot_div
{
	padding:1vw 0;
	font-size:100%;
	color:#fafafa;
	background:#eb8418;
}
.foot_div[mobile=true]
{
	font-size:400%;
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/
.clear
{
	clear:both;
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/
.justify
{
	text-align:justify;
	text-justify:distribute;
}
.justify:after
{
	content: "";
	display:inline-block;
	width:100%;
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/
.blank_link
{
	text-decoration:none;
	color:inherit;
}
.color_link
{
	text-decoration:underline;
	color:#eee;
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/
.tl_div
{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,.8);
	z-index:10;
}
.tl_div > div
{
	position:relative;
	height:100%;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
}
.tl_div > a
{
	position:absolute;
	right:0;
	top:0;
	margin:1vw 1vw 0 0;
}
.tl_div > a:after
{
	font-family:E_Ionicons;
	font-size:8vh;
	cursor:pointer;
	color:#fff;
	content:'\f405';
}
.tl_div > span:nth-of-type(1)
{
	position:absolute;
	left:0;
	top:0;
	width:20%;
	height:100%;
	cursor:pointer;
	text-align:left;
	padding-left:4vh;
}
.tl_div > span:nth-of-type(1):before
{
	border-radius:50%;
	position:relative;
	display:inline-block;
	top:50%;
	padding:4vh 10vh;
	font-family:E_Ionicons;
	font-size:16vh;
	color:#fff;
	//background:rgba(255,255,255,.2);
	content:'\f3d2';

	transform:translateY(-50%);

	opacity:0;
}
.tl_div > span:nth-of-type(1):hover:before
{
	transition:all .2s cubic-bezier(.5,3,.5,1.5);
	transform:translateY(-50%) scale(1.2);
	background:rgba(255,255,255,.1);
	opacity:1;
}
.tl_div > span:nth-of-type(2)
{
	position:absolute;
	right:0;
	top:0;
	width:20%;
	height:100%;
	cursor:pointer;
	text-align:right;
	padding-right:4vh;
}
.tl_div > span:nth-of-type(2):before
{
	position:relative;
	border-radius:50%;
	display:inline-block;
	top:50%;
	padding:4vh 10vh;
	font-family:E_Ionicons;
	font-size:16vh;
	color:#fff;
	background:rgba(255,255,255,.2);
	content:'\f3d3';

	transform:translateY(-50%);

	opacity:0;
}
.tl_div > span:nth-of-type(2):hover:before
{
	transition:all .2s cubic-bezier(.5,3,.5,1.5);
	transform:translateY(-50%) scale(1.2);
	background:rgba(255,255,255,.1);
	opacity:1;
}
/*-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --*/