/*
	RESET - ADAPTED FROM MEYER RESET
	URL - http://meyerweb.com/eric/tools/css/reset/
	LICENSE - PUBLIC DOMAIN
*/
/* RESET
----------------------------------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
caption,
canvas,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
form,
footer,
header,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
main,
small,
span,
strike,
strong,
sub,
summary,
sup,
tt,
table,
tbody,
textarea,
tfoot,
thead,
time,
tr,
th,
td,
u,
ul,
var,
video {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  white-space: normal;
  text-align: left;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* END RESET */
/* Bootstrap FORM */
/* GRID SYSTEM */
/*	12 COLUMN : RESPONSIVE GRID SYSTEM
	DEVELOPER : DENIS LEBLANC
	URL : http://responsive.gs
	VERSION : 3.0
	LICENSE : GPL & MIT */
/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(/scripts/boxsizing.htc);
  /*	If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill */
}
body {
  background-color: #eee;
}
.font-serif {
  font-family: serif;
}
/*	MAIN CONTAINER
	Set the width to whatever you want the width of your site to be. */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}
.container-white {
  background-color: #fff;
  padding-top: 50px;
}
/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after,
.col:after,
.clr:after,
.group:after {
  content: "";
  display: table;
  clear: both;
}
/* 	DEFAULT ROW STYLES
	Set bottom padding according to preference */
