/*-------- Fonts --------*/

@import url("https://fonts.googleapis.com/css?family=Playfair+Display");
@import url("https://fonts.googleapis.com/css?family=Helvetica+Neue");
@import url("https://fonts.googleapis.com/css?family=Crimson+Text");

@-ms-viewport {
  width: device-width;
}

/*-------- Global settings --------*/

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #000;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

#bloc_page {
  margin: 0 auto;
  max-width: 100%;
}

/*-------- Header, logo et bouton réservation --------*/

header {
  display: flex;
  flex-direction: column;
}

#bloc_logo {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/wallpaper.jpg") center center;
  background-size: cover;
}

#red_button {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 359px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5em;
  line-height: 1.4em;
  color: #fff;
  text-align: left;
  right: 0;
  text-transform: uppercase;
  cursor: pointer;
  background: url(../images/redmark.png) center no-repeat;
  background-size: 425px;
  width: 570px;
  height: 138px;
  padding-top: 46px;
  padding-left: 4.3em;
  text-decoration: none;
  z-index: 99;
}

/*-------- Navigation horizontale --------*/

#nav {
  display: flex;
  justify-content: space-around;
  text-align: center;
  z-index: 4;
  height: 80px;
  margin: 0;
  padding: 0;
}

#nav input {
  display: none;
}

#nav span {
  display: none;
}

#menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#menu li {
  float: left;
  position: relative;
}

#menu a {
  display: inline-block;
}

#menu li a,
#menu .dropbtn {
  display: inline-block;
  text-align: center;
  padding: 20px 20px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  font-size: 0.8em;
  letter-spacing: 0.25em;
  transition: all 0.25s ease-in-out;
}

#menu li a:hover,
.dropdown:hover .dropbtn {
  color: #d00;
}

#menu li .dropdown {
  display: inline-block;
}

#menu .dropdown-content {
  display: none;
  position: absolute;
  left: 30px;
  background-color: #fcfcfc;
  min-width: 210px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#menu .dropdown-content a {
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
}

#menu dropdown-content a:hover {
  background-color: #f1f1f1;
}

#menu .dropdown:hover .dropdown-content {
  display: block;
}

.green_link {
  font-family: "Playfair Display", Arial, sans-serif;
  font-style: italic;
  font-size: 1em;
  letter-spacing: 0.1em;
  background-color: #0c3210;
  text-align: center;
  padding: 3px 8px 3px 8px;
  color: white;
  text-decoration: none;
}

/*-------- Sections global style --------*/

.title {
  background-color: #fff;
  color: #000;
  font-family: "Playfair Display", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 2.5em;
}

.title::first-letter {
  font-size: 130%;
}

.content {
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8em;
}

.content p {
  padding-bottom: 0.75em;
}

.content p::first-letter {
  font-size: 130%;
}

.green_button {
  font-family: "Playfair Display", Arial, sans-serif;
  font-style: italic;
  font-size: 1em;
  letter-spacing: 0.1em;
  background-color: #0c3210;
  text-align: center;
  padding: 3px 8px 3px 8px;
  color: white;
  text-decoration: none;
}

.white_button {
  font-family: "Playfair Display", Arial, sans-serif;
  font-style: italic;
  font-size: 1em;
  letter-spacing: 0.1em;
  background-color: #fff;
  text-align: center;
  padding: 3px 8px 3px 8px;
  color: #0c3210;
  text-decoration: none;
}

/* White sections with left image */

.white-left {
  background-color: #fff;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  padding: 50px 10% 0 10%;
  position: relative;
}

.white-left .image {
  display: block;
  width: 50%;
  object-fit: cover;
  object-position: center top;
}

.white-left .title {
  position: absolute;
  left: 40%;
  padding: 1em;
  top: 100px;
}

.white-left .content {
  position: absolute;
  width: 35%;
  left: 55%;
  bottom: 100px;
}

.white-left .green_button {
  position: absolute;
  right: 10%;
  bottom: 50px;
}

/* White sections with right image */

.white-right {
  background-color: #fff;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  padding: 50px 10% 0 10%;
  position: relative;
}

.white-right .image {
  position: absolute;
  display: block;
  width: 40%;
  object-fit: cover;
  object-position: center top;
  right: 10%;
  top: 50px;
}

.white-right .title {
  position: absolute;
  left: 25%;
  padding: 1em;
  top: 100px;
}

