* {
	margin: 0;
	padding: 0;
}

::-webkit-scrollbar {
	width: 14px; height: 7px;
	background-color: #141414;
}

::-webkit-scrollbar-thumb {
	background: rgb(178,23,21);
	background: -moz-linear-gradient(180deg, rgba(178,23,21,1) 0%, rgba(201,160,14,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(178,23,21,1) 0%, rgba(201,160,14,1) 100%);
	background: linear-gradient(180deg, rgba(178,23,21,1) 0%, rgba(201,160,14,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b21715",endColorstr="#c9a00e",GradientType=1);
	border-width: 8px 4px;
	border-style: solid;
	border-color: #141414;
	border-radius: 5px;
}

::selection {
	background-color: #a4c8dd;
	color:#030303;
	text-shadow: none;
}
::-moz-selection {
	background-color: #a4c8dd;
	color:#030303;
	text-shadow: none;
}

div#qTip {
  	padding: 5px 10px;
   	display: none;
   	background: #b21715;
   	color: #ffffff;
   	font-family: 'Arial Narrow', sans-serif;
	font-size: 10px;
   	position: absolute;
   	z-index: 1000;
	letter-spacing: 0.05em;
  	opacity: 0.95;
	line-height: 10px;
	text-align: center;
	border-bottom: 1px solid #bf1a17;
}

@font-face {
	font-family: "Druk";
	src: url("../fonts/Druk-Wide-Bold.ttf");
}

@font-face {
	font-family: "Neumatic";
	src: url("../fonts/Neumatic-Compressed-Bold.otf");
	font-display: fallback;
}

/* MAIN */

body {
	background-color: #030303;
	color: #ffffff;
	font: normal 12px 'Inter', sans-serif;
	line-height: 24px;
}

main {
	margin: 50px auto;
	width: 100%;
	max-width: 1200px;
	display: block;
}

/* HEADER */

header {
	width: 100%; height: 480px;
	background-image: url("../images/header.png");
	background-position: center center;
	background-repeat: no-repeat;
	margin: 70px auto 0 auto;
	position: relative;
	z-index: 20;
}

/* TOPBAR */

#topbar {
	top: 0;
	margin: 0 auto;
	padding: 20px 30px;
	width: 100%;
	background: rgba(3,3,3,0.9);
	display: block;
	box-sizing: border-box;
	overflow-x: hidden;
	position: fixed;
	z-index: 99;
}

#topbar #inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 2000px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#topbar #inner h1 {
	color: #ffffff;
	font: normal 12px/100% "Druk";
	text-transform: uppercase;
}

#topbar #inner h1 span {
	margin: 0 7px;	
	background-color: #ffffff;
	background-image: url("../images/x.png");
	background-position: center 41%;
	background-repeat: no-repeat;
	background-size: 110%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-box-decoration-break: clone;
}

