/*---------------------------------------------------------------- */
/*------------------ RESET CSS ----------------------------------- */
/*---------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(./polyfill/boxsizing.htc);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  color: white;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  color: white;
}
a:hover {
  color: #e6e6e6;
}

/*------------------------------------------------------------------------------*/
/*--------------------- Styles site --------------------------------------------*/
/*------------------------------------------------------------------------------*/
.clear:before, .container:before, #head:before, #blocpres:before, #blocpres #containtext:before, .clear:after, .container:after, #head:after, #blocpres:after, #blocpres #containtext:after {
  content: "";
  display: table;
}
.clear:after, .container:after, #head:after, #blocpres:after, #blocpres #containtext:after {
  clear: both;
}

.btn {
  display: inline-block;
  background-color: #df375f;
  color: white;
  text-align: center;
}
.btn:hover {
  background-color: #c41f46;
  color: white;
}

.container {
  width: 960px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 20px;
  }
}

h1 {
  font-family: "Arial", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  text-decoration: none;
  color: white;
}

#head {
  width: 100%;
  height: 110px;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: black;
}

#logo {
  background: url("../img/logopss.png") no-repeat 50% 50%;
  height: 100%;
  width: 15%;
  float: left;
}
@media screen and (max-width: 768px) {
  #logo {
    background-image: url("../img/logo_tablette.png");
    background-size: 80% auto;
  }
}

ul.menu {
  display: block;
  text-align: center;
  padding-top: 45px;
  margin: 0 auto;
  float: left;
  width: 70%;
}
ul.menu li {
  display: inline-block;
}
ul.menu li a {
  text-align: center;
  display: block;
  height: 20px;
  width: 100%;
  position: relative;
  padding: 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
}
ul.menu li a.active:after {
  display: block;
  content: "";
  width: 80%;
  height: 1px;
  background-color: #FFF;
  margin: 10px auto;
}

#icons {
  padding-top: 45px;
  width: 15%;
  height: 40px;
  float: right;
}
#icons a {
  display: inline-block;
  width: 30px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
#icons #cont_icons {
  float: right;
  padding-right: 20px;
}

#fb {
  background: url("../img/fb.png");
}

#pres {
  background: url("../img/lunettes.png");
  width: 36px !important;
}

#mail {
  background: url("../img/mail.png");
  margin-left: 10px;
  width: 36px !important;
}

.btn {
  -moz-border-radius:  0px;
  -webkit-border-radius:  0px;
  border-radius:  0px;
  background-clip: padding-box;
  *behavior: url(./polyfill/PIE.htc);
  font-size: 30px;
  font-size: 3rem;
  padding:  10px 20px;
  padding:  1rem 2rem;
}

.bloc {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

body {
  background: black;
  color: white;
  overflow: scroll-x;
}

#accueil {
  width: 100%;
  height: 100%;
  background-image: url("../img/logoaccueil.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 50% auto;
  position: relative;
}
#accueil:after {
  content: "";
  background-image: url("../img/hairstylist.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 50% auto;
  position: relative;
  width: 100%;
  height: 10%;
  position: absolute;
  bottom: 17%;
  left: 0;
}

#content {
  width: 100%;
  overflow: scroll-x;
  margin-top: 110px;
}

#list_content {
  white-space: nowrap;
}
#list_content li {
  overflow: hidden;
  display: inline-block;
  position: relative;
}
#list_content li p {
  position: absolute;
  top: 50px;
  left: -350px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  color: white;
  max-width: 350px;
  cursor: pointer;
  white-space: normal;
}
#list_content li p:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url("../img/close.png");
  background-position: right top;
  background-repeat: no-repeat;
}

img {
  cursor: pointer;
  display: block;
  height: 300px;
}
@media screen and (min-height: 650px) {
  img {
    height: 500px;
  }
}
@media screen and (min-height: 700px) {
  img {
    height: 600px;
  }
}

#blocpres {
  width: 100%;
}
#blocpres #cont_img, #blocpres #containtext {
  float: left;
  width: 50%;
  height: 100%;
}
#blocpres #cont_img {
  background-image: url("../img/pagepresentation2.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
}
#blocpres #containtext {
  font-size: 12px;
  font-size: 1.2rem;
}
#blocpres #containtext > div {
  width: 60%;
  margin: 10% auto;
  position: relative;
}
#blocpres #containtext .textpres {
  float: left;
  text-align: justify;
  width: 47.5%;
  margin-left: 5%;
}
#blocpres #containtext .textpres:first-child {
  margin-left: 0;
}
#blocpres #containtext #textpresinfo {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-top: 20px;
  text-align: right;
  color: #666666;
}
#blocpres #containtext #textpresinfo a {
  color: white;
  margin-bottom: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
#blocpres #containtext #textpresen {
  color: #666666;
}
