@import url('reset.css');
@import url('plugins.css');
@import url('animate.css');
@import url('font-awesome.min.css');

/* GENERAL ------------------------------------------------------------ */

html {
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #000000;
}
body {
	font-family: 'Montserrat', sans-serif;
	background-color:#000;
	color:#fff;
	font-size:14px;
	line-height:26px;
	letter-spacing:1.5px;
	font-style:normal;
	font-weight:400;
	overflow:hidden;
	margin:0;
}
#preloader {
    position: fixed;
    top:0; left:0;
    right:0; bottom:0;
    background: #000;
    z-index: 200;
}
/* #loader {
	display:none;
    width: 100px;
    height: 100px;
    position: absolute;
    left:50%; top:50%;
    background: url(../imgs/loader.gif) no-repeat center 0;
    margin:-50px 0 0 -50px;
} */
#loader {
	display:none;
	content: '';
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAAV1BMVEXMzM7////MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM7MzM69URHAAAAAHHRSTlMAABw0NTc4Ojs9Pj9CVFZYWVpfYGVmadzg4fH2AKUIkgAAAOVJREFUeNrt1m0LwiAUBWC3cpVpb6626fn/vzMIthvXUsegF/B8FB+4bMI9IpYe6PlZ9ZSCv4PrdR5WdYjrzskcrH03abKA27KLxloTWKCrGV45AF6LIKGFV3xsmaM3D6tp7KRmV5yqCHOdsvL1f248APset8xW/HPcRCQ3soRJX0U0JykYnpWCC/4k7seYXGwmIjDG5mI7kUWYxj7MHnsoj6Tgv8H6EpetJLx00TELRFbdGYDbcUw2vdy9foUbsrmad4YIJc3xmmxaq7DEhdZYe2RHeypxS+sj6VVucS1N//fwkMB3UcYietnqxT0AAAAASUVORK5CYII=);
	-webkit-animation: spinner 2s linear infinite;
	-moz-animation: spinner 2s linear infinite;
	-ms-animation: spinner 2s linear infinite;
	-o-animation: spinner 2s linear infinite;
	animation: spinner 2s linear infinite;
}
@-webkit-keyframes spinner{
	0%{-webkit-transform:rotate(0deg)}
	100%{-webkit-transform:rotate(360deg)}
}
@-moz-keyframes spinner{
	0%{-moz-transform:rotate(0deg)}
	100%{-moz-transform:rotate(360deg)}
}
@-o-keyframes spinner{
	0%{-o-transform:rotate(0deg)}
	100%{-o-transform:rotate(360deg)}
}
@keyframes spinner{
	0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}
	100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}
}
strong {
	font-weight: bold;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top:0;
	margin-bottom:25px;
}
a, a:link, a:hover, a:active, a:visited {
	cursor:pointer;
	color: #fff;
	text-decoration:none;
	opacity:1;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
header a:hover, #submenu a:hover, #submenu-film a:hover, #filter-commercials a:hover, p a:hover, a:hover.button, input.button:hover, #homepage a:hover, footer a:hover, #links a:hover  {
	opacity:0.65;
}
section {
	clear:both;
}
u {
	text-decoration: none;
}
u, .underline {
	border-bottom:1px solid #fff;
	padding-bottom:4px;
}

/* GRID ---------------------------------------------------------------- */

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  padding-left: 0;
  padding-right: 0;
}
.container {
	max-width:1300px;
	padding-left:10px;
	padding-right:10px;
	margin-left:auto;
	margin-right:auto;
	box-sizing: border-box;
}
.clear {
	clear:both;
}	
#content {
	margin-top:120px;
}
#content.ishome {
	margin-top:0!important;
}

/* HEADER --------------------------------------------------------------- */

header {
	position:fixed;
	z-index:100;
	top:0;
	left:0;
	width:100%;
	background-color:#000;
	min-height:90px;
	margin:0;
	padding-top:27px;
}
header.ishome {
	background-color:rgba(0,0,0,0);
}
header .header-title {
	font-size:24px;
	line-height:24px;
	text-transform:uppercase;
	letter-spacing:2px;
}
header .header-title a {
	display:inline-block;
}
header .header-title a span.header-asc {
	display: inline-block;
	font-size:16px;
	line-height:18px;
    vertical-align: bottom;
}
header .header-line {
	margin-left:15px;
}
header .header-subtitle {
	font-size:11.9px;
	line-height:11.9px;
	text-transform:uppercase;
	color:#fff;
	margin-left:2px;
	margin-top:5px;
	letter-spacing:1px;
}

