@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700');

body{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:16px;
	overflow-y:scroll;
	-webkit-font-smoothing: antialiased;
}

::selection {
		background: #000;
		color: #fff;
		text-shadow: none;
	}
	
	::-moz-selection {
		background: #000;
		color: #fff;
		text-shadow: none;
	}

.avatar {
	text-align: left;
	float: left;
	width: 100px;
	border-radius: 100px;
	border: solid #EFEFEF 1px;
	margin-right: 16px;
	display: none;
}
h1 {
	font-weight:700;
	font-size:42px;
	line-height:52px;
	text-transform:uppercase;
	color:#000;
	
	width:100%;
}

h2{
	font-weight:700;
	font-size:24px;
	line-height:20px;
	text-transform:uppercase;
	color:#000;
	
	width:100%;
}

h3 {
	font-weight:400;
	font-size:16px;
	line-height:32px;
	text-transform:uppercase;
	color:#000;
	
	width:100%;
}

p{
	font-weight:400;
	line-height:28px;
	color: #4D5A5E;
	width:60%;
}

a:link {
	color: #1CB3F4;
	text-decoration: underline;

	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in; 
}
a:visited {
	color: #1CB3F4;
	text-decoration: underline;
	border-bottom:1px solid #dedede;
}
a:hover {
	color: #1797CE;
	text-decoration: none;
}
a:active {
	color: #1797CE;
	text-decoration: none;
}

a:focus {
  outline:none;
}

a.nounderline {
	text-decoration: none;
}

.three-column ol li {
	line-height:24px;
	letter-spacing:1px;
	color:#8d8d8d;
	width:80%;
	list-style: decimal;
	margin: 0 0 10px 26px;
}

.three-column ul li {
	line-height:24px;
	letter-spacing:1px;
	color:#8d8d8d;
	width:80%;
	list-style: circle;
	margin: 0 0 10px 26px;
}

.three-column li img {
	width:60%;
}

li p {width: 60%;}

strong{
  font-weight:700;
}

img.cut {
	border-bottom: 1px solid #f2f2f2;
}

/*
**************************
PRELOADER
**************************
*/

.preloader{
  position:fixed;
  top:0;
  width:100%;
  height:100%;
  background:white;
  z-index:999;
}
 
.preloader .item{
  position:absolute;
  width:50px;
  height:50px;
  left:50%;
  top:50%;
  margin-left:-25px;
  margin-top:-25px;
} 

.spinner {
  width: 40px;
  height: 40px;
  margin: 0px auto;
  background-color: #333;
  border-radius: 100%;  
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}





/*
**************************
NAVIGATION OPACITY
**************************
*/

.opacity-nav{
	position:fixed;
	display:none;
	right: 0px;
	width:50%;
	height:100%;
	top:0;
	z-index:9999;
	background:rgba(0,0,0,0.95);
}

ul.menu-fullscreen{
  width: 100%;
  top: 50%;
  position: absolute;
  height: 280px;
  margin-top: -140px;
}

ul.menu-fullscreen li{
  font-size:35px;
  text-align:center;
  line-height:70px;
  font-weight:500;
}

ul.menu-fullscreen li > a{
  color:#ffffff;
  border:0;
}

ul.menu-fullscreen li > a:hover{
  color:#ffffff;
}

#full{
  width:1140px;
  position: relative;
  top:0;
  margin:0 auto;
  z-index: 9997;
}


#fullscreen{
  display:none;
  position:absolute;
  top:0;
  width:100%;
  margin:0 auto;
  height:80px;
  z-index: 9998;
}

/*
**************************
HEADER
**************************
*/

header.boxed{
	position:fixed;
	width:100%;
	margin:0 auto;
	height:80px;
	z-index:9999;
	background-color: #ffffff;
	top:0;
    -webkit-transition: background 0.2s ease-in;
	-moz-transition: background 0.2s ease-in;
	-ms-transition: background 0.2s ease-in;
	-o-transition: background 0.2s ease-in;
	transition: background 0.2s ease-in; 
	
	border-bottom: 1px solid #f1f2f2;
}

header.boxed .header-margin{
  width:1140px;
  margin:0 auto;
}

