/*

///////////////////////////////////////////////////////


//////   ///     ///////   ////    //   ///////   ///
///      ///     ///  //   /// /   //   //        ///
//////   ///     ///////   ///  /  //   //        ///
    //   ///     /// //    ///   / //   //        ///
//////   //////  ///  //   ///    ///   ///////   //////


////////////////////////////////////////////////////////

Domain: solerieu-nicolas.fr
Author: Nicolas Solerieu
Description: _
Version: 1.0

/* -------------------------------------------------------------- 
/* =BASIS
-------------------------------------------------------------- */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #121212;
  font-family: 'Fira Mono', sans-serif;
}
::selection {
  color: #fff;
  background: #27ae60;
}
#page {
  z-index: 4;
  position: relative;
  opacity: 0;
  padding: 120px 0 0 0;
  transition:all 1s ease 1s;
  -webkit-transition:all 1s ease 1s;
  -moz-transition:all 1s ease 1s;
  -o-transition:all 1s ease 1s;
}
#page.displayed {
  opacity: 1;
  padding: 0;
}

/* -------------------------------------------------------------- 
/* =LOADER
-------------------------------------------------------------- */
#loader {
  position: fixed;
  text-align: center;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 300px;
  margin: -50px 0 0 -150px;
  transition:opacity ease 0.4s;
  -webkit-transition:opacity ease 0.4s;
  -moz-transition:opacity ease 0.4s;
  -o-transition:opacity ease 0.4s;
}
#loader .fa {
  display: block;
  font-size: 24px;
  color: #27ae60;
  margin: 10px 0;
}
.title-loader {
  color: #FFFFFF;
  font-size: 12px;
  margin: 0;
}
#loader.removed {
  opacity: 0;
}

/* -------------------------------------------------------------- 
/* =ESSENTIAL CLASSES
-------------------------------------------------------------- */
.hide {
  display: none;
}
.wrapper {
  width: 600px;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}


/* -------------------------------------------------------------- 
/* =TYPOGRAPHY
-------------------------------------------------------------- */
p {
  color: #888888;
  margin: 10px 0;
  font-size: 14px;
}
a {
  outline: none;
  text-decoration: none;
  position: relative;
  color: #27ae60;
}
a:hover {
  opacity: 0.7;
}
h1 {
  margin: 200px 0 0 0;
  font-size: 2em;
  color: #ffffff;
  position: relative;
}
h1::before {
  color: #27ae60;
  position: absolute;
  left: -40px;
  font-size: 24px;
  top: 10px;
  content: "\f121";
  font-family: "FontAwesome", sans-serif;
}
h2 {
  margin: 30px 0 10px 0;
  font-size: 1.2em;
  color: #ffffff;
}
h3 {
  margin: 0;
  font-size: 1em;
  color: #ffffff;
}
.displayshowcase {
  cursor: pointer;
}
.displayshowcase:hover {
  color: #27ae60;
}
.job {
  margin: 0 0 40px 0;
}
.projects {
  border-top: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.one-project {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 10px 0;
}
.one-project__desc {
  color: #444444;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
}
footer {
  padding: 50px 0 80px 0;
}


/* -------------------------------------------------------------- 
/* =RESPONSIVE / SCREEN UNDER 800PX
-------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  .wrapper {
    width: 90%;
    margin: 0 5%;
  }
  h1::before {
    left: 0px;
    top: -40px;
  }
  h1 {
    margin: 100px 0 0 0;
    font-size: 1.4em;
  }
  h2 {
    font-size: 1em;
  }
  h3 {
    font-size: 0.8em;
  }
}