nav.menubox { 
	width: 0; height: 100%;  
	position: fixed;
	z-index: 99;
	right: 0; top: 0;
	background-color: rgba(3,3,3,0.95);
	overflow: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

nav.menubox .mbox {
	position: relative;
	top: 50%; 
	width: 100%;
	text-align: center;
	transform: translateY(-50%);
}

nav.menubox .mbox ul.menu {
	counter-reset: li;
	width: 45%;
	margin: 0 auto;
}

nav.menubox .mbox ul.menu li {	
	counter-increment: li;
	width: 100%;
	padding: 20px 0;
	color: #ffffff;
	font: normal 18px/100% "Druk";
	text-transform: uppercase;
	border-bottom: 1px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav.menubox .mbox ul.menu li::after {
	content: counter(li, decimal-leading-zero);
	background: #ffffff;
	color: #030303;
	font: normal 9px/24px "Druk";
	width: 24px; height: 24px;
	border-radius: 100%;
}

nav.menubox .mbox ul.menu li a, #projects .proj ul.links li a, article a, #latest #photos #lbox a, #about .box a, footer ul#cred li a, #topbar #inner h1 a  {
	color: inherit;
	display: inline-block;
	text-decoration: none;	
	position: relative;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

nav.menubox .mbox ul.menu li a::before, #about .box a::before, #about .box a::after {
	content: '';
	position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
	inset: 0 0 0 0;
	background: #c9a00e;
	z-index: -1;
	display: block;
	transform: scaleX(0);
	transform-origin: bottom left;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

nav.menubox .mbox ul.menu li a:hover::before, nav.menubox .mbox ul.menu li a:focus::before, #about .box a::before, #about .box a:hover::after, #about .box a:focus::after { transform: scaleX(1); }
nav.menubox .mbox ul.menu li a:hover, nav.menubox .mbox ul.menu li a:focus { color: #030303; }

nav.menubox .closebtn {
	position: absolute;
	color: #ffffff;
	top: 20px; right: 45px;	
	padding: 8px;
	font-size: 60px;
	text-decoration: none;
	display: block;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

nav.menubox .closebtn:hover, nav.menubox .closebtn:focus { color: #c9a00e; }

#nb {
	width: 30px; height: 30px;
	position: relative;	
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#nb .navbar {
	margin: 7px 0; padding: 0;
	width: 100%; height: 2px;
	background: #ffffff;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    box-shadow: 0 0 3px 0 #030303;
    display: block;
}

#nb .navbar:first-of-type { width: 50%; }
#nb .navbar:last-of-type { width: 50%; float: right; margin: 0; }
#nb:hover { cursor: pointer; }

/* LATEST PROJECTS */

#projbox {
	width: 100%; max-width: 1200px;
	margin: -135px auto 0 auto;
	position: relative;
	z-index: 5;
}

#projbox h2 {
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
	font: normal 240px/100% "Neumatic";
	text-align: center;
	text-transform: uppercase;
	white-space: pre;
	-webkit-text-stroke: 0.5pt;
	-webkit-font-smoothing: antialiased;
	position: relative;
}

#projbox h2::after {
	content: '';
	position: absolute;
	width: 100%; height: 100%;
	left: 0; bottom: 0; right: 0;
	background-image: url("../images/bg-projects.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	margin: auto;
	z-index: 10;
}

#projects {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#projects .proj {
	padding-top: 30px;
	padding-left: 30px;
	width: 588px; height: 240px;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

#projects > :only-child { 
	margin-left: auto;
	margin-right: auto;
}

#projects .proj h3 {
	color: #ffffff;
	font: normal 12px/100% "Druk";
	text-transform: uppercase;
	letter-spacing: 0.025em;
	display: block;
}

#projects .proj .status {
	margin-top: 5px;
	margin-left: -60px;
	font: normal 60px/100% "Druk";
	text-transform: uppercase;
	-webkit-text-stroke: 0.5pt;
	-webkit-font-smoothing: antialiased;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-box-decoration-break: clone;
	mix-blend-mode: soft-light;
	display: block;
}

#projects .proj .synopsis {
	margin-top: 5px;
	max-width: 375px;
	max-height: 72px;
	font-size: 11px;
	text-align: justify;
	letter-spacing: 0.01em;
}

#projects .proj ul.links {
	counter-reset: li;
	margin-top: 5px;
	display: block;
}

#projects .proj ul.links li {	
	counter-increment: li;
	width: 15px;
	margin-right: 7px;
	color: #ffffff;
	font: normal 12px/15px "Druk";
	text-transform: uppercase;
	letter-spacing: 0.025em;
	display: inline-block;
	overflow: hidden;
	white-space: pre;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#projects .proj ul.links li:hover { width: 20%; }
#projects .proj ul.links li a::before, footer ul#cred li a::before {
	content: attr(data-hover);
	position: absolute;
	top: 100%;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

#projects .proj ul.links li a:hover, footer ul#cred li a:hover {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}

#projects .proj ul.links li::before {
	content: counter(li, decimal);
	background: #ffffff;
	color: #030303;
	margin-right: 7px;
	font: normal 9px/15px "Druk";
	width: 15px; height: 15px;
	text-align: center;
	display: inline-block;
	border-radius: 100%;
}