/* NAVIGATION ----------------------------------------------------------- */

#menu {
	font-size:12px;
	line-height:12px;
	font-weight:bold;
	letter-spacing:1px;
}
#menu ul {
	float:right;
	margin-top:10px;
}
#menu ul li {
	display:inline;
	margin-left:42px;
	padding-bottom:4px;
	text-transform:uppercase;
}
#menu ul li.current {
	border-bottom:1px solid #fff;
}
#submenu, #submenu-film, #filter-commercials {
	font-size:10px;
	line-height:10px;
	font-weight:bold;
	letter-spacing:1px;
	height:62px;
}
#filter-commercials {
	height:36px;
}
#submenu-film.submenu-commercials {
	height:26px;
}
#submenu ul, #submenu-film ul {
	float:right;
}
#submenu ul li, #submenu-film ul li {
	display:inline;
	margin-left:47px;
	text-transform:uppercase;
}
#submenu-film.submenu-commercials ul.filter-com li {
	margin-left:10px;
}
#submenu ul li a, #submenu-film ul li a, #filter-commercials ul li a {
	border:0;
	color:#A6A8AB!important;
}
#submenu ul li a.current, #submenu-film ul li a.current, #filter-commercials ul li a.current {
	padding-bottom:4px;
	border-bottom:1px solid #fff;
	color:#fff!important;
}
#filter-commercials {
	text-align:right;
	margin-right:195px;
}
#filter-commercials ul li {
	display:inline;
	margin-left:15px;
	text-transform:uppercase;
}
#filter-commercials ul li a.current {
	padding-bottom:4px;
	border-bottom:1px solid #fff;
	color:#fff!important;
}
#menu-mobile {
	display:none;
}
.slicknav_menu {
	display:none;
}
.button {
	display:inline-block;
	border:1px solid #fff;
	font-size:10px;
	text-transform:uppercase;
	text-align:center;
	padding:7px 14px;
	letter-spacing:0.75px;
	width:auto;
}
.button.download {
	background-image:url(../imgs/icon-download.jpg);
	background-repeat: no-repeat;
	background-position:right;
	padding-right:54px;
	margin-top:6px;
}
.button.fixed {
	min-width:100px;
}
.button.noborder-right {
	border-right:0;
}
.button.noborder-left {
	border-left:0;
}
.button.blue-hover:hover {
	opacity:1;
	color:#0099CC;
}
.button.noactive {
	border-color:#666;
	color:#666;
}

/* HOMEPAGE ----------------------------------------------------------- */

.scroll-down {
	position:fixed;
	left:0;
	right:0;
	bottom:50px;
	width:100%;
	text-align:center;
	opacity:0.75;
	z-index:100;
	-webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: 1;
}
.scroll-down img {
	cursor:pointer;
}
.caption-text {
    z-index:100;
    position:absolute;    
    color:white;
	text-align: left;
    position: relative;
	text-transform:uppercase;

}
.caption-title {
	font-size:43px;
	line-height:48px;
	font-weight:700;
	letter-spacing:4px;
}
.caption-subtitle {
	display:block;
	font-size:42px;
	line-height:48px;
	font-weight:400;
	letter-spacing:4px;
}
.caption-view {
	display:inline-block;
	font-size:22px;
	margin-top:25px;
	border-bottom: 2px solid #fff;
  	padding-bottom: 4px;
}
.caption-subtext {
	display:none; /* EXCP */
	font-size:14px;
	line-height:28px;
	margin-top:90px;
}
.caption-subtext .col-1 {
	width:25%;
	float:left;
}
.caption-subtext .col-2 {
	width:50%;
	float:left;
}
.section {
	background-size: cover;
	background-position: center center;
}


/* FILMS -------------------------------------------------------------- */

