@charset "UTF-8";
/* CSS Document */

* {
	margin: 0; 
	padding: 0; 
	border: 0; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {font-family: 'BrandonGrotesque-Bold';
			src: url('../fonts/2BEFFA_0_0.eot');
			src: url('../fonts/2BEFFA_0_0.eot?#iefix') format('embedded-opentype'),
				 url('../fonts/2BEFFA_0_0.woff') format('woff'),
				 url('../fonts/2BEFFA_0_0.ttf') format('truetype');}


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

}

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

}


body {
	background-color: #1a1a1a;
	font-family: Arial, Helvetica, Verdana;
	font-size: 14px;
	line-height: 22px;
	color: #F2F2F2;
	min-height: 100%;
	position: relative;
	-webkit-text-size-adjust: none;
	font: 1.3em 'roboto_slabregular', sans-serif;
}

h1 {
	font: 2.4em 'BrandonGrotesque-Bold', sans-serif;
	text-transform: uppercase;
}

h2 {
	font: 1.2em 'roboto_slabregular', sans-serif;
	text-transform: uppercase;
	color: #E83338;
}

a {
	text-decoration: none;
	color: #E83338;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

a:hover {
	color: #0037a5;
}

.italic {
	font-style: italic;
	color: #BF0404;
	text-transform: uppercase;
}

.wrapper {
	width: 100%;
	background: #f1f1f1;
	overflow: hidden;
}

header {
	position: relative;
	text-align: center;
	background: #fff;
	font-size: 16px;
	font-weight: bold;
	color: #BF0404;
	line-height: 80px;
	width: 100%;
	height: 100px;
	padding: 0 50px;
	z-index: 10;
}

.logo {
	position: absolute;
	top: 25px;
	left: 20px;
}


.btn {
    text-decoration: none;
    padding:10px 25px;
    margin: 10px auto 20px ;
    display: block ;
    text-align: center;
    width: 250px;
    font-size: 1.7em;
    color: #E83338;
    border: 3px solid #E83338;
    background: none;
    -webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.btn:hover {
    color: #011640;
    background: #fafafa;
    border: 3px solid #011640;
}

.btn_small {
	text-decoration: none;
	padding: 5px;
	margin: -15px auto 36px;
	display: block;
	text-align: center;
	width: 165px;
	font-size: 1em;
	color:#011640;
	border: 3px solid #011640;
	background: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn_small:hover {
    color: #E83338;
    background: #fafafa;
    border: 3px solid #E83338;
}

.btn_small_mob {
	display: block;
	text-decoration: none;
	padding: 5px;
	margin: 25px auto;
	display: block;
	text-align: center;
	width: 165px;
	font-size: 1em;
	color:#fafafa;
	border: 3px solid #E83338;
	background: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.menu_triger {
background: url(../img/menu.svg) center center no-repeat transparent;
width: 40px;
height: 40px;
position: absolute;
top: 25px;
right: 20px;
}

/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background:rgba(27, 41, 82, 0.95);
}

/* Overlay closing cross */
.overlay .overlay-close {
	cursor: pointer;
	width: 80px;
	height: 80px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.overlay .overlay-close:hover {
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);}

/* Menu style */
.overlay nav {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
	height: 20%;
	height: calc(100% / 5);
	min-height: 54px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.overlay ul li a {
	text-decoration: none;
	font-weight: 300;
	display: block;
	color:  #E83338;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #E83338;
	
}

.overlay ul li a .line {
	width: 0;
	margin: 0 auto 0;
	border-bottom: 1px solid #fafafa;
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
}


.overlay ul li a:hover .line {
	width: 300px;
	border-bottom: 1px solid #fafafa;
}

/* Effects */
.overlay-slidedown {
	visibility: hidden;
	z-index: 999;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
	transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
	visibility: visible;
	z-index: 999;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

/*home page */

.content {
	margin-top: -100px;
	position: relative;
	background: #01193C;
	min-height: 100%;
}

.content::before{
	content: "";
	display: block;
	height: 100vh;
	min-height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(1, 10, 38, 0.69);
	position: absolute;
	border-bottom: 7px solid #B6D6F2;
	box-sizing: border-box;
}

.welcome_text {
	position: relative;
}	

.welcome {
	text-align: center;
	margin-top: 100px;
	text-align: center;
	padding: 15px;
	min-height: 430px;
}

.welcome h1 {
	color: #E83338;
	margin: 0 0 10px 0;
}

.welcome h2 {
	color: #fafafa;
	margin: auto;
	max-width: 800px;
	letter-spacing: 2px;
}

.welcome_line {
	border-bottom: 5px solid #E83338;
	width: 181px;
	margin: -12px auto 15px;
}

.welcome p {
	margin: 10px auto 16px;
	font: 1.1em 'BrandonGrotesque-Bold' ,sans-serif;
	text-transform: uppercase;
}

.up {
	max-width: 75px;
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 150px;
}

.down {
	max-width: 75px;
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 5%;
}

.desk {
	display: none;
	}

.down:hover p {
	color: #fafafa;
}

.up img , .down img{
	width: 35px;
	animation-name: floating;
	-webkit-animation-name: floating;

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	}
	
	@keyframes floating {
		0% {
			transform: translateY(0%);	
		}
		50% {
			transform: translateY(8%);	
		}	
		100% {
			transform: translateY(0%);
		}			
	}
	
	@-webkit-keyframes floating {
		0% {
			-webkit-transform: translateY(0%);	
		}
		50% {
			-webkit-transform: translateY(8%);	
		}	
		100% {
			-webkit-transform: translateY(0%);
		}			
	}	


.title_line {
	border-bottom: 3px solid #fff;
	width: 95px;
	margin: -19px auto 23px;
}


.top_row {
	position: relative;
}

.top_row , .bottom_row {
	width: 100%;
	font-size: 0;
	overflow: hidden;
	position: relative;
	
}

.project {
	display: inline-block;
	width: 100%;
	font-size: 3em;
	height: 500px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}

.project a {
	background: rgba(1, 18, 45, 0.44);
	text-decoration: none;
	display: block;
	color: #E83338;
	width: 100%;
	height: 100%;
	-webkit-transition: background 0.5s ease-out;
	-moz-transition: background 0.5s ease-out;
	-ms-transition: background 0.5s ease-out;
	-o-transition: background 0.5s ease-out;
	transition: background 0.5s ease-out;	
}
.project a:hover {
	background: rgba(1, 18, 45, 0.49);
}

.project p {
	color: #fafafa;
}

.project h1 {
	font-size: 33px;
	padding-bottom: 20px;
}

.project  {
	font-size: 23px;
}

.top_row .left{
	background: url(../img/porject-home-05.png) center no-repeat;
	background-size: cover;
}

.top_row .right{
	background: url(../img/porject-home-06.png) center;
	background-size: cover;
}

.bottom_row .left{
	background: url(../img/project-home-08.jpg) center ;
	background-size: cover;
}

.bottom_row .right{
	background: url(../img/porject-home-07.png) center;
	background-size: cover;
}

.project a .title {
	position: relative;
	padding: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin: auto;
	text-align: center;
	border: none;
}


/*case study style*/

.top_bg_pedal {
	width: 100%;
	height: 300px;
	background: url("../img/porject-header-08.png") no-repeat fixed center -53px rgba(0, 0, 0, 0);
}

.top_bg_cymatix {
	width: 100%;
	height: 300px;
	background: url("../img/3Dscreens_small.jpg") center 96px no-repeat fixed rgba(0, 0, 0, 0);
}

.top_bg_cora {
	width: 100%;
	height: 300px;
	background: url("../img/porject-header-07.png") center -50px no-repeat fixed rgba(0, 0, 0, 0);
}

/*.top_bg_xp {
	width: 100%;
	height: 300px;
	background: url("../img/project-header-xp.jpg") center -50px no-repeat fixed rgba(0, 0, 0, 0);
}*/



.text {
	padding: 20px;
	color: #333;
	text-align: center;
	
}

.text img {
	width: 100%;
	margin: 15px 0;
}



.text h1 {
	text-align: center;
	color: #e83338;
	padding-bottom: 20px;
}

.dimonds {
    margin: 80px auto 30px auto;
    width: 300px;
}

.dimonds li {
	list-style: none;
	display: inline-block;
	margin: auto;
	position: relative;
	width: 90px;
	height: 90px;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.6em;
	color: #E83338;}

.screens {
	margin: 15px 0 30px;
	background: #fafafa;
	padding: 15px;
}

.half {
	width: 100%;
	margin: auto;
	float: none;
}

.dime {
	position: absolute;
	top: -26px;
	left: 10px;
	width: 70px;
	height: 70px;
	border: 3px solid #010A26;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);	
}

footer {
	width: 100%;
	height: 240px;
	background-color: #010A26;
	padding: 20px;
	position: relative	;	
}

footer.reg {
	text-align: center;
	height: 280px;
	font-size: 0.7em;
}

.footer_text {
	padding: 3.5em;
}

.footer_text h2 {
	text-transform: lowercase;
	line-height: 2em;
}


.pre , .back , .next {
	display: inline-block;
	position: absolute;
}

.pre {
	left: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: left;
}

.back {
	top: 50%;
	left: 50%;
	-moz-transform: translateX(-50%px);
	-webkit-transform: translateX(-50%px);
	-o-transform: translateX(-50%px);
	-ms-transform: translateX(-50%px);
	transform: translateX(-50%px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.next {
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: right;
		
}


.next img , .pre img {
	display: none;
}

footer p {
	font-family: 'roboto_slablight';
	font-size: 0.8em;	
	color: #fafafa;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

footer a:hover p {
	color: #E83338;
}

.big {
	font-size: 0.9em;
	color: #E83338;
}	


.top {
  display: inline-block;
  height: 60px;
  width: 60px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);  
  bottom: 160px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background:  url(../img/up_arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  animation-name: float;
  -webkit-animation-name: float;
  
  animation-duration: 1.5s;	
  -webkit-animation-duration: 1.5s;
  
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  
}

@keyframes float {
	0% {
		transform: translateY(0%);	
	}
	50% {
		transform: translateY(8%);	
	}	
	100% {
		transform: translateY(0%);
	}			
}

@-webkit-keyframes float {
	0% {
		-webkit-transform: translateY(0%);	
	}
	50% {
		-webkit-transform: translateY(8%);	
	}	
	100% {
		-webkit-transform: translateY(0%);
	}			
}	


.top::after {
	content: "back up";
}
.top.top-is-visible, .top.top-fade-out, .no-touch .top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.top.top-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
/*.top.top-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible *!/
  opacity: .5;
}*/
.no-touch .top:hover {
  background-color: #e86256;
  opacity: 1;
}


/*about page style */

.about_text {
	color: #333;
	max-width: 900px;
	margin: 100px auto;
	text-align: center;
	min-height: 100vh;
}



.about_text h3 {
	margin: 25px 0 10px 0;
}

.about_text p {
	margin-top: 15px;
}

.this_site {
    margin: 45px auto;
}

.about_line {
	border-bottom: 3px solid #333;
	width: 75px;
	margin: auto;
}

.about_text img {
	max-width: 900px;
    margin: 25px auto; 
    display: block;
	width: 100%;
}

/*contact page style */
.contact_text {
	color: #333;
	padding: 15px;
	max-width: 900px;
	margin: 50px auto;
	text-align: center;
	min-height: 62vh;
}

.contact_text h3 {
	margin-top: 30px;
}


.reach_options {
	min-height: 400px;
	margin-top: 70px;
}

.reach{
	width: 100%;
	padding: 20px;
	text-align: left;
}

.reach P{
	border-bottom: 1px solid #333;
}

@media screen and (max-height: 30.5em) {
	/*.overlay nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay ul li {
		min-height: 34px;
	}*/
}


@media screen and (min-width: 641px) {
	body {
		padding: 20px;
	}
	
	h1{
		font-size: 3em;
	}
	
	h2 {
		font-size: 1.8em;
	}
	
	nav h1 {
		font-size: 1.7em;
	}
	
	.wrapper {
		max-width: 1600px;
		margin: auto;
	}
	
	header {
		max-width: 1600px;
	}
	
	.menu_triger:before {
		content: 'menu';
		font-family: 'roboto_slabregular';
		position: absolute;
		top: -18px;
		right: 60px;
		font-size: 1.6em;
		color: #E83338;
		text-transform: uppercase;
	}
	

	   /*home styles*/
	
	
	.content {
	    height: 100vh;
	    min-height: 100%;
	    position: relative;
	    top: -120px;
	    border-bottom: 7px solid #B6D6F2;
	    background: url(../img/tri-rect.png) center 120px / cover no-repeat rgba(11, 0, 90, 0.74);
	}
	
	
	.welcome {
	padding-top: 100px;
	display: block;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	}
	
	.top_row {
		margin-top: -120px;
	}
	
	.up img , .down img{
		width: 75px;
		}
	.desk {
		display: block;
		text-align: center;
		font-size: 0.8em;
		margin-bottom: 15px;
		color: #E83338;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	
		
	/*case study style*/
	
	.top_bg {
		width: 100%;
		height: 650px;
		background: url(../img/photo3.JPG) no-repeat fixed;
		background-size: cover;
		
	}

	.text {
		max-width: 1140px;
		margin: 66px auto 0 auto;
		padding: 20px;
		position: relative;
	    
	}
		
	.text p {
		width: 90%;
		margin: auto;
		text-align: center;
	}
	
	.half {
		width: 49.2%;
		display: inline-block;
	}
	
	.half img {
		width: 99%;
		margin: 20px auto;
		padding: 0 10px ;
	}
	
	.dimonds {
	    margin: 106px auto 80px auto; 
	    width: 375px;
	}
	
	.dimonds li {
		list-style: none;
		display: inline-block;
		margin: auto;
		position: relative;
		width: 118px;
		height: 120px;
		text-align: center;
		font-size: 0.7em;
	}
	
	.dime {
		position: absolute;
		top: -36px;
		left: 13px;
		width: 90px;
		height: 90px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);	
	}
	
	.top_bg_pedal {
		width: 100%;
		height: 650px;
		background: url("../img/porject-header-01.png") no-repeat fixed center -98px rgba(0, 0, 0, 0);
	}
	
	.top_bg_cymatix {
		width: 100%;
		height: 650px;
		background: url("../img/3Dscreens.jpg") no-repeat fixed center -98px rgba(0, 0, 0, 0);
	}
	
	.top_bg_cora {
		width: 100%;
		height: 650px;
		background: url("../img/porject-header-06.png") no-repeat fixed center -98px rgba(0, 0, 0, 0);
	}
	
	.top_bg_xp {
		width: 100%;
		height: 650px;
		background: url("../img/project-header-xp.jpg") no-repeat fixed center -98px rgba(0, 0, 0, 0);
	}
	
	.big {
		font-size: 1.1em;
		color: #E83338;
	}		
	/*contact page style */
	
	.reach{
		width: 40%;
		margin: 0 5%;
		padding: 20px 0;
		text-align: left;
		float: left;
	}		
}

@media screen and (min-width: 841px) {
	.pre , .back , .next {
		display: inline-block;
		position: absolute;
		text-decoration: none;
		color: #fff;
	}
	
	.pre {
		left: 30px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		text-align: left;
	}
	
	.back {
		top: 50%;
		left: 50%;
		-moz-transform: translateX(-50%px);
		-webkit-transform: translateX(-50%px);
		-o-transform: translateX(-50%px);
		-ms-transform: translateX(-50%px);
		transform: translateX(-50%px);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	
	.next {
		right: 30px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		text-align: right;
			
	}
	
	.pre img  , .next img {
		position: relative;
		display: inline;
		top: 33px;
	}
	
	
	.pre .direction {
	    position: relative;
	    left: 103px;
	    top: -31px;
	    padding: 0  0 0 90px;
	    color: #fafafa;
	    -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	    -o-transition: all 0.3s ease-out;
	    transition: all 0.3s ease-out;
	}
	
	.pre:hover .direction {
	     padding: 0 90px 0 0 ;
	}
		
	.next .direction {
	    position: relative;
	    right: 101px;
	    top: -31px;
	    padding: 0 91px;
	    color: #fafafa;
	    -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	    -o-transition: all 0.3s ease-out;
	    transition: all 0.3s ease-out;
	}
	
	.next:hover .direction {
	    padding: 0 0 0 91px;
	}
	
	
	.pre .w_dime {
		width: 75px;
		height: 75px;
		top: 20px;
		left: -5px;
		border: 3px solid #fff;
		position: absolute;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;	
	}
	
	.pre:hover  .w_dime{
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	
	
	.next .w_dime {
		width: 75px;
		height: 75px;
		top: 20px;
		right: -5px;
		border: 3px solid #fff;
		position: absolute;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;	
		
	}
	
	.next:hover  .w_dime{
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		transform: rotate(135deg);
	}	
	
	.pre hr {
		border-bottom: 2px solid #fff;
		width: 75px;
		position: relative;
		left: -101px;
	}
	
	.next hr {
		border-bottom: 2px solid #fff;
		width: 75px;
		position: relative;
		right: -152px;
	}
	
}

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

			
	.top_row , .bottom_row {
		height: 500px;
		
	}	
	
	.top_row {
		margin-top: -120px;
	}
	
	
	.project {
		display: inline-block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		background-size: cover;	
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}
	
	.left , .right {
		width: 50%;	
		z-index: 100;
	}
	
	.left {
		position: absolute;
		left: 0;
	}
	
	.left:hover {
		width: 75%;
		z-index: 200;
	}
	
	.right {
		position: absolute;
		right: 0;
		text-align: right;
	}
	
	.right:hover {
		width: 75%;
		z-index: 200;
		border-left: 8px solid #F2F2F2;
	}
	
	.top_row .left{
		border: 8px solid #F2F2F2;
		background: url(../img/porject-home.png) ;
	}
	
	.top_row .right{
		border-top: 8px solid #F2F2F2;
		border-right: 8px solid #F2F2F2;
		border-bottom: 8px solid #F2F2F2;
		background: url(../img/porject-home-02.png) right;
	}
	
	.bottom_row .left{
		border-bottom: 8px solid #F2F2F2;
		border-left: 8px solid #F2F2F2;
		border-right: 8px solid #F2F2F2;
		background: url(../img/project-home-04.jpg) ;
	}
	
	.bottom_row .right{
		border-bottom: 8px solid #F2F2F2;
		border-right: 8px solid #F2F2F2;
		background: url(../img/porject-home-03.png) right;
	}
	
	.project a {
		background: rgba(1, 18, 45, 0.59);
		}
	
	.project a .title {
		position: relative;
		-webkit-box-sizing: content-box;
		-moz-box-sizing: content-box;
		box-sizing: content-box;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		text-align: center;
		width: 400px;
		margin: auto;
		text-align: center;
		border: none;
		padding: 30px;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-ms-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;	}
	
	
	.project a:hover .title {
	}
	
	.title p, .title .btn_small_mob  {
		opacity: 0;
		left: -20px;
		 font-family: 'roboto_slablight' sans-serif;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-ms-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;
		-webkit-transition-delay: 0.3s; /* Safari */
	    transition-delay: 0.3s;
		font-weight: bold;
	}	
	
	.project a:hover p {
		opacity: 1;
		left: 0;
	}
	
	.title .btn_small_mob {
		opacity: 0;
		-webkit-transition: all 0.25s ease;
		-moz-transition: all 0.25s ease;
		-ms-transition: all 0.25s ease;
		-o-transition: all 0.25s ease;
		transition: all 0.25s ease;
	}
	
	.project a:hover .btn_small_mob {
		opacity: 1;
		left: 0;
	}
	
	.btn_small_mob:hover {
		background-color: #fafafa;
		color: #E83338;
	}
/*	.btn_small_mob {
		display: none;
	}		*/


}
