@charset "UTF-8";

/*
//  FONTS
*/

@font-face {
    font-family: 'LondonBetweenRegular';
    src: url('/fonts/londonbetween.eot');
    src: url('/fonts/londonbetween.eot?#iefix') format('embedded-opentype'),
         url('/fonts/londonbetween.woff2') format('woff2'),
         url('/fonts/londonbetween.woff') format('woff'),
         url('/fonts/londonbetween.ttf') format('truetype'),
         url('/fonts/londonbetween.svg#londonbetweenregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('/fonts/OpenSans-Light-webfont.eot');
    src: url('/fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Light-webfont.woff') format('woff'),
         url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'),
         url('/fonts/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('/fonts/OpenSans-Regular-webfont.eot');
    src: url('/fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('/fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('/fonts/OpenSans-Semibold-webfont.eot');
    src: url('/fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'),
         url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
         url('/fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
    font-weight: 700;
    font-style: normal;
}

/*
//  GENERAL STYLES
*/

* { margin: 0; padding: 0; }
header, footer, section, aside, nav, article { display: block; }
body {
	width: 100%;
	word-wrap: break-word;
	font-family: "OpenSans", sans-serif;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.25em;
	color: #333;
	background: #fafafa;
	overflow-x: hidden;
	overflow-y: scroll;
}
p {
	margin: 20px 0;
}
ul, ol {
	list-style: none;
}
h1 {
	font-size: 1.75em;
	color: #fff;
	text-transform: uppercase;
	line-height: normal;
}
.txt-md { font-size: 1.12em; }
.txt-sm { font-size: 0.8em; }
h1, .subtitle {
	font-family: "LondonBetweenRegular", sans-serif;
	font-weight: normal;
	margin: 20px 0;
}
a{
	color: #377;
	text-decoration: none;
}
.hover-border a {
	border-bottom: transparent 1px solid;
	transition: border 0.2s;
	-moz-transition: border 0.2s;
	-o-transition: border 0.2s;
	-webkit-transition: border 0.2s;
}
.hover-border a:hover, 
.hover-border a:focus, 
.hover-border a:active, 
.hover-border a.active{
	border-bottom-color: inherit;
}
a img{text-decoration:none;}
img{border:none; outline:none;}
hr {
	border: none;
    height: 1px;
    background-color: #ddd;
}
footer {
	margin: 20px 0;
}
.btn {
	display: inline-block;
    padding: 12px 16px;
    margin: 20px 0;
    border: #599 1px solid;
    text-align: center;
    color: #599;
    font-weight: bold;
    transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	-webkit-transition: background-color 0.3s;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.btn:hover {
	background-color: #fff;
}
#content {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 50px 20px 20px 20px;
	transition: left 0.2s;
	-moz-transition: left 0.2s;
	-o-transition: left 0.2s;
	-webkit-transition: left 0.2s;
}
.mobile-sidebar #content {
	left: 50px;
}
.column1 {
	width: 25%;
}
.column2 {
	width: 33%;
}
.column4 {
	width: 100%;
}

/*
// SIDEBAR
*/

#sidebar {
    position: fixed;
    top:0;
    min-height: 100%;
    left: -380px;
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    padding: 0 20px;
    font-weight: 200;
    color: #fff;
    background-color: #599;
    transition: left 0.2s;
	-moz-transition: left 0.2s;
	-o-transition: left 0.2s;
	-webkit-transition: left 0.2s;
	z-index: 10;
}
#sidebar hr {
	background-color: #377;
}
#sidebar a {
	color: #044;
	font-weight: bold;
}
.mobile-sidebar #sidebar {
	left: 0;
	box-shadow: 1px 0px 4px rgba(0,0,0,0.25);
}
#profiles {
	margin: 10px 0 0 10px;
}
#profiles li {
	display: inline-block;
    width: 40px;
    margin: 0 20px 10px 0;
}
#profiles img {
	width: 40px;
	height: 40px;
}
.mobile-sidebar #menu-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20,20,20,0.5);
	z-index: 9;
}
#contacts {
	margin: 20px 0;
}
#contacts li {
	list-style: none;
	margin: 10px 0;
	line-height: 1.5em;
}
#contacts h2 {
	font-size: 1.07em;
}
#contacts h3 {
	font-size: 1em;
	font-weight: 200;
	margin-left: 20px;
}
#contacts .btn {
	background: #66a3a3;
	background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    margin: 4px 0 0 0;
}
#contacts h3 a:hover {
	background: #77aeae;
	background: rgba(255,255,255,0.2);
}
#contacts .phone {
	padding-left: 20px;
}