#projects .proj::before, #projects .proj::after, .featured::before, .featured::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    background: transparent;
    width: 0; height: 8px;
    display: inline-block;
    border-top: 8px solid #b03a0c;
    border-right: 8px solid transparent;
    z-index: 20;
}

#projects .proj::after, .featured::after {
	height: 16px;
	border-top: 16px solid #030303;
    border-right: 16px solid transparent;
	z-index: 15;
}

#projects .proj:nth-child(2)::before { border-top-color: #711b08; }
#projects .proj:nth-child(3)::before { border-top-color: #1a0568; }

/* POSTS */

section#content h3, #affiliates h3 {
	padding-bottom: 15px;
	color: #ffffff;
	font: normal 12px/100% "Druk";
	text-align: left;
	text-transform: uppercase;
	border-bottom: 1px solid #ffffff;
	display: block;
}

article {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ffffff;
}

article .post, article .post .entrybox, #about .execphpwidget {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

/* FEATURED IMAGES */

.featured {
	width: 200px;
	display: block;
	position: relative;
}

.featured img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	border-radius: 5px;
	position: relative;
	z-index: 10;
}

.featured::before { border-top-color: #ffffff; }

.featured .gallery {
	margin-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	background: rgb(3,3,3);
	background: -moz-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(20,20,20,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(20,20,20,1) 100%);
	background: linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(20,20,20,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030303",endColorstr="#141414",GradientType=1);
	color: #ffffff;	
	font: normal 9px/120% "Druk";
	text-align: center;
	text-transform: uppercase;
	box-sizing: border-box;
	border-radius: 5px;
	display: block;
}

section#content .featured .gallery h3 { display: none; }
.featured .gallery a {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #141414;
	display: block;
}

.featured .gallery a:last-of-type {
	border-bottom: none;
}

/* POST TITLES */

article .postbox {
	flex-grow: 1;
}

article .postbox .top span, #about #message .bottom span {
	width: 14px; height: 14px;
	background: #ffffff;
	border-radius: 100%;
	display: inline-block;
}

article .postbox .top span:first-of-type {
	margin-right: -3px;
	background: #c9110e;
}

article .even .postbox .top span:first-of-type {
	background: #c9a00e;
}

article .postbox h1.title, article .postbox h2 {
	max-width: 790px;
	color: #ffffff;
	font: normal 21px/100% "Druk";
	text-transform: uppercase;
	display: block;
}

article .postbox h1.title a:hover, .featured .gallery a:hover { color: #c9110e; }
article .even .postbox h1.title a:hover, .even .featured .gallery a:hover { color: #c9a00e; }
article .postbox h2 { max-width: 100%; color: #8f8f8f; margin-top: 25px; margin-bottom: 10px; }

/* POST CONTENT */

article .entrybox {
	margin-top: 10px;
}

article .entrybox .entry {
	width: 100%;
	max-width: 790px;
	padding: 25px 20px;
	background: #ffffff;
	color: #404040;
	text-align: justify;
	box-sizing: border-box;
	position: relative;
}

article .entrybox .entry::before, article .entrybox .entry::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    background: transparent;
    width: 0; height: 8px;
    display: inline-block;
    border-top: 8px solid #ffffff;
    border-left: 8px solid transparent;
    z-index: 20;
}

article .entrybox .entry::after {
	height: 16px;
	border-top: 16px solid #030303;
    border-left: 16px solid transparent;
	z-index: 15;
}

/* POST INFO */

article .entrybox .pinfo {
	max-width: 150px;
	flex-grow: 1;
}

article .entrybox .pinfo .date {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #ffffff;
	color: #030303;
	font: normal 12px/100% "Druk";
	text-align: center;
	text-transform: uppercase;
	display: block;
}

article .entrybox .pinfo ul.post-categories {
	margin-top: 15px;
	font-size: 8px;
	line-height: 120%;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

article .entrybox .pinfo ul.post-categories li {
	display: block;
}

article .entrybox .pinfo ul.post-categories li a {
	color: #858585;
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

article .entrybox .pinfo ul.post-categories li a:hover {
	color: #ffffff;
}

article .entrybox .pinfo ul.post-categories li::after {
	content: '';
	margin: 12px 0 12px -30px;
	width: calc(100% + 30px);
	height: 1px;
	background: rgb(3,3,3);
	background: -moz-linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(133,133,133,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(133,133,133,1) 100%);
	background: linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(133,133,133,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030303",endColorstr="#858585",GradientType=1);
	display: block;
	position: relative;
	float: left;
}

/* POST ELEMENTS */

article .entrybox .entry p, aside .sidebox p, article .entrybox .entry ul, aside .sidebox ul {
	margin: 0 0 12px 0;
}
 
article .entrybox .entry b, article .entrybox .entry strong {
	color: #030303;
	font-weight: 800;
}

article .entrybox .entry a, aside .sidebox a {
	color: #b03a0c;
	font-weight: 800;
	text-decoration: none;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

article .entrybox .entry a:hover, aside .sidebox a:hover {
	color: #15577d;
}

article .entrybox .entry img, article .entrybox .entry img a, aside .sidebox img, aside .sidebox img a {
	background: transparent;
	margin: 2px;
	padding: 2px;
	border: none;
	border-radius: 5px;
	filter: grayscale(0%);
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

article .entrybox .entry img:hover, article .entrybox .entry img a:hover, aside .sidebox img:hover, aside .sidebox img a:hover { 
	filter: grayscale(100%);
}
article .entrybox .entry ul li, aside .sidebox ul li {
	background-color: transparent;
	list-style: none;
	width: 100%;
	max-width: 100%;
	padding: 5px 0;
	margin: 6px auto;
	border-bottom: 1px solid #d9d9d9;
}

article .entrybox .entry ul li::before {
	content: '';
	margin: 0 9px 0 0;
	background-color: #d9d9d9;
	width: 6px; height: 6px;
	border-radius: 100%;
	display: inline-block;
	position: relative;
}

aside .sidebox ul li i {
	margin: 0 8px 0 0;
	font-size: 11px;
	color: #ff716e;
}

article .entrybox .entry blockquote, aside blockquote {
	width: 98%;
	margin: 25px auto 67px auto;
	padding: 25px;
	background: #ffffff;
	border: 2px solid #d9d9d9;
	border-radius: 10px;
	box-sizing: border-box;
	position: relative;
	z-index: 25;
}

aside blockquote {
	padding: 15px; 
	color: #939393;
	font-size: 12px; 
	font-style: italic;
	letter-spacing: 0.025em;
}

article .entrybox .entry blockquote p:last-of-type, aside blockquote p:last-of-type { margin: 0; }
article .entrybox .entry blockquote::before, aside blockquote::before {
	content: '';
	width: 40px;
	position: absolute;
	bottom: -3px; left: 50px;
	border: 6px solid #ffffff;
	z-index: 10;
}

article .entrybox .entry blockquote::after, aside blockquote::after {
	content: '';
	position: absolute;
	bottom: -42px; left: 50px;
	width: 40px; height: 40px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #d9d9d9;
	border-radius: 0 50px 0 0;
	z-index: 10; 
}

article .entrybox .entry blockquote cite {
	position: absolute;
	left: 120px; bottom: -40px;
	font: normal 24px/100% "Druk";
	text-transform: uppercase;
	z-index: 10;
}

article .entrybox .entry blockquote cite a {
	color: #d9d9d9;
}

article .entrybox .entry blockquote cite a:hover {
	color: #404040;
}

article a.more-link {
	margin: 25px auto 0 auto;
	font: normal 18px/100% "Druk";
	text-align: center;
	text-transform: uppercase;
	display: table;
	position: relative;
}

article a.more-link span {
	padding-top: 1px;
	background: #030303;
	color: #ffffff;
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	z-index: 25;
}

article a.more-link span::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	padding: 10px 15px;
	background: #c9110e;
	text-transform: uppercase;
	-webkit-transform: translateX(-110%);
	-moz-transform: translateX(-110%);
	transform: translateX(-110%);
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

article .even a.more-link span::before {
	background: #c9a00e;
}

article a.more-link span:hover::before {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}

aside .sidebox .affs a, aside .sidebox .affs a:hover { background-color: transparent; }
aside .sidebox .affs a.partner img { padding: 0; border: none; image-rendering: pixelated; }
aside .sidebox .affs a.ig img { margin-top: -30px; opacity: 0.95; }

ul#afftext {
    margin: 0 auto; padding: 0px;
    text-align: center;
    list-style-type: none!important;
    overflow: hidden;
}

ul#afftext li {
	background-color: transparent;
    width: 98px;
	margin: 3px; padding: 10px 0;
	font: normal 10px "Proxima Nova Thin";
    text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.25em;
    display: inline-block;
	vertical-align: middle;
	border: 4px double #d9d9d9;
	box-sizing: border-box;
    list-style-type: none!important;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}

ul#afftext li a { color: #ffffff; font-weight: inherit; }
ul#afftext li strong {
	font: normal 10px "Proxima Nova Bold";
	letter-spacing: 0.075em;
	display: block;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;	
}

ul#afftext li:hover a, #aff li:hover strong { text-decoration: none; }
ul#afftext li:hover { border-color: #1a1a1a; }
ul#afftext li:hover a { color: #1a1a1a; }
ul#afftext li::before { display: none; }
iframe, embed, object, video {
	max-width: 100%;
	margin: 0 auto;
	padding: 12px 0;
}

#searchform {
	margin: 0 auto;	
	color: #4a4a4a;
}

#searchform #s {
	background-color: #d9d9d9;
	color: #4a4a4a;
	margin: 0 auto; width: 100%;
	font: normal 14px "Proxima Nova";
	padding: 10px;
	text-transform: none;
	letter-spacing: 0.05em;
	border: none;
	box-sizing: border-box;
	display: block;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

#searchform input#s:focus { background-color: #f2f1f0; outline: none; }
input::-webkit-input-placeholder { color: #4a4a4a !important; }
input::-moz-placeholder { color: #4a4a4a !important; }
input::-ms-input-placeholder { color: #4a4a4a !important; }
#searchsubmit, .screen-reader-text { display:none; }

/* PAGINATION */

#pagination {
	padding-top: 12px;
	color: #ffffff;
	font: normal 12px "Druk";
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#pagination .total { 
	margin: 0 15px 0 0;
}

#pagination .next a, #pagination .prev a {
	font-size: 18px;
	color: #d9d9d9;
}

#pagination .next a:hover, article.rel a:hover { color: #c9a00e; }
#pagination .prev a:hover, article.rel .rel-right a:hover { color: #c9110e; }

/* RELATED */

article.rel {
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
}

article.rel .rel-left, article.rel .rel-right {
	flex: 1;
	white-space: nowrap;
	position: relative;
}

article.rel .rel-right { text-align: right; }

article.rel a {
	margin-left: 10px;
	font: normal 12px/100% "Druk";
}

article.rel .rel-right a {
	margin-left: 0;
	margin-right: 10px;
}

article.rel .rel-left::after, article.rel .rel-right::before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0;
	background: rgb(3,3,3);
	background: -moz-linear-gradient(-90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: -webkit-linear-gradient(-90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: linear-gradient(-90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030303",endColorstr="#030303",GradientType=1);
	width: 50%; height: 100%;
	display: table;
	z-index: 10;
}

article.rel .rel-right::before {
	right: unset; left: 0;
	background: -moz-linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
}

/* COMMENTS */

article.nbr { border-bottom: none; }
article.alt .postbox h1.title, article.alt .entrybox .entry {
	max-width: 100%;
}

article .commentsbox .entry {
	width: 100%; max-width: 100%;
	padding: 25px 0;
	color: #404040;
	text-align: justify;
	box-sizing: border-box;
	position: relative;
}

article .entrybox .entry ol.commentslist li {
	list-style-type: none;
	background-color: transparent;
	text-indent: 0px;
	border: none;
	box-shadow: none;
	line-height: 24px;
}

article .entrybox .entry ol.commentslist li::before { content: ''; display: none; }
.commentslist li p { line-height: 24px; }

ol, ul { list-style: none; }

article .entrybox .entry ol.commentslist ul.children {
	margin: 25px 0 25px 15px;
	padding: 0 15px;
	background-color: transparent;
	border-left: 2px solid #d9d9d9;
	box-sizing: border-box;
}

article .entrybox .entry ol.commentslist li .avatar { float: left; margin-right: 8px; }

article .entrybox .entry ol.commentslist cite, article .entrybox .entry ol.commentslist cite a {
	background-color: transparent;
	color: #404040;
	font-style: normal;
}

article .entrybox .entry ol.commentslist .comment-meta a { background-color: transparent; color: #404040; }

article .entrybox .entry ol.commentslist p {
	margin: 15px 0px;
	text-transform: none;
	text-align: left;
}

article .entrybox .entry ol.commentslist .cancel-comment-reply {
	margin-left: 10px;
}

#commentform input[type=text], #commentform textarea {
	outline: none;
	margin: 0 10px 15px 0; padding: 7px;
	background-color: #d9d9d9;
	color: #404040;
	font: normal 12px/24px 'Inter', sans-serif;
	border: 1px solid #d9d9d9;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
 
#commentform input[type=text]:focus, #commentform textarea:focus, article .entrybox .entry input:focus {
	background-color: #ffffff;
	border-color: #030303;
	outline: none !important;
}

article .entrybox .entry input {	
	margin: 0 10px 0 0;
	font-size: 13px; font-weight: 400;
	background-color: #030303;
	color: #6b6767;
	padding: 8px;
	text-transform: none;
	letter-spacing: 0.05em;
	border: 1px solid #f4f3f2;
	box-sizing: border-box;
}

article #submit {
	margin: 0; padding: 5px;
	font: normal 10px/100% "Druk";
	line-height: 100%;
    background: #030303; 
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
	letter-spacing: 0.01em;
    display: inline-block;
	border: none;	
	cursor: pointer;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
} 

article #submit:hover { background-color: #c9a00e; text-decoration: none; }
.error  { font-size: 11px; font-style: italic; padding: 5px 0; color: #b21715; }
input.error, textarea.error { background: #ff716e; color:#030303; }

/* LATEST */

#latest {
	width: 100%;
	max-width: 2000px;
	margin: 20px auto 0 auto;
	position: relative;
}

#latest::before {
	content: '';
	position: relative;
	background-image: url("../images/bg-photos.png");
	background-position: center top;
	background-repeat: no-repeat;
	width: 100%; height: 140px;
	display: block;
	z-index: 15;
}

#latest h2 {
	background-image: url("../images/bg-photos-h2.png");
	background-position: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 0;
}

#latest #photos { 
	margin-top: -42px;
	overflow: hidden;
	position: relative;
}

#latest #photos table {
	margin: 0 auto;
	background: #141414;
	border-spacing: 0;
	position: relative;
}

#latest #photos::after {
	content: '';
	position: absolute;
	width: 100%; height: 50px;
	left: 0; bottom: 0; right: 0;
	background-image: url("../images/bg-photos-bottom.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	margin: auto;
	z-index: 20;
}

#latest #photos img {
	background-color: transparent;
	margin: 0; padding: 0;
	width: 120px; height: 120px;
	filter: grayscale(100%);
	border: none;
	vertical-align: middle;
	object-fit: cover;
	mix-blend-mode: overlay;
}

#latest #photos #lbox, #affiliates ul li span {
	position: absolute;
	left: 0; bottom: -60%; right: 0;
	margin: auto;
	padding-top: 20px;
	background: rgb(3,3,3);
	background: -moz-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030303",endColorstr="#030303",GradientType=1);
	width: 100%; height: 30%;
	color: #ffffff;
	font: normal 10px/100% "Druk";
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: pre;
	opacity: 0;
	display: table;
	z-index: 15;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

#latest #photos #lbox span { 
	color: #c9a00e;
	font-weight: normal;
}

#latest #photos:hover #lbox, #affiliates ul li:hover span { bottom: 0; opacity: 1; }

/* AFFILIATES */

#affiliates {
	margin: 50px auto;
	width: 100%;
	max-width: 1200px;
	display: block;
}

