/*-----------------------
      STYLES DE BASE
-----------------------*/

@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,500,300,700);
@import url(socicon.css);


body {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
}

input:focus {outline: none; }
textarea:focus {outline: none; }

::-webkit-input-placeholder {
   color: #34495e;
}

:-moz-placeholder { /* Firefox 18- */
   color: #34495e;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #34495e;
}

:-ms-input-placeholder {
   color: #34495e;
}

textarea {
    resize: none;
}

.socicon {
    font-family: 'socicon' !important;
    text-decoration: none;
    display: block;
    color: #273849;
    width: 40px;
    height: 40px;
    line-height: 40px;
    box-shadow: inset 0 0 0 20px #fff;
    border-radius: 50%;
    -webkit-transition: box-shadow .3s ease-in-out, color .3s .3s ease-in-out;
    		transition: box-shadow .3s ease-in-out, color .3s .3s ease-in-out;
}

.px:hover {
	box-shadow: inset 0 0 0 2px #02adea;
	color: #02adea;
}

.linkedin:hover {
	box-shadow: inset 0 0 0 2px #0e76a8;
	color: #0e76a8;
}

.deviantart:hover {
	box-shadow: inset 0 0 0 2px #2190a8;
	color: #2190a8;
}

.twitter:hover {
	box-shadow: inset 0 0 0 2px #00acee;
	color: #00acee;
}

/*----------------------------------------------------------------------
      						HOME PAGE
----------------------------------------------------------------------*/

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