#portfolio {
	width:100%;
	padding:0; 
	margin:0;
}
.thumb-work-big {
	position:relative; 
	width:850px;
	height:540px;
	background-color:#050505;
}
.thumb-work-big.filtered {
	width:425px;
	height:270px;
}
.thumb-work {
	position:relative; 
	width:425px;
	height:270px;
	float:left;
	margin:0;
	background-color:#050505;
}
.thumb-work-big .files-container {
	width:850px;
	height:540px;
	overflow:hidden;
}
.thumb-work-big.filtered .files-container {
	width:425px;
	height:270px;
}
.thumb-work .files-container {
	width:425px;
	height:270px;
	overflow:hidden;
}
.thumb-work-big h2, .thumb-work h2 {
	position:absolute;
	top:0;
	left:0;
}
.thumb-work-big h2 a, .thumb-work h2 a {
	display:block;
	width:425px;
	height:270px;
	font-size:16px;
	line-height:20px;
	letter-spacing:1.5px;
	text-transform:uppercase;
    color: #fff; 
    background-color: rgba(255,255,255,0);
    padding: 32px 40px;
	-webkit-transition: all 0.75s ease-in-out;
    -moz-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
}
.thumb-work-big h2 a h3, .thumb-work h2 a h3 {
	font-size:12px;
	line-height:14px;
	margin-top:5px;
}
.thumb-work-big h2 a .category, .thumb-work h2 a .category {
	position:absolute;
	bottom:32px;
	left:40px;
	font-size:12px;
	line-height:14px;
	color:#444;
	opacity:0;
}
.thumb-work-big:hover > h2 a, .thumb-work:hover > h2 a {
	background-color: rgba(255,255,255,0.70);
	color:#000;
}
.thumb-work-big:hover > h2 a .category, .thumb-work:hover > h2 a .category {
	opacity:1;
}
.last {
	margin-right:0!important;
}
.fill {
	display:none;
}

/* ABOUT ME ----------------------------------------------------------- */

#about h2, #awards h2, #links h2 {
	display:inline-block;
	font-size:18px;
	color:#0099CC;
	margin-top:60px;
	margin-bottom:45px;
	text-transform:uppercase;
}
#awards h2, #links h2 {
	margin-top:95px;
	text-transform:uppercase;
}
.award {
	width:100%;
	display:inline-block;
	padding-bottom:35px;
}
.award-title {
	text-transform:uppercase;
	margin-bottom:0;
}
.award-subtitle {
	color:#A6A8A8;
}
.award-text {
	
}
#testimonials {
	display:inline-block;
	font-size:22px;
	line-height:35px;
	color:#0099CC;
	text-align:center;
	margin-top:140px;
	margin-bottom:45px;
}
#testimonials p.author {
	font-size:14px;
}
#testimonials p {
	padding:0 17%;
}
#testimonials .graf {
	position:absolute;
	left:0;
	top:9px;
}
#testimonials .line {
	margin-right:20px;
}
u, .link-category {
	display:inline-block;
	margin-bottom:30px;
}
.portrait img {
	width:100%;
	margin-top:7px;
	margin-bottom:80px;
}

/* CONTACT ----------------------------------------------------------- */

#contact-details h2, #contact-form h2 {
	display:inline-block;
	font-size:18px;
	color:#0099CC;
	margin-top:60px;
	margin-bottom:45px;
}
#contact-details h2, #contact-form h2 {
	margin-top:95px;
}
.contact-subtitle, .wysiwyg-color-gray {
	color:#A6A8A8;
}
.padding-right {
	padding-right:40px;
}
.padding-top {
	padding-top:100px;
}
.form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.form-control:focus {
	border-bottom-color:#fff!important;
}
.form-control {
	display: block;
	width: 100%;
	height: 45px;
	padding: 6px 0;
	font-size: 14px;
	line-height: 1.428571429;
	color: #fff;
	vertical-align: middle;
	background-color: #000;
	border: 0;
	border-bottom: 1px solid #666;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: border-bottom-color ease-in-out .15s;
	transition: border-bottom-color ease-in-out .15s;
	-webkit-transition: none;
	transition: none;
}
.textarea {
	border-top:1px solid #666;
	padding-top:15px;
}
.textarea:focus {
	border-top:1px solid #fff;
}
input {
	color:#fff;
	background-color:#000;
} 
.check-error {
	color:#FF0000;
}
.check-ok {
	color:#00FF00;
}
	
/* FILM -------------------------------------------------------------- */