#affiliates ul {
	margin-top: 25px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#affiliates ul li {
	margin: 5px;
	width: 175px; height: 100px;
	font: normal 8px/120% "Druk";
	text-align: center;
	text-transform: uppercase;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

#affiliates ul li span { font-size: 8px; }
#affiliates ul li:hover span { bottom: -10%; }
#affiliates ul li:hover::after { bottom: -30%; }

/* ABOUT */

#about {
	margin: 50px auto;
	width: 100%;
	align-items: center;
}

#about #joel {
	min-height: 250px;
	background-color: #c97300;
	background-image: url("../images/footer-joel.png");
	background-position: right center;
	background-repeat: no-repeat;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: relative;
	overflow: hidden;
	flex-grow: 1;
}

#about #joel::after, #about #mireille::after, #affiliates ul li::after {
	content: '';
	position: absolute;
	right: 0; bottom: -100%;
	background: rgb(3,3,3);
	background: -moz-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	background: linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030303",endColorstr="#030303",GradientType=1);
	width: 100%; height: 100%;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	display: table;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

#about .box {
	position: absolute;
	bottom: 0;
	color: #ffffff;	
	font-size: 7px;
	width: 100%;
	padding: 15px;
	text-transform: uppercase;
	letter-spacing: 0.45em;
	display: block;
	box-sizing: border-box;
	z-index: 20;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

