@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700|Montserrat:400,700');

/** ------------------------------
Project:  Int. Man of Danger
Version:  8.8
Last change:  01/07/2017
------------------------------ **/

@font-face {
    font-family: 'neue';
    src: url('../../fonts/neue.woff2') format('woff2'),
         url('../../fonts/neue.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


.bebas-neue-regular {
  font-family: "Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/** ------------------------------

01. basics
02. grid
03. typography
04. home
05. projects
06. about
07. misc
08. media

------------------------------ **/

/** 01. basics
==================== **/
body {
	font-family: helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.7;
	color: #999999;
	background: #ffffff;
	overflow-y: hidden;
	-webkit-font-smoothing: antialiased;
}

.fade {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	background: #ffffff;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}

.fade.hide {
	opacity: 0;
	visibility: hidden;
}

/** 02. grid
==================== **/
.container {
	width: 960px;
	margin: 0 auto;
	position: relative;
}

.container22 {
	width:80%;
	margin: 0 auto;
	position: relative;
}

.column {
	float: left;
	padding: 0 25px;
	position: relative;
}

.column:first-child {
	padding-left: 0;
}

.column:last-child {
	padding-right: 0;
}

.column.col-1 {
	width: 8.333%;
}

.column.col-2 {
	width: 16.666%;
}

.column.col-3 {
	width: 24.999000000000002%;
}

.column.col-4 {
	width: 33.332%;
}

.column.col-5 {
	width: 41.665%;
}

.column.col-6 {
	width: 49.998000000000005%;
}

.column.col-7 {
	width: 58.331%;
}

.column.col-8 {
	width: 66.664%;
}

.column.col-9 {
	width: 74.997%;
}

.column.col-10 {
	width: 83.33%;
}

.column.col-11 {
	width: 91.663%;
}

.column.col-12 {
	width: 99.99600000000001%;
}

.column.offset-by-1 {
	margin-left: 8.333%;
}

.column.offset-by-2 {
	margin-left: 16.666%;
}

.column.offset-by-3 {
	margin-left: 24.999000000000002%;
}

.column.offset-by-4 {
	margin-left: 33.332%;
}

.column.offset-by-5 {
	margin-left: 41.665%;
}

.column.offset-by-6 {
	margin-left: 49.998000000000005%;
}

.column.offset-by-7 {
	margin-left: 58.331%;
}

.column.offset-by-8 {
	margin-left: 66.664%;
}

.column.offset-by-9 {
	margin-left: 74.997%;
}

.column.offset-by-10 {
	margin-left: 83.33%;
}

.column.offset-by-11 {
	margin-left: 91.663%;
}

.row {
	margin-bottom: 100px;
}

.row2 {
	margin-bottom: 100px;
}

.container::after,
.row::after,
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/** 03. typography
==================== **/
h1,
h2,
h3,
h4,
h5,
h6 {
	/*font-weight: 600;*/
	color: #222222;
	/*margin-bottom: 15px;*/
}

h1 {
	font-size: 62px;
	font-family: "Neue", sans-serif;
	line-height: 0.9;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 26px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 18px;
}

p {
	margin-bottom: 25px;
}

p.no-margin {
	margin-bottom: 0;
}

a.link {
	position: relative;
	color: #222222;
}

a.link::after {
	content: '';
	width: 0;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 100%;
	background: #222222;
	transition: left 0.5s ease, width 0.5s ease;
}

a.link:hover::after {
	width: 100%;
	left: 0;
	transition: width 0.5s ease;
}

.light-content h1,
.light-content h2,
.light-content h3,
.light-content h4,
.light-content h5,
.light-content h6,
.light-content a.link {
	color: #ffffff;
}

.light-content a.link::after {
	background: #ffffff;
}

/** 04. home
==================== **/
#home {
	width: 100%;
	height: 100vh;
	position: relative;
	transition: all 1s cubic-bezier(0.6, 0.3, 0, 1);
}

#home.open-project {
	height: 60vh;
}

.previews {
	width: 35%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	overflow: hidden;
	transition: all 0.5s ease;
}

.previews.full {
	width: 100%;
}

.previews .preview {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

.previews .preview.active {
	opacity: 1;
	visibility: visible;
}

.previews .preview.fixed {
	background-attachment: fixed;
}

.previews .loader {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 100;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid rgba(34, 34, 34, 0.2);
	border-top: 2px solid #ffffff;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	animation: loader 1s infinite linear;
}

.previews .loader.visible {
	opacity: 1;
	visibility: visible;
}

@-webkit-keyframes loader {
	100% {
		-webkit-transform: rotate(360deg);
	}

}

@keyframes loader {
	100% {
		transform: rotate(360deg);
	}

}

.controls {
	width: 65%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	background: #1c1d20;
	overflow-y: auto;
}

.numbers {
	font-size: 700px;
    color: #f3f3f3;
    position: absolute;
    margin: -260px -220px -220px -150px;
    letter-spacing: -30px;
	/*overflow: hidden;*/
	}

.header {
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: 20px;
	padding: 60px 80px;
	position: relative;
    margin-bottom: 5px;
}

.main-title {
	position: relative;
	font-size:11px;
	letter-spacing: 0.8px;
	color: #a3a3a3;
}

.main-title .divider {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 1px;
	margin: 0 10px;
	background: #a3a3a3;
}

.about-link {
	font-weight: 800;
	font-size:13px;
	color: #fff;
	cursor: pointer;
	position: relative;
}

.about-link:hover {
	color:#565656;
}

.about-link::before {
	content: '';
	width: 50%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: -100%;
	background: #ffffff;
	transition: all 0.3s ease;
}


.about-link:hover::before {
	left: -75%;
	
}

.controls-list {
	left: 80px;
	position: absolute;
    margin-top: 200px;
}

.controls-list li {
	position: relative;
	line-height: 1.4;
}

.controls-list li.title {
	text-transform: uppercase;
	font-size: 7px;
	letter-spacing: 3px;
	margin-bottom: 10px;
	margin-top: 24px;
}

.controls-list li a {
	font-size: 46px;
	font-family: "Neue", sans-serif;
	/*font-weight: 700;*/
	color: #f1f1f1;
	cursor: pointer;
	position: relative;
}

.controls-list li a::after {
	content: '';
	width: 0;
	height: 10px;
	position: absolute;
	bottom: -8px;
	left: 100%;
	background: #f1f1f1;
	transition: left 0.5s ease, width 0.5s ease;
}

.controls-list li a:hover::after {
	width: 100%;
	left: 0;
	transition: width 0.3s ease;
}

.controls-list li .in {
	position: relative;
	top: -24px;
	font-size: 11px;
	margin-right: 5px;
	color:#3e3e3e;
}

.controls-list li .tag {
    position: relative;
	font-family: helvetica, sans-serif;
	left: 20px;
	display: block;
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 1px;
    top: -11px;
	color:#3e3e3e;
}

.tag {
    position: relative;
	font-family: helvetica, sans-serif;
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 1px;
	color:#a3a3a3;
}

.foot {
    position: relative;
	font-family: helvetica, sans-serif;
    font-size: 10px;
    font-weight: normal;
	color:#a3a3a3;
	letter-spacing: 1px;
}

.white {
    color:#fff;
}

.black {
    color:#000;
}

/** 05. projects
==================== **/
.project-content-inner {
	padding: 150px 0 0 0;
	overflow: hidden;
}

.project-image {
	margin-bottom: 50px;
}

.project-image2 {
	margin-bottom: 0px;
}

.project-image img {
	display: block;
	margin: 0 auto;
}

.close-project {
	position: fixed;
	right: 50px;
	top: 50px;
	z-index: 100;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	/*background: #222222;*/
	border: 2px solid rgba(226, 226, 226, 1);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	transform: scale(0.5);
}

.close-project:hover {
	border: 2px solid rgba(97, 97, 97, 0.5);
	transform: scale(1.5);
}

.close-project.visible {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.close-project .cross {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
}

.close-project .cross::before,
.close-project .cross::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	background: #a3a3a3;
}

.close-project .cross::before {
	top: 50%;
	margin-top: -1px;
	transform: rotate(45deg);
}

.close-project .cross::after {
	bottom: 50%;
	margin-bottom: -1px;
	transform: rotate(-45deg);
}

/** 06. about
==================== **/
#about {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	background: #000000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

#about.visible {
	opacity: 1;
	visibility: visible;
}

#about #about-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	overflow-y: scroll;
	padding: 30vh 0 10vh 0;
}

.about-big-title {
	text-align: left;
	color: #ffffff;
}

.social {
	text-align: center;
}

.social li {
	display: inline-block;
	margin: 0 25px;
}

.social li a {
	font-size: 14px;
}

.copy {
	text-align: center;
	font-size: 10px;
}

/*.close-about {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 65px;
    right: 85px;
	margin-left: -10px;
	cursor: pointer;
}*/

.close-about {
	position: fixed;
	right: 85px;
	top: 50px;
	z-index: 100;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid rgba(200, 200, 200, 0.9);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.close-about:hover {
	border: 2px solid rgba(230, 230, 230, 1);
}


.close-about .cross {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
}

.close-about .cross:hover {
	color:#1E1E1E;
}

.close-about span::before,
.close-about span::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	background: #ffffff;
}

.close-about span::before {
	top: 50%;
	margin-top: -1px;
	transform: rotate(45deg);
}

.close-about span::after {
	bottom: 50%;
	margin-bottom: -1px;
	transform: rotate(-45deg);
}

.no-pad {
    padding: 0 !important;
	margin: 0 !important;
}

/*.close-about span::before,
.close-about span::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	background: #ffffff;
}

.close-about span::before {
	top: 50%;
	margin-top: -1px;
	transform: rotate(45deg);
}

.close-about span::after {
	bottom: 50%;
	margin-bottom: -1px;
	transform: rotate(-45deg);
}*/

/** 07. misc
==================== **/
.float-left {
	float: left;
}

.float-right {
	float: right;
}

hr {
	display: block;
	height: 50px;
	position: relative;
}



#logohead {
		opacity:1;
		height:160px;
		left:0;
		top:0;
		padding:40px 50px;
		position:fixed;
		box-sizing:border-box;
		z-index:150;		
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	

#logo {
		position:relative;
		display:inline-block;
	}
	
	#logo a {
		display:block;
	}
	
	#logo img {
		display: block;
		height: 60px;
		width: auto;
		-webkit-transition: opacity 0.2s ease-in-out;
		-moz-transition: opacity 0.2s ease-in-out;
		-o-transition: opacity 0.2s ease-in-out;
		-ms-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
	
	#logo img.white-logo {
		position:absolute;
		top:0;
		left:0;
		opacity:0;
	}
	
	#logo img.black-logo {
		opacity:1;
	}
	
	.light-content #logo img.black-logo {
		opacity:0;
	}	
	
	.light-content #logo img.white-logo {
		opacity:1;
	}

