/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700);
@import url(http://fonts.googleapis.com/css?family=Roboto%20Slab:300,400,500,600,700);

p {
	font-size: 14px;
	line-height: 22.4px;
	color: #333;
	text-align: justify;
}
h1 {
	font-size: 65px;
	color: #E1E1E1;
	text-align: center;
}
h2 {
	font-size: 34px;
	color: #E1E1E1;
	text-align: center;
}
h3 {
	font-size: 28px;
	color: #008CFF;
	font-weight: 300;
	text-align: center;
}
h4 {
	font-size: 30px;
	color: #E1E1E1;
	font-weight: 400;
	text-align: center;
}
h5 {
	font-size: 14px;
	color: #737373;
	font-weight: 400;
	text-align: center;
}

.btn {
	background-color: #3bc492;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.btn:hover, .btn:focus {
	background-color: #3d3d3d;
	color: #fff;
}
.btn-large {
	padding: 15px 40px;
}

/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
	color: #3D72B1;
	font-weight: 600;
}
a:hover, a:focus {
	color: #43A0DB;
	text-decoration: none;
	-moz-transition: background-color, color, 0.3s;
	-o-transition: background-color, color, 0.3s;
	-webkit-transition: background-color, color, 0.3s;
	transition: background-color, color, 0.3s;
}
body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #6c7279;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
}
.section {
	padding: 25px 0;
}
.no-padding {
	padding: 0;
}
.no-gutter [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}
.space {
	margin-top:60px;	
}

/* ------------------------------------------------------------------------------
	Header
-------------------------------------------------------------------------------*/
#header {
	position: fixed;
	width: 100%;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.25);
}
#header .header-content {
	margin: 0 auto;
	max-width: 1170px;
	padding: 35px 0 15px 0;
	width: 100%;
}
#header .logo {
	float: left;
	margin-top: -20px;
}
#header.fixed {
	-moz-transition: background-color 1s linear;
	-o-transition: background-color 1s linear;
	-webkit-transition: background-color 1s linear;
	transition: background-color 1s linear;
	background-color: rgba(0, 0, 0, 0.75);
}
#header.fixed .header-content {
	border-bottom: 0;
	padding: 35px 0 15px 0;
}
#header.fixed .nav-toggle {
	top: 18px;
}