.row {
  padding-bottom: 0em;
}
/* DEFAULT COLUMN STYLES */
.col {
  display: block;
  float: left;
  width: 100%;
}
ul.list-circle li {
  list-style: circle;
  margin-left: 1.7em;
}
@media screen and (max-width: 768px) {
  h1,
  h2 {
    text-align: center !important;
  }
  nav > ul {
    text-align: center !important;
  }
  dl dt {
    float: none !important;
  }
  dl dd {
    margin-left: 0 !important;
  }
  .hidden-mobile {
    display: none !important;
  }
  #competences p,
  #competences > header > h1,
  #competences > article > header > h1 {
    text-align: center !important;
  }
  .right,
  .left {
    text-align: center !important;
  }
}
@media only screen and (max-width: 650px) {
  body {
    font-size: 14px !important;
  }
  header.header h1 {
    /*font-size: 2.5em;*/
    font-size: 2.5em !important;
  }
  header.header h2 {
    font-size: 1.9em !important;
  }
}
/* MENU */
header.header {
  position: fixed;
  width: 100%;
  height: 110px;
  background-color: #424242;
  color: #fff;
  line-height: 2.1em;
  margin: 0;
  padding: 0;
}
header.header a,
header.header a:active,
header.header a:hover {
  color: #fff;
}
header.header nav hgroup {
  float: left;
  font-family: 'Monda' !important;
  line-height: 2.3em;
  padding: 1.1em;
}
header.header nav hgroup h1 {
  text-align: left;
  font-size: 3em;
}
header.header nav hgroup h2 {
  font-size: 2.45em;
}
header.header nav ul {
  text-align: right;
  padding-top: 50px;
}
header.header nav ul li {
  display: inline-block;
  padding: 0.4em 0.6em;
  margin: -2px;
}
header.header nav ul li.active {
  background: #d65b5e;
  color: white;
}
.site-content {
  padding-top: 110px;
}
@media only screen and (max-width: 901px) {
  .site-pusher,
  .site-container {
    height: 100%;
  }
  .site-container {
    overflow: hidden;
  }
  .site-pusher {
    transition-duration: 0.3s;
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  .site-content {
    padding-top: 0;
    -webkit-overflow-scrolling: touch;
  }
  .header {
    position: static !important;
  }
  /* L'icône hamburger, en utilisant le box-shadow */
  .header__icon {
    position: relative;
    display: block;
    float: right;
    width: 100px;
    height: 110px;
    cursor: pointer;
  }
  .header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 2em;
    height: 0;
    top: 30px;
    left: 35px;
    box-shadow: 0 10px 0 1px white, 0 20px 0 1px white, 0 30px 0 1px white;
  }
  /* Le menu collé à gauche est masqué grâce à un transform */
  .menu {
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    -webkit-overflow-scrolling: touch;
    background-color: #222224;
    width: 200px;
    -ms-transform: translateX(200px);
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
  /* Un lien par ligne */
  .menu li {
    display: block;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 40px;
  }
  .with--sidebar .site-pusher {
    -ms-transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  /* On met un cache par dessus le site-content pour bloquer le scroll et permettre le retour au site */
  .with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
/* FIN MENU */
/*	COLUMN WIDTH ON DISPLAYS +768px
	You might need to play with media queries here to suite your design. */
@media screen and (min-width: 768px) {
  .span_1 {
    width: 8.33333333333%;
  }
  .span_2 {
    width: 16.6666666667%;
  }
  .span_3 {
    width: 25%;
  }
  .span_4 {
    width: 33.3333333333%;
  }
  .span_5 {
    width: 41.6666666667%;
  }
  .span_6 {
    width: 50%;
  }
  .span_7 {
    width: 58.3333333333%;
  }
  .span_8 {
    width: 66.6666666667%;
  }
  .span_9 {
    width: 75%;
  }
  .span_10 {
    width: 83.3333333333%;
  }
  .span_11 {
    width: 91.6666666667%;
  }
  .span_12 {
    width: 100%;
  }
}
/* END GRID SYSTEM */
body {
  font-family: 'Verdana', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #222224;
}
h1 {
  font-size: 1.5em;
  color: #d65b5e;
}
h2 {
  font-size: 1.2em;
}
a {
  text-decoration: none;
  color: #222224;
}
b {
  font-size: 1.2em;
}
i {
  font-style: italic;
}
dl {
  margin-top: 1.2em;
}
dl dt {
  float: left;
  font-weight: bold;
  width: 9em;
  margin-bottom: 0.5em;
}
dl dd {
  margin-left: 9em;
  margin-bottom: 0.5em;
}
input {
  border: none;
}
blockquote {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  quotes: "«" "»";
}
small {
  font-size: 0.6em;
}
label {
  display: block;
  text-align: left;
  vertical-align: top;
}
input {
  width: 100%;
  min-height: 2.5em;
}
textarea {
  background-color: white;
  width: 100%;
}
/* CLASS */
.list {
  padding-left: 1.2em;
  list-style-type: circle;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.btn {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.haut {
  float: right;
  border-top: 0.1em solid #d65b5e;
  border-bottom: 0.1em solid #d65b5e;
  margin-top: 1.5em;
}
.note {
  padding-top: 1.2em;
  text-indent: 1.1em;
  font-size: 1.1em;
  font-style: italic;
}
.hidden-mobile {
  display: block;
}
.link {
  text-decoration: underline;
}
.page-home #presentation h1 {
  font-size: 1em;
  padding: 0;
  color: #222224;
  display: inline;
}
.page-home h3 {
  font-size: 2em;
  font-family: 'Monda' !important;
  text-align: center;
  color: #d65b5e;
}
.text-justify {
  font-style: text-justify;
}
/* FIN CLASS */
article {
  padding: 1.2em !important;
  padding-left: 1.8em;
  padding-right: 1.8em;
}
article header {
  margin-bottom: 1.3em;
}
#outils h2 {
  font-size: 16px;
}
#presentation {
  font-size: 1.55em;
  line-height: 1.4em;
}
.zce {
  font-size: 18px;
}
.zce .img {
  float: right;
}
#contact {
  background: #424242;
  color: white;
  margin-left: -10px;
  margin-right: -10px;
}
#sendMessage {
  background-color: #d65b5e;
  padding: 0.7em;
  float: left;
  color: #424242;
}
.portfolio article {
  margin-top: 30px;
}
.portfolio article a {
  text-decoration: underline;
}
.portfolio hr {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.portfolio .list-tag {
  margin-top: 10px;
}
.portfolio .list-tag .tag {
  float: left;
  background-color: #d65b5e;
  color: white;
  font-size: 0.8em;
  padding: 1px 2px;
  margin: 1px 2px;
  line-height: 16px;
  border-radius: 2px;
}
footer {
  margin-bottom: 0;
  padding-left: 1.1em;
  margin-left: -10px;
  margin-right: -10px;
  text-align: left;
  background: #d65b5e;
}
#reseau {
  margin: 0;
}
/* CV */
#competences * {
  font-size: 0.9em !important;
  text-align: right;
}
#competences > header {
  padding-left: 1.8em;
  padding-right: 1.8em;
}
#competences > header > h3 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: right;
  color: #222224;
}
#competences > article > header > h2 {
  font-size: 1.1em !important;
  font-weight: bold;
  text-align: right;
  color: #222224;
  line-height: 0em;
}
.cv {
  font-size: 0.9em;
}
.cv > header {
  padding-left: 1.8em;
  padding-right: 1.8em;
}
.cv > header > h3 {
  font-size: 1.2em;
  color: #222224;
}
.cv > article > header > h3 {
  display: inline-block;
  font-size: 1.2em;
  text-decoration: underline;
  color: #d65b5e;
}
.cv > article > header > h2 {
  display: inline-block;
  font-size: 1em !important;
  color: #222224;
}
.cv > article > header > p {
  font-size: 0.9em !important;
  font-style: italic;
  text-indent: 2em;
  line-height: 1em;
}
#formations > article {
  padding-bottom: 0em !important;
}
#formations > article > header {
  margin-bottom: 0em !important;
}
#formations > article > header > h2 {
  display: inline-block;
  font-size: 1.2em !important;
  text-decoration: underline;
  color: #d65b5e;
}
section#errors > header > h3 {
  text-align: center !important;
  line-height: 15em;
}