.header {
	background-image: url(../images/background_header2.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
  	   -moz-background-size: cover;
  		 -o-background-size: cover;
  			background-size: cover;
	height: 600px;
}

.nav {
	text-align: right;
	margin-right: 30px;
}

.nav ul li{
	display: inline-block;
	width: 100px;
	box-sizing: border-box;
	border: 1px solid #e8edee;
	text-align: center;
	margin: 20px 10px;
}

.nav ul li a {
	display: block;
	color: #e8edee;
	padding: 10px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: background-color .2s ease-in, color .2s .2s ease-out;
			transition: background-color .2s ease-in, color .2s .2s ease-out;
}

.nav ul li:hover a {
	background-color: #e8edee;
	color:	#0e7695;
}

.header_content {
	padding-top: 50px;
	text-align: center;
}

.header_content .logo, .header_content h1 {
	display: inline-block;
	vertical-align: middle;
}

.header_content .logo {
	width: 220px;
	opacity: .7;
	margin-right: 100px;
}

.header_content h1 {
	font-size: 40pt;
	text-transform: uppercase;
	color: #e8edee;
	font-weight: 100;
}

.nav_bar_on {
	position: fixed;
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 80px;
	z-index: 4;
}

.sticky_nav {
	position:fixed;
	right: 30px;
	top: 0;
}

.logo_small {
	width: 60px;
	margin-top: 10px;
	margin-left: 60px;
}

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

.about {
	background-color: #273849;
	color: #e8edee;
	text-align: center;
}

.about p, .about .profil_photo {
	display: inline-block;
	vertical-align: middle;
}

.about p {
	width: 500px;
	box-sizing: border-box;
	padding: 10px;
	text-align: justify;
	line-height: 32px;
	margin: 30px 0;
	margin-right: 100px;
	font-weight: 300;
}

.about p>a {
	text-decoration: none;
	color: #5a7c9b;
}

.about .profil_photo {
	margin: 30px 0;
	width: 200px;
	border-radius: 50%;
}

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

.contact {
	text-align: center;
	background-color: #e8edee;
	color: #34495e;
}

.contact h2, .contact h3 {
	font-weight: 100;
}

.contact h2 {
	padding-top: 100px;
	font-size: 30pt;
	text-transform: uppercase;
}

.contact h3 {
	margin: 0 auto;
	margin-top: 30px;
	width: 400px;
	text-align: justify;
}

.contact form {
	padding-bottom: 50px;
}

.contact form input, .contact form textarea {
	margin: 30px auto;
	display: block;
	box-sizing: border-box;
	padding-left: 10px;
	width: 400px;
	height: 30px;
	border: 1px solid #3498db;
	font-family: 'Roboto', sans-serif;
	font-size: 14pt;
	font-weight: 100;
	background: transparent;
}

.contact form textarea {
	height: 200px;
}

.contact .sendBtn {
	padding: 0;
	background-color: #3498db;
	text-transform: uppercase;
	color: #e8edee;
	font-weight: 100;
	cursor: pointer;
	height: 60px;
	font-size: 18pt;
	-webkit-transition: background-color .2s ease-in, color .2s .2s ease-out;
			transition: background-color .2s ease-in, color .2s .2s ease-out;
}

.contact .sendBtn:hover {
	background-color: #e8edee;
	color: #3498db;
}

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

.footer {
	background-color: #273849;
	color: #e8edee;
	height: 150px;
	line-height: 120px;
	text-align: center;
}

.footer ul, .footer p {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-weight: 100;
	font-size: 18pt;
	margin: 0 50px;
}

.footer ul li {
	display: inline-block;
	margin: 0 20px;
}

.footer h2 {
	font-size: 12pt;
	font-weight: 100;
	line-height: normal;
}

.footer h2>a {
	text-decoration: none;
	color: #5a7c9b;
}

/*----------------------------------------------------------------------
      						 WORK PAGE
----------------------------------------------------------------------*/

.header_work {
	height: 300px;
}

.header_work .header_content {
	display: block;
	text-decoration: none;
	padding-top: 100px;
}

.header_work .logo {
	width: 100px;
	margin-right: 10px;
}

.header_work h1 {
	font-size: 16pt;
}

.work_title {
	background: rgb(0,0,0);
	position: relative;
	width: 100%;
	max-height: 400px;
	border-top: 3px solid #fff;
	overflow: hidden;
}

.work_title h1 {
	position: absolute;
	line-height: 400px;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-transform: uppercase;
	font-size: 18pt;
	z-index: 1;
}


.work_title .work_image {
	width: 100%;
	opacity: 0.5;

}

.work_content .work_text {
	width: 80%;
	max-width: 700px;
	margin: 0 auto;
	font-size: 14pt;
	padding-bottom: 50px;
text-align: justify;
line-height: 20pt;
}

.work_text p {
	padding-top: 50px;
}

.work_text img {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 50px;
}

iframe {
    padding: 15px;
    width: 100%;
}

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

@media screen and (max-width: 900px) {

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

	.header {
		height: 300px;
		background-attachment: scroll;
	}

	.nav_bar {
		display: none;
	}

	.header_content {
		padding-top: 100px;
	}

	.header_content .logo {
		width: 100px;
		margin-right: 10px;
	}

	.header_content h1 {
		font-size: 16pt;
	}

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

	.about {
		position: relative;
        text-decoration: none;

	}

	.about p, .about .profil_photo {
		display: block;
		margin: 0;
		padding: 0;
        font-style: normal;
	}

	.about p {
        text-decoration: none;
		width: 80%;
		margin: 0 auto;
		line-height: 30px;
		padding-top: 100px;
		padding-bottom: 25px;
	}

	.about .profil_photo {
		position: absolute;
		top: 15px;
		left: calc(50% - 50px);
		left: -webkit-calc(50% - 50px);
		width: 100px;
	}

    a {
        color: rgb(0,0,0);
        text-decoration: none;
    }

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

	.contact h3 {
		width: 80%;
		text-align: center;
	}

	.contact form input, .contact form textarea {
		width: 80%;
		-webkit-appearance: none;
    	border-radius: 0;
	}

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

	.footer {
		height: auto;
		line-height: 50px;
	}

	.footer ul, .footer p {
		margin: 0;
		padding-top: 15px;
		display: block;
	}

	.footer p {
		font-size: 12pt;
	}

	.footer h2 {
		margin-top: 15px;
		padding-bottom: 15px;
		font-size: 8pt;
	}

	/*-----------------------
      		WORK PAGE
	-----------------------*/

	.work_title h1 {
		line-height: normal;
		padding-top: 15px;
		font-size: 10pt;
	}
	
	.work_content .work_text{
		text-align: left;
	}
}