/* ------------------------------------------------------------------------------
	Navigation
-------------------------------------------------------------------------------*/
.navigation.open {
	opacity: 0.9;
	visibility: visible;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.navigation {
	float: right;
}
.navigation li {
	display: inline-block;
}
.navigation a {
	color: rgba(220, 220, 220, 1);
	font-size: 16px;
	font-weight: 600;
	margin-left: 40px;
	letter-spacing: 5px;
	text-transform: uppercase;
}
.navigation a:hover, .navigation a.active {
	color: #fff;
}
.nav-toggle {
	display: none;
	height: 44px;
	overflow: hidden;
	position: fixed;
	right: 5%;
	text-indent: 100%;
	top: 32px;
	white-space: nowrap;
	width: 44px;
	z-index: 99999;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.nav-toggle:before, .nav-toggle:after {
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}
.nav-toggle:before {
	background-color: rgba(0, 0, 0, 0.5);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-toggle:after {
	background-color: rgba(0, 0, 0, 0.0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.nav-toggle span {
	background-color: #fff;
	bottom: auto;
	display: inline-block;
	height: 3px;
	left: 50%;
	position: absolute;
	right: auto;
	top: 50%;
	width: 18px;
	z-index: 10;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.nav-toggle span:before {
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-webkit-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-webkit-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.nav-toggle.close-nav:after {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.nav-toggle.close-nav span {
	background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
	background-color: #fff;
}
.nav-toggle.close-nav span:before {
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}

/* ------------------------------------------------------------------------------
	Banner
-------------------------------------------------------------------------------*/
.banner {
	background-color: #3D72B1;
}
.banner-gems {
	background-color: #06C;
}
.banner-boulder {
	background-color: #090;
}
.banner-draw {
	background-color: #2DC1FF;
}
.banner-dreams {
	background-color: #7A1670;
}
.banner-flow {
	background-color: #D93232;
}
.banner-maze {
	background-color: #00144D;
}
.banner-perspective {
	background-color: #9D5313;
}
.banner-redesign {
	background-color: #6B1FB5;
}
.banner-mikado {
	background-color: #27BF7F;
}
.banner-films {
	background-color: #C16413;
}
.banner-busking {
	background-color: #E5B718;
}
.banner-underwater {
	background-color: #1C076F;
}
.banner-videomapping {
	background-color: #510964;
}
.banner-wired {
	background-color: #7746D0;
}
.banner-graphic {
	background-color: #C18501;
}
.banner-visuals {
	background-color: #550000;
}
.banner-toxic {
	background-color: #212F96;
}
.banner-hacking {
	background-color: #E88900;
}
.banner-animation {
	background-color: #00BB9B;
}
.banner-tshirts {
	background-color: #A67019;
}
.banner-museumguides {
	background-color: #212F80;
}
.banner-popuphostel {
	background-color: #BB7400;
}
.banner-ns {
	background-color: #000000 ;
}

.banner-text {
	padding-top: 3%;
	padding-bottom: 5%;
}

.parallax-text {
	padding-top: 30%;
}

.parallax-text-s {
	padding-top: 5%;
}
.parallax-text .banner-text h1 {
	color: #fff;
	font-family: "Roboto Slab", sans-serif;
	font-size: 64px;
	font-weight: 700;
	text-transform: uppercase;
}

.parallax-text .banner-text h2 {
	font-size: 30px;
	color: #fff;
	font-family: "Roboto Slab", sans-serif;
}

.parallax-text .banner-text p {
	color: #fff;
	font-size: 19px;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: 24px;
	margin-top: 30px;
	margin-bottom: 80px;
}

/* ------------------------------------------------------------------------------
	Parralax
-------------------------------------------------------------------------------*/
.parallax {
	/* Set a specific height */
    min-height: 700px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-mid {
    min-height: 500px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ------------------------------------------------------------------------------
	Description
-------------------------------------------------------------------------------*/	
.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; }
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.full img {
	max-width: 96.5%;
    max-height: 96.5%;
	margin: 1% 1% 1% 1%; }
.half img {
	max-width: 47%;
    max-height: 47%;
	margin: 1% 1% 1% 1%; }
.third img {
	max-width: 30.5%;
    max-height: 30.5%;
	margin: 1% 1% 1% 1%; }
.quarter img {
	max-width: 22.3%;
	max-height: 22.3%;
	margin: 1% 1% 1% 1%; }
	
.portrait img {
	width: 210px;
	height: 286px;	
	margin: 10px 10px; }
.landscape img {
	width: 440px;
	height: 286px;	
	margin: 10px 10px;
	display:inline-block; }
.box img {
	width: 286px;
	height: 286px;	
	margin: 10px 10px;
	display:inline-block; }
	
.swipebox:hover img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }	
/* ------------------------------------------------------------------------------
	Filters
-------------------------------------------------------------------------------*/
.grid {
width: 100%;
/* display:flex; */
}

.filters li {
  cursor: pointer; 
  display: inline-block;
  padding: 10px;
  margin-bottom: 20px; }
.filters li.active {
  font-weight: 600;
  color: #8ab92d; }

/* ------------------------------------------------------------------------------
	Works
-------------------------------------------------------------------------------*/
#works:target:before {
content:"";
display:block;
height:90px; /* fixed header height*/
margin:-90px 0 0; /* negative fixed header height */ }

.work {
  -moz-box-shadow: 0 0 0 2px #fff;
  -webkit-box-shadow: 0 0 0 2px #fff;
  box-shadow: 0 0 0 2px #fff;
  overflow: hidden;
  position: relative;
  visibility: hidden; }
.work img {
	width:100%;
	height:100%; }
.work .overlay {
    background: rgba(64, 35, 97, 0.9);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -moz-transition: opacity, 0.3s;
    -o-transition: opacity, 0.3s;
    -webkit-transition: opacity, 0.3s;
    transition: opacity, 0.3s; }
.work .overlay-caption {
    position: absolute;
    text-align:center;
    top: 80%;
    width: 100%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
.work h5, .work p, .work img {
    -moz-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s; }
.work h5, .work p {
    color: #fff;
    margin: 0;
    opacity: 0;	
	text-align: center; }
.work h5 {
    margin-bottom: 5px;
    -moz-transform: translate3d(0, -200%, 0);
    -ms-transform: translate3d(0, -200%, 0);
    -webkit-transform: translate3d(0, -200%, 0);
    transform: translate3d(0, -200%, 0); }
.work p {
    -moz-transform: translate3d(0, 200%, 0);
    -ms-transform: translate3d(0, 200%, 0);
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0); }
.work-box:hover img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }
.work-box:hover .overlay {
  opacity: 0.8; }
  .work-box:hover .overlay h5, .work-box:hover .overlay p {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
	
/* ------------------------------------------------------------------------------
	Work animation
-------------------------------------------------------------------------------*/
.work:nth-child(1) {
  -moz-animation-delay: 0.15s;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s; }
.work:nth-child(2) {
  -moz-animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }
.work:nth-child(3) {
  -moz-animation-delay: 0.45s;
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s; }
.work:nth-child(4) {
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.animated {
  visibility: visible; }

/* ------------------------------------------------------------------------------
	Footer
-------------------------------------------------------------------------------*/
.footer {
	text-align: center;
	min-height: 40px;
}
.footer p {
	font-family: "Roboto", sans-serif;
	font-size: 11px;
	color: #7f7f7f;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	margin-top: 12px;
}

.footerblock {
	min-height: 30px;
}

/* ------------------------------------------------------------------------------
	About
-------------------------------------------------------------------------------*/
.about img
{
width: 100%;
border-radius:50%;	
}

.about h1 {
	font-size: 30px;
	color: #314688;
	font-weight: 600;
	text-align: left;
}
.about h2 {
	margin-top: 0;
	font-size: 20px;
	color: #4F73B9;
	font-weight: 600;
	text-align: left;
}

/* ------------------------------------------------------------------------------
	Contact form
-------------------------------------------------------------------------------*/
.conForm
{
margin-top:50px;	
}
.conForm input {
	background:#fafafa;
	color:#797979;
	padding:15px 30px;
	border:none;
	margin-right:3%;
	margin-bottom:30px;
	outline:none;
	font-style:normal;
	border:#f4f3f3 1px solid;
	font-size:15px;
}
.conForm input.noMarr {
	margin-right:0px;
}
.conForm textarea {
	background:#fafafa;
	color:#797979;
	padding:15px 30px;
	margin-bottom:18px;
	outline:none;
	height:300px;
	font-style:normal;
	resize:none;
	font-size:15px;
	border:#f4f3f3 1px solid;
}
.conForm .submitBnt {
	background:#3D72B1;
	color: #fff;
		padding: 15px 40px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.conForm .submitBnt:hover {
	background:#43A0DB;
	color:#fff;
}
.error_message {
    color: #ff675f;
    font-weight: 500;
    padding-bottom: 15px;
}
#success_page h3 {
    color: #5ed07b;
    font-size: 17px;
    font-weight: 700;
}