.white-right .content {
  position: absolute;
  text-align: right;
  width: 35%;
  left: 10%;
  bottom: 50px;
}

.white-right .green_button {
  position: absolute;
  right: 10%;
  bottom: 50px;
}

/* Green sections */

.green {
  background-color: #0c3210;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  padding: 0 50px 0 50px;
  position: relative;
}

.green .title {
  background-color: #0c3210;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 1em;
  z-index: 1;
}

.green .content {
  background-color: #0c3210;
  color: #fff;
  position: absolute;
  padding: 100px 50px 50px 50px;
  left: 50px;
  width: calc(100% - 200px);
  top: 50px;
}

.green .white_button {
  position: absolute;
  right: 10%;
  bottom: 50px;
}

/* Bergamote sections */

.bergamote {
  background-color: #fff;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  background: url("../images/wallpaper.jpg") center center;
  background-size: cover;
  padding: 0 50px 0 50px;
  position: relative;
}

.white {
  background: none center center;
}

.bergamote .title {
  position: absolute;
  width: 530px;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 1em;
  z-index: 1;
}

.bergamote .content {
  position: absolute;
  padding: 150px 50px 50px 50px;
  left: 50px;
  width: calc(100% - 200px);
  top: 50px;
  text-align: right;
}

.bergamote .green_button {
  position: absolute;
  right: 10%;
  bottom: 75px;
}

/* Footer */

footer {
  display: flex;
  justify-content: space-around;
  padding: 25px 50px 0 50px;
  position: relative;
  height: 200px;
  background: url("../images/wallpaper.jpg") center no-repeat;
  background-size: cover;
  background-position: 0 80px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2em;
}

footer a {
  color: #000;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

footer a:hover {
  color: #d00;
}

footer .dot {
  display: block;
  height: 10px;
  padding-top: 10px;
}

footer .social {
  height: 40px;
}

#scrollUp {
  position: fixed;
  bottom: 5px;
  right: 50px;
  opacity: 0.9;
}

/*-------- Page Accueil ---------*/

/* Intro */

#intro {
  padding-top: 100px;
  padding-right: 10%;
  padding-left: 10%;
  padding-bottom: 20px;
  text-align: center;
  background: url("../images/line.png") center bottom no-repeat;
}

#intro h1 {
  font-family: "Crimson Text", sans-serif;
  font-size: 1.1em;
  font-weight: bold;
  letter-spacing: 0.3em;
}

#institut {
  height: 700px;
}

#institut .image {
  max-height: 650px;
}

#soins {
  height: 350px;
}

#soins .content {
  text-align: right;
}

/*-------- Page Prestations ---------*/

/* Visage */

#visage {
  height: 600px;
}

#visage .image {
  max-height: 550px;
}

/* Corps */

#corps {
  height: 500px;
}

#corps .content {
  height: 200px;
}

/* Maquillage */

#maquillage {
  height: 600px;
}

#maquillage .image {
  max-height: 450px;
}

/* Epilation */

#epilation {
  height: 400px;
}

/* Photopilaire */

#photopilaire {
  height: 500px;
}

#photopilaire .content {
  height: 200px;
}

/* Manucure */

#manucure {
  height: 600px;
}

/* Coffrets */

#coffrets {
  height: 450px;
}

/*-------- Page Tarifs ---------*/

#tarifs {
  height: 2000px;
  margin-top: 10px;
}

#tarifs .title {
  width: 510px;
  padding: 0.5em;
}

#tarifs .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: left;
  padding: 120px 0px 50px 0px;
  width: calc(100% - 100px);
  height: 1680px;
}

#tarifs .rubrique {
  min-width: 265px;
  max-width: 350px;
  padding: 10px;
}

#tarifs .sousrubrique {
  padding-top: 10px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
}

#tarifs p {
  text-align: center;
  width: 180px;
  padding: 5px;
  border-width: 3px;
  border-style: double;
  border-color: black;
  margin: auto;
  margin-bottom: 10px;
}

#tarifs td {
  padding: 0 11px 3px 0;
  text-transform: none;
  letter-spacing: 0.1em;
}

#tarifs td:last-of-type {
  text-align: right;
}

#tarifs .desc {
  color: #909090;
}

/*-------- Page Photopilaire ---------*/

/* Ariane */

#ariane {
  height: 400px;
  background: url("../images/line.png") center bottom no-repeat;
}