/** 08. media
==================== **/
@media (max-width:1024px) {
	.container {
		width: 90%;
	}

}

@media (max-width:768px) {
	.column {
		width: 100% !important;
		margin: 0 0 30px;
		padding: 0;
	}

	.previews {
		width: 0;
	}

	.controls {
		width: 100%;
	}

	.controls .header {
		padding: 60px;
	}

	.controls .controls-list {
		/*bottom: 60px;*/
		left: 60px;
		/*position: relative;*/
    	margin-top: 100px;
	}
	
	#logohead {
    visibility:hidden;
}

}

@media (max-width:600px) {
	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 18px;
	}

	.previews .loader {
		width: 30px;
		height: 30px;
		right: 20px;
	}

	.controls .header {
		height: auto;
		padding: 40px;
		font-size: 14px;
	}

	.controls .main-title {
		display: block;
		float: none;
	}

	.controls .about-link {
		display: block;
		float: none;
		margin-top: 5px;
	}

	.controls .about-link::before {
		display: none;
	}

	.controls .controls-list {
		/*bottom: 40px;*/
		left: 40px;
	}

	.controls .controls-list li a {
		font-size: 30px;
	}

	.project-content-inner {
		padding: 100px 0 0 0;;
	}
	

	.close-project {
		width: 40px;
		height: 40px;
		right: 20px;
		bottom: 20px;
	}

	#about {
		font-size: 14px;
	}

	#about .contact-options {
		top: 40px;
		left: 30px;
	}

	#about .about-title {
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

	#about .close-about {
		top: 15px;
		right: 30px;
	}
	
	.controls-list li .tag {
    top: -8px;
	}
	
	.controls-list li .in {
    top: -14px;
	}
}