iframe, embed, object {
	max-width: 100%;
}
video {
	max-width: 100%;
	height: auto;
}
.video-container {
	display:inline-block;
	position:relative;
	width:100%;
	margin-bottom:75px;
}
.video-player {
	float:right;
	clear:both;
	width:1080px;
	/* height:607px; */
}
#film h1 {
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
	margin-bottom:10px;
}
.film-subtitle {
	font-size:12px;
	line-height:20px;
	text-transform:uppercase;
  	color: #A6A8A8;
}
.film-subtext {
	margin-top:60px;
	font-size:12px;
	line-height:20px;
	text-transform:uppercase;
  	color: #A6A8A8;
}
#film-navigation {
	padding-top:75px;
	padding-bottom:85px;
	text-align:center;
}
.view-more {
	display:inline-block;
	font-size:18px;
	color:#0099CC;
	margin-left:50px;
	margin-bottom:45px;
}

/* FOOTER --------------------------------------------------------------- */

footer {
	margin-top:70px;
	margin-bottom:40px;
	font-size:10px;
	line-height:10px;
	font-weight:bold;
	letter-spacing:1px;
}
footer.ishome {
	display:none;
	position:fixed;
	z-index:10;
	bottom:0;
	left:0;
	width:100%;
	margin:0;
	padding-bottom:30px;
}
footer .share {
	text-align: center;
}
footer .credits {
	text-align: right;
}

/* MEDIA QUERIES -------------------------------------------------------- */

@media screen and (min-width:1400px){


}

@media screen and (max-width:1299px){	/* MD */

	.container {
		max-width:992px;
	}

	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container {
		width:648px;
		height:412px;
	}
	.thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:324px;
		height:206px;
	}
	.video-player {
		float:none;
		width:972px;
		/* height:547px; */
	}

}

@media screen and (max-width:991px){	/* SM */	
	
	.container {
		max-width:768px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:374px;
		height:237px;
	}
	.video-player {
		float:none;
		width:748px;
		/* height:421px; */
	}
	.pull-right {
  		float: none !important;
	}
	#testimonials {
  		margin-top: 60px;
  		margin-bottom: 25px;
	}
	.caption-text {
 		padding-left:50px;
		padding-right:50px;
	}
	.portrait img {
		margin-top:20px;
		margin-bottom:30px;
	}

}