#ariane .image {
  height: 350px;
  object-fit: scale-down;
  object-position: center center;
}

#presta {
  height: 800px;
  margin-top: 10px;
}

#presta .title {
  width: 510px;
  padding: 0.5em;
}

#presta .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: left;
  padding: 120px 0px 50px 0px;
  width: calc(100% - 100px);
  height: 600px;
}

#presta .rubrique {
  min-width: 265px;
  max-width: 350px;
  padding: 10px;
}

#presta .sousrubrique {
  padding-top: 10px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
}

#presta p {
  text-align: center;
  width: 180px;
  padding: 5px;
  border-width: 3px;
  border-style: double;
  border-color: black;
  margin: auto;
  margin-bottom: 10px;
}

#presta td {
  padding: 0 11px 3px 0;
  text-transform: none;
  letter-spacing: 0.1em;
}

#presta td:last-of-type {
  text-align: right;
}

#presta .desc {
  color: #909090;
}

/*-------- Page Marques ---------*/

/* LPG */

#lpg {
  height: 300px;
  background: url("../images/line.png") center bottom no-repeat;
}

#lpg .image {
  height: 200px;
  object-fit: scale-down;
  object-position: center center;
}

/* Thalion */

#thalion {
  height: 300px;
  background: url("../images/line.png") center bottom no-repeat;
}

#thalion .image {
  height: 200px;
  object-fit: scale-down;
  object-position: center center;
}

/* Baija */

#baija {
  height: 300px;
  background: url("../images/line.png") center bottom no-repeat;
}

#baija .image {
  height: 200px;
  object-fit: scale-down;
  object-position: center center;
}

/* 1944paris */

#paris1944 {
  height: 300px;
  background: url("../images/line.png") center bottom no-repeat;
}

#paris1944 .image {
  height: 200px;
  object-fit: scale-down;
  object-position: center center;
}

/* Nailmatic */

#nailmatic {
  height: 300px;
  background: url("../images/line.png") center bottom no-repeat;
}

#nailmatic .image {
  height: 200px;
  object-fit: scale-down;
  object-position: center center;
}

/*-------- Page Contact ---------*/

#plan {
  height: 520px;
}

#plan .image {
  top: 150px;
}

#plan .title {
  top: 0px;
}

#plan .content {
  bottom: 100px;
}

#horaire {
  height: 370px;
}

#horaire .content {
  height: 170px;
}

#horaire td {
  padding: 5px 20px 5px 5px;
  font-size: 1.3em;
}

/*------------------------------------*\
  #X Large SCREEN
\*------------------------------------*/

@media screen and (max-width: 1680px) {
}

/*------------------------------------*\
  #Large SCREEN
\*------------------------------------*/

@media screen and (max-width: 1280px) {
  footer {
    font-size: 1em;
  }

  /*-------- Page Tarifs ---------*/
  #tarifs td {
    font-size: 0.85em;
    letter-spacing: 0em;
  }

  #tarifs .rubrique {
    width: 265px;
  }

  /*-------- Page Photopilaire ---------*/
  #presta td {
    font-size: 0.85em;
    letter-spacing: 0em;
  }

  #presta .rubrique {
    width: 265px;
  }
}

/*------------------------------------*\
  #Medium SCREEN
\*------------------------------------*/