.logotype {
	display: inline-block;
	position: relative;
	height: 70px;
	width: 70px;
	vertical-align: middle;
	
	background-image: url("../img/icon-hires.png");
	background-size:contain;
	background-position: top left;
	background-repeat: no-repeat;	
}

header .logo > a:link{
	color: #000000;
	font-size:23px;
	font-weight:800;
	float:left;
	line-height:80px;
	padding-right:40px;
	border-bottom: 1px solid #f1f1f1;
}
header .logo > a:visited{
	color: #000000;
	font-size:23px;
	font-weight:800;
	float:left;
	line-height:80px;
	padding-right:40px;
	border-bottom: 1px solid #f1f1f1;
}
header .logo > a:hover{
  color:#666666;
}
header .logo > a:active{
  color:#666666;
}


/*
**************************
CONTENT
**************************
*/

.one-column{
	width:40%;
	position:relative;
	float:left;
	margin: 10px auto;
}

.two-column{
	width:60%;
	position:relative;
	float:left;
	margin: 10px auto;
}

.three-column{
	width:100%;
	position:relative;
	float:left;
	margin: 10px auto;
}

.one-column p{
  width:70% !important;
}

.two-column p{
  width:100% !important;
}

.three-column p{
  width:100% !important;
}


.clear{
	clear:both;
}
.extra_height {
	height: 40px;
	clear: both;
}

.content{
  position:relative;
  width:1140px;
  margin: 200px auto 0 auto;
}


.content .text-intro{
  width: 1140px;
  margin-top: 100px;
  margin: 150px auto 0;
}

        .typed-cursor{
            opacity: 1;
            font-weight: 900;
            -webkit-animation: blink 0.7s infinite;
            -moz-animation: blink 0.7s infinite;
            -ms-animation: blink 0.7s infinite;
            -o-animation: blink 0.7s infinite;
            animation: blink 0.7s infinite;
        }
        @-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-webkit-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-moz-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-ms-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-o-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }


/*
**************************
PORTFOLIO GRID
**************************
*/

#ajax-content{width:100%;}

.portfolio-grid{
	width:1170px;
	position:relative;
	margin: 30px auto;
	overflow:hidden;
}

li.grid-item{
	width:555px;
	position:relative;
	float:left;
	padding:11px;
}

.three li.grid-item {
	width:360px;
}

.grid-hover{
	position: absolute;
	width:555px;
	height: 100%;
	top:0;
	background: white;
	z-index: 2;
	opacity: 0;
	
	-webkit-transition: opacity 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in;
	-ms-transition: opacity 0.5s ease-in;
	-o-transition: opacity 0.5s ease-in;
	transition: opacity 0.5s ease-in; 
}
.three .grid-hover{
	width:360px;
}
.grid-hover:hover{
	opacity: 0.5;
}

.grid-hover p{
	bottom:40px;
	left:40px;
	padding: 10px;
	color: #ffffff;
	background-color: #000000;
	position:absolute;
	letter-spacing:1px;
}

li.grid-item img{
	width:555px;
}
.three li.grid-item img{
	width:360px;
}
.one li.grid-item img{
	width:1170px;
}
/*
**************************
FOOTER
**************************
*/

footer{
  background: #f1f1f1;
  width:100%;
  overflow:hidden;
  position:relative;
  z-index:10;
}

.footer-margin{
  width:1140px;
  margin: 0 auto 0 auto;
  line-height: 100px;
}

.footer-margin .copyright{
  color: #686868;
  letter-spacing: 1px;
  font-size: 12px;
	line-height: 18px;
	padding: 20px 0;
  width: 100%;
  text-align:left;
  float: left;
}

.footer-margin .contact p{
  letter-spacing: 1px;
  font-size: 16px;
  width: 100%;
  text-align:left;
  float: left;
}

.footer-margin .social-footer{
  color: #686868;
  letter-spacing: 1px;
  font-size: 16px;
  width: 100%;
  text-align:left;
  float: left;
}

.footer-margin .social-footer a{
  font-size:16px;
  color:black;
  padding: 20px 20px 20px 0;
}

.footer-margin .social-footer a:hover{
  color:#666666;
}