#about .box span { display: block; }
#about #joel .box {
	right: -100%;
	text-align: right;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

#about #joel:hover .box { right: 0; }
#about #joel .box a::before, #about #joel .box a::after {	
	background: #ffffff;
	transform-origin: bottom right;
}

#about #message {
	max-width: 600px;
	font-size: 11px;
	color: #8f8f8f;
	text-align: justify;
}

#about #message h3 {
	margin-bottom: 15px;
	color: #ffffff;
	font: normal 60px/100% "Neumatic";
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	display: block;
}

#about #message p { 
	display: inline-block; 
	position: relative;
}

#about #message p strong {
	background: #ffffff;
	color: #030303;
	font: normal 10px/100% "Druk";
	text-transform: uppercase;
}

#about #message p b {
	color: #ffffff;
	font-weight: 400;
}

#about #message p::after {
	content: '';
	margin-top: 3px;
	margin-left: 15px;
	width: 88px; height: 35px;
	background-image: url("../images/j.png");
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
}

#about #message .bottom { margin-top: 15px; }
#about #message .bottom span:first-of-type {
	margin-right: -3px;
	background: #15577d;
}

#about #mireille {
	min-height: 250px;
	background-color: #ece2d6;
	background-image: url("../images/footer-mireille.png");
	background-position: left center;
	background-repeat: no-repeat;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	position: relative;
	overflow: hidden;
	flex-grow: 1;
}