@media screen and (max-width: 980px) {
  #bloc_logo {
    height: 200px;
    position: fixed;
    z-index: 2;
    top: 0;
  }

  #logo {
    width: 300px;
  }

  #red_button {
    position: fixed;
    top: 210px;
    font-size: 1.2em;
    background-size: 317px;
    padding-left: 3em;
    width: 370px;
    height: 125px;
    z-index: 3;
  }

  footer {
    font-size: 0.8em;
    padding: 25px 50px 0 50px;
    height: 150px;
  }

  #scrollUp {
    display: none;
  }

  /*-------- Navigation verticale ---------*/
  #nav {
    display: block;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 4;
    -webkit-user-select: none;
    user-select: none;
  }

  #nav input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }

  /* Just a quick hamburger */
  #nav span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #nav span:first-child {
    transform-origin: 0% 0%;
  }

  #nav span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  /* Transform all the slices of hamburger into a crossmark. */
  #nav input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-10px, -22px);
    background: #000;
  }

  /* But let's hide the middle one. */
  #nav input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  /* Oh yeah and the last one should go the other direction */
  #nav input:checked ~ span:nth-last-child(4) {
    transform: rotate(-45deg) translate(-7px, 17px);
  }

  /* Make this absolute positioned at the top left of the screen */
  #menu {
    position: absolute;
    margin: 0;
    top: -10px;
    left: -10px;
    padding-top: 40px;
    width: 220px;
    background: #fcfcfc;
    list-style-type: none;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(-235px, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu li a,
  #menu .dropbtn {
    padding: 10px 20px;
  }

  #menu .dropdown-content {
    left: 70px;
  }

  /* And let's slide it in from the left */
  #nav input:checked ~ ul {
    transform: none;
  }

  /*-------- Sections global style --------*/
  .title {
    letter-spacing: 0.15em;
    font-size: 2em;
  }

  .green_button {
    font-size: 0.9em;
  }

  .white_button {
    font-size: 0.9em;
  }

  /* White sections with left image */
  .white-left,
  .white-right {
    padding: 30px 5% 0 5%;
  }

  .white-left .image {
    width: 100%;
  }

  .white-left .title,
  .white-right .title {
    position: absolute;
    left: 50%;
    top: 30%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    padding: 0.7em;
  }

  .white-left .content,
  .white-right .content {
    width: 80%;
    left: 10%;
    bottom: 80px;
  }

  .white-left .green_button,
  .white-right .green_button {
    bottom: 30px;
  }

  /* White sections with right image */
  .white-right .image {
    top: 30px;
    left: 5%;
    width: 90%;
  }

  /* Bergamote sections */
  .bergamote {
    padding: 0 30px 0 30px;
  }

  .bergamote .title {
    width: 420px;
    padding: 0.7em;
    top: 50px;
    left: 50%;
  }

  .bergamote .content {
    padding: 100px 30px 30px 30px;
    width: calc(100% - 160px);
  }

  .bergamote .green_button {
    bottom: 50px;
  }

  /* Green sections */
  .green {
    padding: 0 30px 0 30px;
  }

  .green .title {
    padding: 0.7em;
    top: 0;
    left: 50%;
  }

  .green .content {
    padding: 50px 30px 30px 30px;
    left: 50px;
    width: calc(100% - 160px);
    top: 50px;
  }

  .green .white_button {
    bottom: 30px;
  }

  /*--------- Page Prestations --------*/
  #intro {
    margin-top: 300px;
    padding-top: 10px;
    padding-right: 200px;
  }

  /* Visage */
  #visage {
    height: 500px;
  }

  #visage .image {
    height: 150px;
  }

  /* Corps */
  #corps {
    height: 450px;
  }

  #corps .content {
    height: 230px;
  }

  /* Maquillage */
  #maquillage {
    height: 400px;
  }

  #maquillage .image {
    height: 150px;
  }

  /* Epilation */
  #epilation {
    height: 250px;
  }

  #epilation .content {
    height: 100px;
  }

  /* Photopilaire */
  #photopilaire {
    height: 450px;
  }

  #photopilaire .content {
    height: 230px;
  }

  /* Manucure */
  #manucure {
    height: 450px;
  }

  #manucure .title {
    width: 400px;
  }

  #manucure .image {
    height: 150px;
  }

  #manucure .content {
    height: 100px;
  }

  /* Coffrets */
  #coffrets {
    height: 420px;
  }

  #coffrets .content {
    height: 270px;
  }

  /*-------- Page Institut ---------*/
  #institut {
    height: 550px;
    padding-top: 40px;
  }

  #institut .image {
    max-height: 300px;
  }

  #institut .content {
    padding: 10px;
  }

  /*-------- Page Tarifs ---------*/
  #tarifs {
    height: 6200px;
    background-image: none;
    background-color: black;
  }

  #tarifs .content {
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-top: 100px;
    padding-left: 200px;
    width: calc(100% - 300px);
    height: 5980px;
  }
  #tarifs .title {
    width: 410px;
  }

  #tarifs p {
    font-size: 1.1em;
  }

  #tarifs .rubrique {
    width: 600px;
  }

  #tarifs td {
    font-size: 1.3em;
    letter-spacing: 0.1em;
  }

  /*-------- Page Photopilaire ---------*/
  /* Ariane */
  #ariane {
    height: 450px;
  }

  #ariane .image {
    max-height: 200px;
  }

  #presta {
    height: 1700px;
    background-image: none;
  }

  #presta .content {
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-top: 100px;
    padding-left: 200px;
    width: calc(100% - 300px);
    height: 1450px;
  }
  #presta .title {
    width: 410px;
  }

  #presta p {
    font-size: 1.1em;
  }

  #presta .rubrique {
    width: 600px;
  }

  #presta td {
    font-size: 1.3em;
    letter-spacing: 0.1em;
  }

  /*-------- Page Marques ---------*/
  /* LPG */
  #lpg {
    height: 350px;
  }

  #lpg .image {
    max-height: 100px;
  }

  #lpg .content {
    height: 180px;
  }

  /* Thalion */
  #thalion {
    height: 350px;
  }

  #thalion .image {
    max-height: 100px;
  }

  /* Baija */
  #baija {
    height: 350px;
  }

  #baija .image {
    max-height: 100px;
  }

  #baija .content {
    height: 180px;
  }

  /* 1944paris */
  #paris1944 {
    height: 350px;
  }

  #paris1944 .image {
    max-height: 100px;
  }

  /* Nailmatic */
  #nailmatic {
    height: 380px;
  }

  #nailmatic .image {
    max-height: 100px;
  }

  /*-------- Page Contact ---------*/
  #plan {
    height: 750px;
  }

  #plan .title {
    width: 490px;
    top: 70px;
  }

  #plan .content {
    bottom: 30px;
  }

  #horaire {
    height: 320px;
  }

  #horaire .content {
    height: 180px;
  }

  #horaire td {
    padding: 5px 20px 5px 5px;
    font-size: 1.3em;
  }
}