.vc_row {
		position:relative;
		z-index:1;
	}
	
	figure {
		margin:0;
		position:relative;
		display: inline-block;
	}
	
	figure img {
		max-width:100%;
	}
	
	.full img {
		width:100vw;
	}
	
	.full .container {
		width:100%;
		max-width:100%;
		padding:0;
	}	
	
	.right
	{
		text-align:right;
	}
	
	.center
	{
		text-align:center;
	}
	
	.cfoot	
	{
		padding: 0 10vh 80px 10vh;
    	width: 100%;
	}
	




/*.controls-list li .tag a::after {
	content: '';
	width: 0;
	height: 3px;
	position: absolute;
	bottom: -2px;
	left: 100%;
	background: #222222;
	transition: left 0.5s ease, width 0.5s ease;
}

.controls-list li .tag a:hover::after {
	width: 100%;
	left: 0;
	transition: width 0.5s ease;
}*/

/*#loader-mask {
		opacity:1;
		height:40px;
		width:40px;
		top:60px;
		right:70px;
		z-index:5;
		position:absolute;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	#loader-mask.disable {
		opacity:0;
	}
	
	#loader-mask #loader {
		margin: 0px auto;
		font-size: 10px;
		position: relative;
		text-indent: -9999em;
		border-top: 2px solid rgba(0, 0, 0, 0.4);
		border-right: 2px solid rgba(0, 0, 0, 0.4);
		border-bottom: 2px solid rgba(0, 0, 0, 0.4);
		border-left: 2px solid rgba(0, 0, 0, 0.8);
		-webkit-transform: translateZ(0);
		-ms-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-animation: load8 1.1s infinite linear;
		animation: load8 1.1s infinite linear;
	}
	
	#loader-mask.light-content #loader {
		border-top: 2px solid rgba(255, 255, 255, 0.4);
		border-right: 2px solid rgba(255, 255, 255, 0.4);
		border-bottom: 2px solid rgba(255, 255, 255, 0.4);
		border-left: 2px solid rgba(255, 255, 255, 0.8);
	}

	#loader-mask #loader, #loader-mask #loader:after {
	   border-radius: 50%;
	  width: 36px;
	  height: 36px;
	}
	
	@-webkit-keyframes load8 {
	  0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	  }
	  100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	  }
	}
	
	@keyframes load8 {
	  0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	  }
	  100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	  }
	}
	
	#close-project {
		width:40px;
		height:40px;
		border:2px solid rgba(0,0,0,0.4);
		box-sizing:border-box;
		opacity:1;
		top:60px;
		right:70px;
		position:absolute;
		border-radius:40px;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		z-index:10;
		cursor:pointer;
		overflow:hidden;
	}
	
	#close-project span {
		width: 16px;
		height: 2px;
		background: #000;
		position: absolute;
		top: 17px;
		left: 10px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-webkit-transition: transform 0.2s ease-in-out 0.2s, background 0.2s ease-in-out 0s;
		transition: transform 0.2s ease-in-out 0.2s, background 0.2s ease-in-out 0s;
	}
	
	.light-content #close-project span {
		background: #fff;
	}
	
	#close-project span:nth-child(2) {
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}
	
	 #close-project.disable span {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
	}
	
	.light-content #close-project {
		border:2px solid rgba(255,255,255,0.4);
	}
	
	#close-project:hover {
		border:2px solid rgba(0,0,0,1);
	}
	
	.light-content #close-project:hover {
		border:2px solid rgba(255,255,255,1);
	}
	
	#close-project.disable {
		opacity:0;
	}*/
	
	