/*
// NAV
*/

nav {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	text-align: right;
	background-color: #599;
	z-index: 5;
	transition: top 0.2s;
	-moz-transition: top 0.2s;
	-o-transition: top 0.2s;
	-webkit-transition: top 0.2s;
}
.mobile-sidebar nav {
	top: -50px;
}
nav ul li {
	display: inline-block;
	padding: 10px 15px;
}
nav ul li a {
	display: block;
	padding: 5px 0;
	color: #fff;
	font-weight: bold;
}
nav #menu-btn {
	position: absolute;
	top: 15px;
	left: -20px;
	transition: left 0.2s 0.5s;
	-moz-transition: left 0.2s 0.5s;
	-o-transition: left 0.2s 0.5s;
	-webkit-transition: left 0.2s 0.5s;
}

/*
// PHOTOS
*/

.img-wrapper {
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
	-moz-column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    column-break-inside: avoid;
}
.img-wrapper img {
	position: absolute;
	width: 100%;
	height: 100%;
}

/*
// RESUME
*/

#content-resume {
    /*max-width: 768px;*/
}
#content-resume table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	font-size: 0.9em;
}
#content-resume th {
	font-size: 1.6em;
	text-align: left;
	line-height: 3em;
	color: #599;
}
#content-resume tr {
	border-bottom: #ddd 1px solid;
}
#content-resume td {
    padding: 8px 0;
}
#content-resume td span {
	font-style: italic;
	padding-right: 10px;
}

/*
// REELS
*/
#reel-list li {
    margin: 20px 0;
}

/*
// MEDIA QUERIES
*/

@media all and (min-width: 380px) {
	nav ul li {
		padding-right: 20px;
		padding-left: 20px;
	}
	h1 {
		font-size: 2.2em;
		line-height: inherit;
	}
}
@media all and (min-width: 769px) {
	#sidebar {
		left: 0;
	}
	#content,
	nav ul {
		margin-left: 380px;
	}
	nav {
		text-align: center;
		background-color: #fff;
		background-color: rgba(250, 250, 250, 0.8);
	}
	nav ul li a {
		font-size: 1.15em;
		color: #599;
	}
	#content-photos {
		margin-top: -10px;
	}
}
@media all and (max-width: 768px) {
	nav #menu-btn:not(.open) {
		left: 20px;
	}
}
@media all and (min-width: 1280px) {
	#sidebar {
		max-width: 30%;
		padding: 20px;
	}
	.sidebar-content {
		max-width: 480px;
		margin: 0 auto;
	}
	#content,
	nav ul {
		margin-left: 30%;
	}
	#content-reel,
	#content-resume {
		max-width: 900px;
		margin: 0 auto;
	}
	#content-photos {
	    -moz-column-count: 2;
	    -moz-column-gap: 20px;
	    -moz-column-fill: balance;
	    -webkit-column-count: 2;
	    -webkit-column-gap: 20px;
	    -webkit-column-fill: balance;
	    column-count: 2;
	    column-gap: 20px;
	    column-fill: balance;
	}
	nav ul li a {
		font-size: 1.25em;
	}
}
@media all and (min-width: 2180px) {
	#content-photos {
	    -moz-column-count: 3;
    	-webkit-column-count: 3;
    	column-count: 3;
    }
}