/*------------------------------------*\
  #Small SCREEN
\*------------------------------------*/

@media screen and (max-width: 736px) {
  #bloc_logo {
    height: 100px;
  }

  #logo {
    width: 150px;
  }

  #red_button {
    top: 75px;
    font-size: 0.86em;
    background-size: 190px;
    width: 185px;
    padding-left: 22px;
    padding-top: 42px;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px 10px 0 20px;
    height: 250px;
    background-position: 0 200px;
    font-size: 1em;
    font-weight: bold;
  }

  footer div {
    padding: 10px;
  }

  footer .dot {
    display: none;
  }

  footer .social {
    height: 30px;
  }

  .title {
    letter-spacing: 0.15em;
    font-size: 1.5em;
  }

  .content {
    font-size: 0.8em;
  }

  .green_button {
    font-size: 0.8em;
  }

  .white_button {
    font-size: 0.8em;
  }

  /* White sections with left image */
  .white-left,
  .white-right {
    padding: 30px 0 0 0;
  }

  .white-left .image {
    width: 100%;
  }

  .white-left .title,
  .white-right .title {
    top: 50px;
    box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.2);
    padding: 0.5em;
  }

  .white-left .content,
  .white-right .content {
    width: 80%;
    left: 10%;
    bottom: 70px;
  }

  .white-left .green_button,
  .white-right .green_button {
    bottom: 30px;
  }

  /* White sections with right image */
  .white-right .image {
    top: 30px;
    left: 0;
    width: 100%;
  }

  /* Bergamote sections */
  .bergamote {
    padding: 0 10px 0 10px;
  }

  .bergamote .title {
    width: 315px;
    padding: 0.5em;
    top: 20px;
    left: 50%;
  }

  .bergamote .content {
    top: 20px;
    left: 20px;
    padding: 70px 10px 10px 10px;
    width: calc(100% - 60px);
  }

  .bergamote .green_button {
    bottom: 35px;
  }

  /* Green sections */
  .green {
    padding: 0 10px 0 10px;
  }

  .green .title {
    padding: 0.5em;
    top: 0;
    left: 50%;
  }

  .green .content {
    padding: 15px 20px 30px 20px;
    left: 20px;
    width: calc(100% - 80px);
    top: 50px;
  }

  .green .white_button {
    bottom: 20px;
  }

  /*--------- Page Accueil --------*/
  #intro {
    margin-top: 160px;
    padding: 10px 15px 10px 15px;
  }

  #intro h1 {
    font-size: 1em;
    letter-spacing: 0.2em;
  }

  /* Visage */
  #visage {
    height: 500px;
  }

  #visage .image {
    height: 120px;
  }

  #visage .title {
    width: 250px;
  }

  /* Corps */
  #corps {
    height: 470px;
  }

  #corps .content {
    height: 350px;
  }

  /* Maquillage */
  #maquillage {
    height: 400px;
  }

  #maquillage .image {
    height: 120px;
  }

  /* Epilation */
  #epilation {
    height: 240px;
  }

  #epilation .content {
    height: 130px;
  }

  /* Photopilaire */
  #photopilaire {
    height: 470px;
  }

  #photopilaire .content {
    height: 350px;
  }

  /* Manucure */
  #manucure {
    height: 350px;
  }

  #manucure .title {
    width: 300px;
    top: 70px;
  }

  #manucure .image {
    height: 120px;
  }

  /* Coffrets */
  #coffrets {
    height: 530px;
  }

  #coffrets .content {
    height: 430px;
  }

  /*------- Page Institut --------*/
  #institut {
    height: 600px;
    margin-top: 10px;
  }

  #institut .image {
    height: 300px;
  }

  #soins {
    height: 360px;
  }

  #soins .title {
    font-size: 1.1em;
  }

  /*-------- Page Tarifs ---------*/
  #tarifs {
    height: 4700px;
  }

  #tarifs .content {
    padding-top: 70px;
    padding-left: 10px;
    width: calc(100% - 50px);
    height: 4410px;
  }
  #tarifs .title {
    width: 310px;
  }

  #tarifs p {
    font-size: 1em;
  }

  #tarifs .rubrique {
    width: auto;
  }

  #tarifs td {
    font-size: 1.1em;
    letter-spacing: 0em;
  }

  /*-------- Page Photopilaire ---------*/

  #ariane {
    height: 550px;
  }

  #ariane .image {
    max-height: 200px;
  }

  #presta {
    height: 1300px;
  }

  #presta .content {
    padding-top: 70px;
    padding-left: 10px;
    width: calc(100% - 50px);
    height: 1150px;
  }
  #presta .title {
    width: 310px;
  }

  #presta p {
    font-size: 1em;
  }

  #presta .rubrique {
    width: auto;
  }

  #presta td {
    font-size: 1.1em;
    letter-spacing: 0em;
  }

  /*-------- Page Marques ---------*/

   /* LPG */
  #lpg {
    height: 350px;
  }

  #lpg .image {
    max-height: 70px;
  }

  #lpg .content {
    height: 180px;
  }

  /* Thalion */
  #thalion {
    height: 420px;
  }

  #thalion .image {
    max-height: 70px;
  }

  /* Baija */
  #baija {
    height: 350px;
  }

  #baija .image {
    max-height: 70px;
  }

  #baija .content {
    height: 180px;
  }

  /* 1944paris */
  #paris1944 {
    height: 400px;
  }

  #paris1944 .image {
    max-height: 90px;
  }

  /* Nailmatic */
  #nailmatic {
    height: 490px;
  }

  #nailmatic .image {
    max-height: 90px;
  }

  /*-------- Page Contact ---------*/
  #plan {
    height: 700px;
  }

  #plan .title {
    width: 320px;
    font-size: 1.3em;
    top: 50px;
  }

  #plan .image {
    top: 100px;
  }

  #plan .content {
    font-size: 0.7em;
    bottom: 30px;
  }

  #horaire {
    height: 270px;
  }

  #horaire .content {
    height: 170px;
  }

  #horaire td {
    font-size: 1.1em;
  }
}

/* Very small */

@media screen and (max-width: 360px) {
  .content {
    font-size: 0.7em;
  }

  .title {
    letter-spacing: 0.15em;
    font-size: 1.3em;
  }

  #manucure .title {
    width: 250px;
  }

  #horaire td {
    padding-right: 10px;
    font-size: 1em;
  }

  /*-------- Page Tarifs ---------*/
  #tarifs {
    height: 4500px;
  }

  #tarifs .content {
    height: 4320px;
  }
  #tarifs .title {
    font-size: 1.2em;
    width: 250px;
  }

  /*-------- Page Photopilaire ---------*/
  #presta {
    height: 1200px;
  }

  #presta .content {
    height: 1050px;
  }
  #presta .title {
    font-size: 1.2em;
    width: 250px;
  }

  /*-------- Page Marques ---------*/
  /* Thalion */
  #thalion {
    height: 380px;
  }

  #thalion .image {
    max-height: 60px;
  }

  /*-------- Page Contact ---------*/

  #plan .title {
    width: 270px;
    font-size: 1.1em;
  }
}