@media screen and (max-width:767px){	/* XS */

	.container {
		max-width:768px;
	}
	#content {
  		margin-top: 90px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:748px;
		height:474px;
	}
	#testimonials {
		display:none;
	}
	#submenu, #submenu-film {
  		font-size: 13px;
  		line-height: 20px;
  		letter-spacing: 1px;
		text-align:right;
  		height: auto!important;
		margin-bottom:30px;
	}
	#filter-commercials {
		text-align: left;
		margin:0;
	}
	#submenu ul, #submenu-film ul {
  		float: none;
		display:block;
	}
	#submenu ul li, #submenu-film ul li {
  		display: block;
  		margin-left: 0;
	}
	#submenu ul li a.current, #submenu-film ul li a.current {
  		border:0;
	}
	.thumb-work-big h2 a, .thumb-work h2 a {
		padding: 22px 30px;
	}
	.thumb-work-big h2 a .category, .thumb-work h2 a .category {
		bottom: 22px;
  		left: 30px;
	}
	#about h2, #awards h2, #links h2, #contact-details h2, #contact-form h2 {
  		margin-top: 40px;
		margin-bottom: 20px;
	}
	#awards h2, #links h2 {
  		margin-top: 75px;
	}
	.pull-right {
  		float: none !important;
	}
	.padding-top {
  		padding-top: 20px;
	}
	.padding-right {
  		padding-right: 0;
	}
	.caption-text {
 		padding-left:10px;
		padding-right:10px;
	}
	.caption-subtext {
		margin-top:20px;
		font-size: 14px;
  		line-height: 24px;
	}
	.caption-subtext .col-1 {
		width:100%;
		float:none;
	}
	.caption-subtext .col-2 {
		width:100%%;
		float:none;
	}
	.caption-title {
  		font-size: 25px;
  		line-height: 28px;
  		letter-spacing: 2px;
	}
	.caption-subtitle {
  		font-size: 23px;
  		line-height: 28px;
  		letter-spacing: 2px;
	}
	.caption-view {
  		font-size: 16px;
  		margin-top: 15px;
  		padding-bottom: 2px;
	}
	.scroll-down {
		bottom:30px;
		/* display:none; */
	}
	.video-container {
		margin-bottom:55px;
	}
	.video-player {
		float:none;
		width:100%;
		/* height:169px; */
	}
	.film-subtext {
		margin-top: 40px;
	}
	#film-navigation {
  		padding-top: 55px;
  		padding-bottom: 65px;
	}
	.view-more {
		width:100%;
		margin: 0 auto 30px auto;
		text-align:center;
	}
	.link-category {
		margin-bottom:20px;
	}

	#menu {
		display:none;
	}
	.menus {
		position:fixed;
		top:0;
		left:0;
		z-index:10000;
	}
	.slicknav_menu {
		display:block;
		background: transparent;
		padding: 0;
		margin:0;
		font-size:14px;
	}
	.slicknav_btn {
		position:absolute;
		top:25px;
		right:10px;
		z-index:1001;
		background-color: transparent;
		margin: 0;
		padding-right:0;
	}
	.slicknav_menu .slicknav_menutxt {
		color: #fff;
		font-weight: normal;
		text-shadow: 0 0 0 #000;
	}
	.slicknav_menu .slicknav_icon-bar {
		background-color: #fff;
	}
	.slicknav_menu .slicknav_icon-bar {
		height: 2px;
		margin-bottom:4px;
		width:20px;
	}
	.slicknav_nav {
		background-color: #000;
		color: #fff;
		font-size: 16px;
		text-transform:uppercase;
		padding:22px 0;
	}
	/*
	.slicknav_nav ul {
		background-color:#000;
		position:absolute;
		top:0;
		right:0;
		width:100%;
		padding: 20px 0;
		margin: 0;
		text-align:left;
		z-index:199;
	}
	*/
	.slicknav_nav .slicknav_txtnode {
		display:none;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:300px;
		padding: 5px 10px 20px 10px;
		margin: 0px auto;
		color:#fff;
	}
	.slicknav_nav a:hover {
		background-color: #000;
		color: #fff;
	}
	footer .share {
		text-align: right;
	}
	footer .credits {
		display:none;
		text-align: center;
	}
	.cd-top {
  		display:none!important;
	}
	header a:hover, #submenu a:hover, #submenu-film a:hover, p a:hover, a:hover.button, input.button:hover, #homepage a:hover, footer a:hover, #links a:hover  {
		opacity:1;
	}

}

@media screen and (max-width:736px){	/* IPHONE 6 PLUS */

	.container {
		max-width:736px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:716px;
		height:453px;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:716px;
	}
	.xtra-margin-top {
		margin-top: 40px!important;
	}

}

@media screen and (max-width:667px){	/* IPHONE 6 */

	.container {
		max-width:667px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:647px;
		height:410px;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:647px;
	}
	.caption-subtext {
		display:none;
	}
	header .header-title {
  		font-size: 19px;
  		line-height: 19px;
	}
	header .header-title a span.header-asc {
		font-size:14px;
		line-height:19px;
		vertical-align:middle;
	}
	header .header-subtitle {
  		font-size: 9px;
  		line-height: 9px;
  		letter-spacing: 1.35px;
		margin-top: 0;
	}

}

@media screen and (max-width:600px){	/* SMALL TABLET */

	.container {
		max-width:600px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:580px;
		height:367px;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:580px;
	}
}

@media screen and (max-width:568px){	/* IPHONE 5, 5S */

	.container {
		max-width:568px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:548px;
		height:347px;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:548px;
	}

}

@media screen and (max-width:480px){	/* IPHONE 5, 5S */

	.container {
		max-width:480px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:460px;
		height:291px;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:480px;
	}

}

@media screen and (max-width:320px){	/* OLD IPHONES */

	.container {
		max-width:320px;
	}
	.thumb-work-big.filtered, .thumb-work-big.filtered .files-container, .thumb-work-big, .thumb-work-big .files-container, .thumb-work, .thumb-work .files-container, .thumb-work-big h2 a, .thumb-work h2 a {
		width:300px;
		height:190px;
	}
	.slicknav_nav a, .slicknav_nav a:visited, .slicknav_nav a:active {
		width:300px;
	}

}