#about #mireille .box {
	left: -100%;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

#about .box a {
	color: #030303;
	font: normal 12px/100% "Druk";
	letter-spacing: 0.01em;
	position: relative;
}

#about #joel .box a:first-of-type { margin-right: 10px; }
#about #mireille::after {
	left: 0;
	right: unset;
	border-radius: 5px 0 0 5px;
}

#about .box a:hover::after, #about .box a:focus::after { background: #ffffff; }
#about #joel .box a:hover::after, #about #joel .box a:focus::after { background: #c97300; }
#about #joel:hover::after, #about #mireille:hover::after { bottom: 0; }
#about #mireille:hover .box { left: 0; }

/* FOOTER */

footer {
	margin: 50px auto 0 auto;
	padding: 15px 15px 20px 15px;
	width: 100%;
	background: rgb(3,3,3);
	background: -moz-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(20,20,20,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(20,20,20,1) 100%);
	background: linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(20,20,20,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030303",endColorstr="#141414",GradientType=1);
	color: #ffffff;	
	font: normal 9px/120% "Druk";
	text-align: center;
	text-transform: uppercase;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	box-sizing: border-box;
	display: block;
	position: relative;
}

footer ul#cred {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

footer ul#cred li {
	display: inline-block;
	overflow: hidden;
}

footer ul#cred li a::before, #about #message p span { color: #c9a00e; }