/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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-size: 100%;
	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;
}
body {
	line-height: 1;
}
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;
}
* {box-sizing: border-box;}

/**********************/
/*       GÉNÉRAL      */
/**********************/
::-webkit-scrollbar {
    display: none;
}
* {outline: none;}
input[type="search"], input[type="submit"] {
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
}

body {
	background-color: #e5e5e5;
  color: #ffffff;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	position: relative;
}

address {font-weight: 200;}

a {
	text-decoration: none;
	color: white;
	cursor: pointer;
}
.uppercase {text-transform: uppercase;}
.light {font-weight: 200;}
.white {padding: 0 32px;}
.logo-texte {
	text-transform: uppercase;
	font-weight: bold;
}
.legende {
    color: #a0a0a0;
    text-transform: uppercase;
    font-size: 15px;
}
.margin-bottom-50 {margin-bottom: 50px;}
/* SECTIONS */
/* pour polygons */
#home, #team, #galerie, #prestations {position: relative;}

#team, #galerie {
	background-color: #e5e5e5;
	color: #3a4042;
}
#partenaires, #footer {
	background-color: #3a4042;
	color: white;
}
/****/

.wrapper {
	width: 1170px;
	margin: 0 auto;
	text-align: center;
	padding: 60px 0;
	z-index: 200;
  position: relative;
}
.wrapper.white {
  padding: 60px 32px;
  background-color: #fff;
  -moz-box-shadow: 0px 0px 20px 14px rgba(0, 0, 0, .03);
  -webkit-box-shadow: 0px 0px 20px 14px rgba(0, 0, 0, .03);
  -o-box-shadow: 0px 0px 20px 14px rgba(0, 0, 0, .03);
  box-shadow: 0px 0px 20px 14px rgba(0, 0, 0, .03);

}

h1, h2, h3, h4 {font-family: 'Six Caps', sans-serif;}

h1 {display: inline-block;}

h2 {
	font-size: 110px;
    letter-spacing: 5px;
    margin-top: 20px;
}

h3 {
	font-size: 60px;
	margin: 60px 0;
	display: inline-block;
	position: relative;
	letter-spacing: 2px;
}
h3:after {
	content:'';
	position: absolute;
	bottom: -10px;
	left: 0;
	height: 2px;
	width: 100%;
	background-color: #fff;
}

.wrapper.white h3, #client-visites h3,
#client-produits h3 {color: #3a4042;}

.wrapper.white h3:after, #client-visites h3:after,
#client-produits h3:after {background-color: #3a4042;}

h4 {
	font-size: 35px;
	letter-spacing: 2px;
}

article.wow.fadeInUpHome h4 {
    display: block;
}
article.wow.fadeInUpHome h4:nth-child(8) {
    padding-bottom: 30px;
}

h5 { /* galerie */
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 0 5px 0px;
    line-height: 20px;
    font-size: 14px;
}
h6 {text-transform: uppercase;}

/* NAV DESKTOP */

nav {
	text-transform: uppercase;
	font-size: 14px;
}
#nav-desktop {
  position: fixed;
	left:0;
	right:0;
	z-index:1000;
	background-color: #000;

}
/* menu pour index.html */
#nav-desktop.navMenuAppear {opacity:0; /* JS -> menuAppear */}

.nav-wrapper {
	width: 90%;
	margin: 0 auto;
}
#nav-desktop .nav-wrapper {
	display: flex;
	justify-content: space-between;
  overflow: hidden;
}
#nav-desktop #navigation, #nav-desktop #connexion {
	display: flex;
	align-items: center;
}

#nav-desktop #navigation {justify-content: flex-start;}

#nav-desktop #navigation ul {
	display: flex;
	align-items: stretch;
	margin-left: 40px;
	font-size: 14px;
}

#nav-desktop #navigation li {
  display: flex;
  align-items: center;
}

#nav-desktop a {
	text-decoration: none;
	color: white;
}

#nav-desktop #navigation ul a {
	display: block;
	padding: 20px;
}
#nav-desktop #navigation ul i {padding-right: 6px;}

/**********************/
/* BOUTON Prendre RDV */
/**********************/

/*@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(123px, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(123px, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
  animation-iteration-count: infinite;

}*/
@-webkit-keyframes reflect {
  0% {transform: rotate(-60deg) translateY(-300px);}
  100% {transform: rotate(-60deg) translateY(300px);}
}
@keyframes reflect {
  0% {transform: rotate(-60deg) translateY(-300px);}
  100% {transform: rotate(-60deg) translateY(300px);}
}

.anim-rdv {
    position: absolute;
    bottom: 0;
    left: calc(50% - 75px);
    display: block;
    padding: 30px 50px;
    color: #c89c48;
    text-transform: uppercase;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 1px;
    transform: rotate(-60deg) translateY(-300px);
    animation-duration: 3s;
    animation-delay: 1s;
    animation-name: reflect;
    animation-iteration-count: infinite;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

#nav-desktop #navigation ul li:last-child {
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  display: block;
}
/* reflet */
#nav-desktop #navigation ul li:last-child div {
  position: absolute;
  top:0;
  left:0;
  width: 200px;
  height: 48px;
  background-color: rgba(255, 255, 255, .25);
}

#nav-desktop #navigation ul li:last-child a {
  color: #f6b640;

  padding-top: 28px;
}

/********************/
/* BOUTONS PRENDRE RDV HOME */
/********************/
#home h4 a { 
  background-color: #000000;
  padding: 2px 20px 5px 20px;
  border-radius: 5px;
  opacity: 0.8;
  font-family: 'Oswald', sans-serif;
  color: #f6b640;
  font-size: 24px;
}

/********************/
/* BOUTONS A DROITE */
/********************/

#nav-desktop #connexion {justify-content: flex-end;}
#nav-desktop #connexion div:first-child {margin-right: 15px;}

#nav-desktop #connexion a {
	padding: 10px 30px;
  display: block;
  border: 2px solid #fff;
	position: relative;
	transition: .3s;
}

/* double-rectangle */
#nav-desktop #connexion a:after {
	content: "";
    position: absolute;
    top: 3px;
    left: -7px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: 2px solid white;
    opacity: .6;
    transition: .2s ease-in-out;
}

#nav-desktop #connexion a:hover:after {
	top: 0;
	left: 0;
	opacity: 0;
}

/* NAV TABLETTE & MOBILE */
.slicknav_menu {display:none;}


/* BLOC FIXE BAS DROTIE */
#home address {
	color: #3a4042;
	font-size: 14px;
	position: absolute;
	bottom: 35px;
	right: 30px;
	text-align: right;
	line-height: 22px;
	z-index: 900;
}
#home address a {color: #3a4042;}

/* social */
#social {
	position: fixed;
	right: 30px;
	bottom: 135px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}
#social a, #social-mobile a {
	display: block;
	background-color: #3a4042;
	text-align: center;
	margin-top: 8px;
	-webkit-transition: background-color 0.3s ease-in-out;
	-o-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}
#social a:hover, #social-mobile a:hover {background-color: #c89c48;}
#social i, #social-mobile i {padding: 0.7em 0.4em;}


/**********************/
/*        HOME        */
/**********************/
.overlay {
	width: 100%;
	height: 100vh;
  background-color: #283336;
	opacity: 0.6 !important;
}

/* Formulaire connexion */
#formConnexion, #formInscription {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 200px);
  display: flex;
  flex-direction: column;
  background-color: #000000;
  padding: 50px;
  border-radius: 5px;
  width: 400px;
  z-index: 1000;
}
#formConnexion p, #formInscription p {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 2px;
  font-size: 18px;
}
#formConnexion p:after, #formInscription p:after {
  content:"";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 94px;
  height: 4px;
  background-color: #c89c48;
}
#formInscription p:after {width: 105px;}

#formConnexion label, #formInscription label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: grey;
  line-height: 20px;
}

#formConnexion input, #formInscription input{
  background-color: #000;
  color: #ffffff;
  border-top: #000;
  border-left: #000;
  border-right: #000;
  padding: 7px 0;
  position: relative;
  font-size: 16px;
  margin-bottom: 15px;
}

#formConnexion input::-webkit-input-placeholder,
#formInscription input::-webkit-input-placeholder {
   color: #fff;
   font-style: italic;
}

#formConnexion input:-moz-placeholder, /* Firefox 18- */
#formInscription input:-moz-placeholder{
   color: #fff;
   font-style: italic;
}

#formConnexion input::-moz-placeholder,  /* Firefox 19+ */
#formInscription input::-moz-placeholder{
   color: #fff;
   font-style: italic;
}

#formConnexion input:-ms-input-placeholder,
#formInscription input:-ms-input-placeholder {
   color: #fff;
   font-style: italic;
}

#formConnexion input[type="submit"], #formInscription input[type="submit"]{
  background-color: #c89c48;
  border: none;
  display: inline-block;
  width: 60%;
  margin: 0 auto;
  padding:  15px 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 10px auto 15px;
}
#formConnexion a, #formInscription a  {
  color: grey;
  font-weight: 200;
  text-decoration: underline;
  display: inline-block;
  text-align: center;
  font-size: 14px;
}
#formConnexion i, #formInscription i{
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  cursor: pointer;
}

 /***/

#home {
	background: url(theme/background_home.jpg) no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
/** Animations polygons **/

.polygon-1, .polygon-2, .polygon-3,
.polygon-4, .polygon-5, .polygon-6, .polygon-7 {
  z-index: 0;
}
.polygon-1, .polygon-2 {
	position: absolute;
	right: 0;
    width: 0;
    height: 0;
}
.polygon-1 {
    bottom: 0;
    border-bottom: 300px solid #fff;
    border-left: 500px solid transparent;
    transform-origin: bottom left;
}

.polygon-2 {
    top: 0;
    border-top: 1000px solid rgba(255, 255, 255, 0.5);
    border-left: 600px solid transparent;
    transform-origin: bottom right;
}
/**/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 52deg);
    transform: rotate3d(0, 0, 1, 52deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
	transform: none;
    opacity: 1;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 52deg);
    transform: rotate3d(0, 0, 1, 52deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
	transform: none;
    opacity: 1;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform:none;
    transform:none;
    opacity: 1;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform:none;
    transform:none;
    opacity: 1;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes fadeInUpHome {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    top: 48%;
	  transform: translate3d(0, -50%, 0);
	  -webkit-transform: translate3d(0, -50%, 0);
  }
}
/************/

@keyframes fadeInUpHome {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
	  transform: translate3d(0, -50%, 0);
	  -webkit-transform: translate3d(0, -50%, 0);
  }
}

.fadeInUpHome {
  -webkit-animation-name: fadeInUpHome;
  animation-name: fadeInUpHome;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#home article img {width: 35%;}

#home article {
	width: 50%;
	margin: 0 auto;
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	left: 25%;
	opacity:1;
	text-align: center;
}

#home #ligne {
    width: 80px;
    height: 1px;
    background-color: white;
    margin: 23px auto;
}

#home article p {
	line-height: 28px;
	padding: 0 15%;
	font-size: 18px;
}


/* indicateur scroll */
@-webkit-keyframes float {
  0% {transform: translatey(0px);}
  50% {transform: translatey(-18px);}
  100% {transform: translatey(0px);}
}
@keyframes float {
  0% {transform: translatey(0px);}
  50% {transform: translatey(-18px);}
  100% {transform: translatey(0px);}
}

.scrollHome {
    position: absolute;
    bottom: 0;
    left: calc(50% - 75px);
    display: block;
    padding: 30px 50px;
    color: #c89c48;
    text-transform: uppercase;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 1px;
    transform: translateY(0px);
    animation: float 2s ease-in-out infinite;
}
.scrollHome i {padding-left: 6px;}

/**********************/
/*        TEAM        */
/**********************/
#team h3:after {background-color: #3a4042;}

#team article {
	display: flex;
	align-items: center;
	text-align: left;
  z-index: 10;
  position: relative;
}
#team article:nth-of-type(1) div {padding: 0 13% 0 5%;}
#team article:nth-of-type(3) div {padding: 0 13% 0 5%;}
#team article:nth-of-type(2) div {
	order: -1;
	padding: 0 5% 0 10%;
}
#team article img {
  width: 40%;
}

#team .legende {margin: 20px 0;}
#team p {line-height: 22px;}

.polygon-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    opacity: 1;
    border-top: 600px solid #fff;
    border-left: 500px solid transparent;
}
.polygon-4 {
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 600px solid white;
    border-right: 500px solid transparent;
}

.polygon-5 {
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 800px solid rgba(255, 255, 255, .5);
    border-right: 500px solid transparent;
}


/**********************/
/*    PRESTATIONS     */
/**********************/
#prestations  h4 {margin-bottom: 30px;}
#prestations .wrapper {padding-bottom: 95px;}
#prestations {
	background: url(theme/background_prestations.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	width: 100%;
}

.bloc-prestations {text-align: left;}

.bloc-prestations:nth-of-type(2) {margin-top: 65px;}
.tarifs {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.tarifs ul {width: 30%;}

.tarifs li {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 18px;
}

.tarifs li:after {
	content:'';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}
.tarifs ul .li-except:after {
	height: 0;
}

/**********************/
/*      GALERIE       */
/**********************/
#galerie {
	text-align: center;
	padding: 60px 0 80px;
	position: relative;
	overflow: hidden;
}
#galerie-photos {
	margin: 0 auto;
  width: 80%;
  max-width: 840px;
  z-index:1;
  position: relative;
}
#galerie ul li {
    display: inline-block;
    margin: 30px;
    height: 300px;
    width: 212px;
    vertical-align: top;
    text-align: left;
}
#galerie ul li a {display: block;}

#galerie h3:after {background-color: #3a4042;}

.fancybox-caption{
	text-align:center;
	font-family: 'Oswald', sans-serif!important;
	text-transform: uppercase;
	font-size: 17px!important;
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.71) 23%, rgba(0,0,0,0.72) 24%, rgba(0,0,0,1) 51%, rgba(0,0,0,0.75) 76%, rgba(0,0,0,0.02) 100%);
    background: -o-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.71) 23%, rgba(0,0,0,0.72) 24%, rgba(0,0,0,1) 51%, rgba(0,0,0,0.75) 76%, rgba(0,0,0,0.02) 100%);
    background: -ms-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.71) 23%, rgba(0,0,0,0.72) 24%, rgba(0,0,0,1) 51%, rgba(0,0,0,0.75) 76%, rgba(0,0,0,0.02) 100%);
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.71) 23%, rgba(0,0,0,0.72) 24%, rgba(0,0,0,1) 51%, rgba(0,0,0,0.75) 76%, rgba(0,0,0,0.02) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.71) 23%, rgba(0,0,0,0.72) 24%, rgba(0,0,0,1) 51%, rgba(0,0,0,0.75) 76%, rgba(0,0,0,0.02) 100%);
}


/* Polygons */
.polygon-6 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 900px solid rgba(255, 255, 255, .5);
    border-left: 500px solid transparent;
}

.polygon-7 {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 400px solid #fff;
    border-left: 300px solid transparent;
}

/**********************/
/*     PARTENAIRES    */
/**********************/
.carousel-partenaires {
  display: flex;
    justify-content: center;
}

/* carousel SLICK */
.slick-dots{display: none!important;}
#partenaires .slick-slider {
	padding: 0 30px;
	margin-bottom: 60px;
}
#partenaires .slick-slide img {
	width: 80%;
    margin: 0 auto;
}
/**********************/
/*     TÉMOIGNAGES    */
/**********************/
#temoignages {
	background: url(theme/background_temoignages.jpg) no-repeat 0 0;
	background-color: #000;
	-webkit-background-size: cover;
	background-size: cover;
	width: 100%;
}
#temoignages .slick-slider {
	width: 80%;
	padding: 0 30px;
}
#temoignages .slick-slide {
	text-align: left;
	padding: 80px 30px;
}
#temoignages .slick-slide i {color: #c89c48;}
#temoignages .slick-slide p {line-height: 22px;}
#rate {padding: 8px 0 16px;}
.carousel-temoignages h6 {margin-bottom: 18px;}
/**********************/
/*         MAP        */
/**********************/

#map{ /* la carte DOIT avoir une hauteur sinon elle n'apparaît pas */
  height:400px;
}
.leaflet-popup-content {width: 243px;}

/**********************/
/*       MODALE       */
/**********************/
#modal-recrut.modal {top:50px;}
#modal-recrut .modal-content{
  border-radius: 0px;
  background-color: #292825;
}
#modal-recrut .modal-header {background-color: #292825;}
#modal-recrut .close {
  text-shadow: none;
  color:#eee7c8;
  font-size: 55px;
  font-weight: 200;
  opacity: .7;
}
#modal-recrut .close:hover{opacity: 1;}
#modal-recrut .modal-header{
  padding: 0 20px;
  border: 0;
}
#modal-recrut .modal-body{padding:0;}
#modal-recrut .modal-body img {width: 100%;}
#modal-recrut .modal-footer{
  padding:0;
  font-size: 25px;
  text-align: center;
  border:0;
  background-color: #eee8c8;
}
#modal-recrut .modal-footer button {
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  background: -moz-linear-gradient(top, rgba(238,232,200,1) 0%, rgba(238,232,200,1) 50%, rgba(232,221,174,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(238,232,200,1)), color-stop(50%, rgba(238,232,200,1)), color-stop(100%, rgba(232,221,174,1)));
background: -webkit-linear-gradient(top, rgba(238,232,200,1) 0%, rgba(238,232,200,1) 50%, rgba(232,221,174,1) 100%);
background: -o-linear-gradient(top, rgba(238,232,200,1) 0%, rgba(238,232,200,1) 50%, rgba(232,221,174,1) 100%);
background: -ms-linear-gradient(top, rgba(238,232,200,1) 0%, rgba(238,232,200,1) 50%, rgba(232,221,174,1) 100%);
background: linear-gradient(to bottom, rgba(238,232,200,1) 0%, rgba(238,232,200,1) 50%, rgba(232,221,174,1) 100%);
  border: 0;
  font-size:25px;
  transition: all .1s ease-in-out;
}
#modal-recrut .modal-footer button:hover {
  background: -moz-linear-gradient(top, rgba(252,250,237,1) 0%, rgba(247,239,207,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(252,250,237,1)), color-stop(100%, rgba(247,239,207,1)));
background: -webkit-linear-gradient(top, rgba(252,250,237,1) 0%, rgba(247,239,207,1) 100%);
background: -o-linear-gradient(top, rgba(252,250,237,1) 0%, rgba(247,239,207,1) 100%);
background: -ms-linear-gradient(top, rgba(252,250,237,1) 0%, rgba(247,239,207,1) 100%);
background: linear-gradient(to bottom, rgba(252,250,237,1) 0%, rgba(247,239,207,1) 100%);
}
#modal-recrut button a, #modal-recrut button a:hover {color: #454340;text-decoration: none;}
#modal-recrut .btn-primary{
  background-image: none;
}
#modal-recrut button a{display: block;}
#modal-recrut .btn{
  border-radius: 0;
  padding: 10px;
}
/******************************************/
/*              ADMIN.HTML                */
/******************************************/

#admin>section {
  background: url(theme/background_admin.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100vh;
}
/* Bloc recherche client */
.search-bar {
  height: 40vh;
  position: relative;
}
.search-form {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.search-form input[type="search"] {
  width: 50%;
  height: 50px;
  font-size: 18px;
  padding: 15px 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .03em;
}
.search-form button[type="submit"] {
  width: 50px;
  height: 50px;
  background-color: #c89c48;
  border: none;
  color: #fff;
  cursor: pointer;
}
.search-form button[type="submit"]:hover {
  background-color: #bb8f3b;
}

#bt-search {
    color: #3a4042;
}

/* Bouton ajouter/modifier client */
#addClient {
  display: inline-block;
  padding: 10px 30px;
  display: inline-block;
  border: 2px solid #fff;
  position: relative;
  transition: .3s;
}
#addClient::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -7px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid white;
  opacity: .6;
  transition: .2s ease-in-out;
}

/* Blocs items */

#admin-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}
#admin-items a {
  display: block;
  width: 45%;
  max-width: 550px;
  background-color: green;
  height: 300px;
  margin-bottom: 15px; /* pour responsive */
  cursor: pointer;
}
#admin-items article {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
#admin-items article:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 94%;
  width: 95%;
  margin: 2%;
  background-color: transparent;
  border: 2px solid #3a4042;
}

#admin-items article img {
  position: absolute;
  top: 50%;
  left: calc(50% - 80px);
  transform: translateY(-70%);
}
#admin-items article p {
  position: absolute;
  bottom: 35px;
  left: 35px;
  font-family: 'Six Caps', sans-serif;
  color: #3a4042;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#admin-items article p:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100px;
  background-color: #3a4042;
}
#admin #footer {
  position: absolute;
  bottom: 0;
  left:0;
  right: 0;
}
/*********************************/
/*   ADMIN_GESTION_CLIENT.HTML   */
/*********************************/
.bt-delete {
  opacity: 1!important;
  position: relative;
}

.bt-previous {
  position: absolute;
  top: 75px;
  left: -11px;
  display: inline-block;
  height: 40px;
  width: 115px;
  background-color: #000;
  z-index: 300;
  padding-top: 11px;
  text-align: center;
  opacity: 0;
}
.bt-previous:before {
  content: '';
  position: absolute;
  bottom:-10px;
  left:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent rgba(0, 0, 0, .15) transparent transparent;
}

.fix-top {top: 130px;}

.container-search-bar {
  background: url(theme/background_admin.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}
#profil-picture {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#profil-picture img{
  border: 6px solid #fff;
  -moz-box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, .2);
  -o-box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, .2);
  box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, .2);
}
/* bloc coordonnées */
#profil {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 50px;
  width: 95%;
  margin: 0 auto;
}
#profil, #profil a {color: #c89c48;}
#profil h2 {
  font-size: 95px;
  margin-bottom: 32px;
}
#profil a {
  line-height: 26px;
  font-size: 18px;
  display: block;
}

/* carte */
#carte {
  background-color: #3a4042;
  border-radius: 10px;
  width: 100%;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1056px;
  margin: 30px auto;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, .3);
}
.case, .case-empty, .case-bonus {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 13px 13px 26px 13px;
  padding-top: 40px;
  -moz-box-shadow: -8px 8px 10px 0px rgba(0, 0, 0, .5);
  -webkit-box-shadow: -8px 8px 10px 0px rgba(0, 0, 0, .5);
  -o-box-shadow: -8px 8px 10px 0px rgba(0, 0, 0, .5);
  box-shadow: -8px 8px 10px 0px rgba(0, 0, 0, .5);
}
.case {background-color: #fff;}
.case-empty {
  background-color: #3a4042;
  border: 5px solid #fff;
}
.case-bonus {
  padding-top: 50px;
  background-color: #c89c48;}

.case p:first-of-type {
  color: #3a4042;
  font-size: 20px;
  letter-spacing: 0px;
}
.case p:last-of-type {
  color: #a0a0a0;
  font-size: 18px;
  letter-spacing: 0px;
  font-weight: 200;
}
.case .trait {
  width: 60px;
  height:1px;
  background-color: #a0a0a0;
  margin: 20px auto;
}
.picto-check{
  position: absolute;
  bottom:0;
  left:50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #6ac259;
  transform: translate(-50%, 50%);
}
.picto-check i {
  display: inline-block;
  padding: 8px 0;
  font-size: 22px;
}

.case-empty {padding: 48px;}
.case-empty img {vertical-align: center;}
.case-bonus p {font-size: 65px;}
.case-bonus .light {font-size: 40px;}

/* Listing produits */
.listing-item {
  width: 80%;
  padding: 15px;
  margin: 0 auto;
  border: 2px solid #dcdcdc;
  border-radius: 15px;
  margin-bottom: 15px;
}
.listing-item article {
  display: flex;
  align-items: stretch;
}
.listing-item article>div:first-of-type {background-color: #dcdcdc;}
.container-infos{ /* bloc de texte */
  position: relative;
  flex-grow: 1;
  text-align: left;
  margin: 0 0 0 15px;
  display: flex;
  align-items: center;
}
.container-infos .infos {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
.container-infos .infos div {
  flex-grow: 1;
  color: #898989;
}
.container-infos .infos div:first-of-type {
  flex-grow: 2;
}
.date-item {
  position: absolute;
  top:0;
  left:0;
  color: #898989;
}
.listing-item h5 {
  color: #c89c48;
  position: relative;
  margin-bottom: 15px;
}
.listing-item h5:after {
  content:"";
  position: absolute;
  bottom: 0;
  left:0;
  height: 1px;
  width: 100%;
  background-color: #c89c48;
}
 .wrapper.white {
    min-height: 95vh;
 }
/***********************************/
/*   ADMIN_GESTION_PRODUITS.HTML   */
/***********************************/

/* Bouton ajouter produit */
.listing-filter+.bt-ajouter {
  width: 212px;
  margin: 30px 0 50px 10%;
}

/* Zone Filtres */

.listing-filter {
  overflow: hidden;
  margin: 0 auto;
  width: 80%;
}
#filter-form {
  clear: left;
  display: flex;
}
#filter-form>div, #gallery-form>div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
#filter-form>div {margin-right: 30px;}

#filter-form label, #gallery-edit label {
  color: #3a4042;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
}
#filter-form select, #gallery-edit select,
#gallery-edit #nom-client, #gallery-edit #date-gallery {
  border-radius: 0;
  border: 1px solid #dcdcdc;
  height: 25px;
  width: 210px;
  padding: 5px;
  color: grey;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#filter-form select, #gallery-edit select {
background: url("theme/dropdown_arrow.gif") no-repeat #fff 95% 1px;
}

.listing-filter h4 {
  position: relative;
  font-family: 'Oswald', sans-serif;
  background-color: #3a4042;
  padding: 8px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 22px;
}

/* Affichage produits */

.listing-item article input { /* input produit */
  width: 90%;
  padding: 3px;
  font-family: 'Oswald', sans-serif;
  color:#898989;
  font-size: 15px;
}

.listing-item>input { /* input image */
  display: block;
  margin-top: 10px;
}

.listing-item.edit-item  {position: relative;} /* Bouton modif */

.bt-edit-item, .bt-delete {
  position: absolute;
  top:0;
  right: 15px;
  width: 38px;
  height: 38px;
  padding-top: 8px;
  background-color: #dcdcdc;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  color: #3a4042;
  text-align: center;
  opacity:0;
}

/***********************************/
/*   ADMIN_GESTION_IMAGES.HTML   */
/***********************************/
#gallery-edit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}
#gallery-edit article {
  width: 212px;
  margin-bottom: 90px;
}
/* Survol image */
.picture-edit {
  position: relative;
}
.picture-edit label {
  margin-bottom: 0!important;
  opacity: 1;
}
.picture-edit .bt-edit-item{
  opacity:1;
  z-index:10;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, .3);
}

/* input file */
#gallery-form div:first-of-type input, #partners-edit input{
  margin-top: 10px;
}

#gallery-form>div:nth-of-type(2) {
  margin-top: 30px;
}
#gallery-form>div:nth-of-type(3),
#gallery-form>div:nth-of-type(4) {
  margin-top: 18px;
}


/***************************************/
/*   ADMIN_GESTION_PARTENAIRES.HTML    */
/**************************************/
#partners-edit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}

#partners-edit article {
  width: 212px;
  margin-bottom: 90px;
  position: relative;
}
/* Bouton supprimer partenaire */
#partners-edit article i {
  position: absolute;
  top: -15px;
  right: -18px;
  color: #b3b3b3;
  z-index: 2;
  padding: 6px;
  border-radius: 3px;
  background-color: #fff;
  border: 2px solid #f6f5f5;
}

#partners-edit label div {
  width: 212px;
  height: 144px;
  background-color: #f6f5f5;
  position: relative;
}
#partners-edit label div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
hr {
  background-color: #e5e5e5;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}
.note {
  font-family: Arial, sans-serif;
  color: #b2b3b3;
  letter-spacing: 0;
  font-style: italic;
  font-size: 14px;
  line-height: 17px;
}

/* Bouton ajouter partenaire */
.bt-ajouter {
  background-color: #c89c48;
  width: 100%;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
  border-radius: 3px;
  font-size: 15px;
}


/***********************************/
/*   CLIENT.HTML   */
/***********************************/

#client-visites{
  background: -moz-linear-gradient(left, rgba(220,220,220,1) 0%, rgba(255,255,255,1) 51%, rgba(220,220,220,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(220,220,220,1)), color-stop(51%, rgba(255,255,255,1)), color-stop(100%, rgba(220,220,220,1)));
background: -webkit-linear-gradient(left, rgba(220,220,220,1) 0%, rgba(255,255,255,1) 51%, rgba(220,220,220,1) 100%);
background: -o-linear-gradient(left, rgba(220,220,220,1) 0%, rgba(255,255,255,1) 51%, rgba(220,220,220,1) 100%);
background: -ms-linear-gradient(left, rgba(220,220,220,1) 0%, rgba(255,255,255,1) 51%, rgba(220,220,220,1) 100%);
background: linear-gradient(to right, rgba(220,220,220,1) 0%, rgba(255,255,255,1) 51%, rgba(220,220,220,1) 100%);
}
#client-visites .wrapper {
  padding: 60px 32px;
}
#client-produits {
  background-color: #fff;
  position: relative;
}
@keyframes fadeInUpClient {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpClient {
  -webkit-animation-name: fadeInUpClient;
  animation-name: fadeInUpClient;
}

#knife {
  position: absolute;
  top:-125px;
  right: 0;
  width: 277px;
  height: 500px;
  background: url(theme/couteau.png) no-repeat 0 0;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0;

}
@keyframes rotateKnife {
  from {
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    opacity: 0;
    right: 0;
    top: -125px;
  }

  to {
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
    right: 135px;
    top: -175px;
  }
}
#cisors{
  position: absolute;
  top:-200px;
  left: -120px;
  width: 190px;
  height: 500px;
  background: url(theme/ciseau.png) no-repeat 0 0;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0;
}
@keyframes rotateCisors {
  from {
    transform-origin: bottom right;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }

  to {
    transform-origin: bottom right;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    opacity: 1;
  }
}

#toggler {
  padding: 10px 30px;
  border: 2px solid #c89c48;
  position: relative;
  transition: .3s;
  color: #c89c48;
  text-transform: uppercase;
  margin: 65px 0 45px;
  display: inline-block;
}
#toggler:after {
  content: "";
  position: absolute;
  top: 3px;
  left: -7px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid #c89c48;
  opacity: .6;
  transition: .2s ease-in-out;
}
#toggler:hover{
  background-color: #c89c48;
  color: #fff;
}
#toggler:hover:after {
  top: 0;
  left: 0;
  opacity: 0;
}

/* Laisser un témoignage */

#clientTemoignage {
  background-color: #3a4042;
  height: auto;
  box-shadow: inset 0px 0px 60px black;
}
#form-temoignage {padding: 0 25%;}

#form-temoignage div {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#form-temoignage div input {width: 48%}
#form-temoignage textarea {
  display: block;
  margin: 25px auto 30px;
}
#form-temoignage input[type="text"], #form-temoignage textarea {
  padding: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #a0a0a0;
  letter-spacing: .05em;
}
#form-temoignage textarea {
  width: 100%;
  height: 200px;
}

#form-temoignage input[type="submit"] {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  padding: 10px 30px;
  border: 2px solid #fff;
  position: relative;
  transition: .3s;
  color: #fff;
  background-color: #3a4042;
  cursor: pointer;
}

#elemDeleteAccount {
  color: grey;
  text-decoration: underline;
  margin-top: 100px;
  display: inline-block;
}
#elemDeleteAccount i {
  padding-right: 5px;
}

/**********************/
/*       FOOTER       */
/**********************/
#footer address {font-size: 14px;}

#social-mobile {display:none;}

#footer .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
#address-mobile {display:none;}
 #footer address a:hover{color:#ffffff!important;}
/******************************************/
/*            MEDIA QUERIES               */
/******************************************/
@media screen and (max-width: 1395px) {
  #nav-desktop #navigation ul a {
    font-size: 12px;
     padding: 20px 10px;
  }
  #nav-desktop #connexion a {
    font-size: 12px;
  }
  h1:after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 1px;
    height: 30px;
    background-color: #fff;

  }
}
/* Menu */
@media screen and (max-width: 1200px) {
	/* #nav-desktop is the original menu */
	#nav-desktop {display:none;}
	.slicknav_menu {display:block;}

	#nav-desktop .nav-wrapper {display: inherit;}

	.slicknav_nav h1 a:hover {background-color: #000;}
	.slicknav_nav h1:after {display:none;}
	/* Bouton PRENDRE RDV */
	.slicknav_nav>div>div>ul li:last-of-type a {color: #c89c48;}
	.slicknav_nav>div>div>ul li:last-of-type i {margin-right:6px;}

	/* Boutons CONNEXION et INSCRIPTION */
	.slicknav_nav>div>div:last-child div {margin: 25px 0;}
	.slicknav_nav>div>div:last-child a {
		color: white;
	    background-color: #000;
	    display: inline-block;
	    width: 120px;
	    border: 1px solid #fff;
	    padding: 10px;
            opacity: 1 !important;
	}
	.slicknav_nav>div>div:last-child a:hover {
		color: #c89c48;
		border-color: #c89c48;
                opacity: 1;
	}
	.polygon-1, .polygon-2 {right:-135px;}
  .polygon-3 {border-left: 365px solid transparent;}

  /* ADMIN_GESTION_CLIENT.HTML */
  .bt-previous {
  width: 60px;
  }
}


/*** PETITS ÉCRANS DESKTOP  ***/

@media screen and (max-width: 1200px){
	.wrapper {width: 70%;}

	/* HOME */
	#home article {
		width: 70%;
		left: 15%;
	}
	#home article img {
		width: 40%;
		max-width: 170px;
	}
	#home article p {padding: inherit;}

	/* TEAM */
	#team article {flex-direction: column;}
	#team article div, #team article:nth-of-type(1) {margin-bottom: 20px;}
	#team article div, #team article:nth-of-type(1) div {padding: 0 10%;}
	#team article:nth-of-type(2) div {order:1;}
	#team article img {
    width: 65%;
    max-width: 500px;
  }
  .polygon-3 {opacity:.5;}

	/* PRESTATIONS */
	.tarifs {flex-direction: column;}
	.tarifs ul {
		width: 80%;
		padding-bottom: 20px;
		margin: 0 auto;
	}
	.tarifs ul:last-of-type {padding-bottom: 0;}

  /* ADMIN.HTML */
  #admin>section {height: auto;}
  .search-bar {height:25vh;}

  #admin-items {
    flex-direction: column;
    align-items: center;
  }
  #admin-items a {width:90%;}
  #admin #footer {position: static;}

   /* ADMIN_GESTION_CLIENT.HTML */
   .listing-item {
     width: 60%;
   }
   .listing-item article {
    flex-direction: column;
   }
   .container-infos {
    margin: 15px 0 0 0;
    padding-top: 35px;
   }
   .container-infos .infos {
    flex-direction: column;
   }
   .container-infos .infos div {
    text-align: center;
    margin-bottom: 15px;
   }

   /* ADMIN_GESTION_PRODUITS.HTML */
   .listing-filter {width: 90%}
   #filter-form{flex-direction: column;}
   #filter-form div {margin-right: 0!important;}
   #filter-form div:first-of-type {margin-bottom: 30px;}
   #filter-form select {width: 50%;}

   /* Bouton ajouter produit */
  .listing-filter+.bt-ajouter {
    margin: 30px 0 50px 5%;
  }


   /* CLIENT.HTML */
   #form-temoignage {padding: 0 10%;}
}

/***  SPECIAL  ***/
@media screen and (max-width: 1080px){
  .polygon-2 {display: none;}
  .bt-edit-item {
    display:block;
    opacity: 1;
    box-shadow: 1px 4px 7px rgba(0, 0, 0, .3)
  }
  #knife, #cisors {display:none;}
  /* */
}

/*** TABLETTE ***/

@media screen and (max-width: 768px) {
  .wrapper {width: 90%}
  .polygon-1, .polygon-2, .polygon-3,
  .polygon-4, .polygon-5, .polygon-6, .polygon-7 {
    display:none;
  }
  #home address, #home address a {color: #ffffff;}

	#footer .nav-wrapper {
		flex-direction: column;
		padding: 25px 0;
	}
	#social {display:none;}
	#social-mobile {display: flex;}

  /* ADMIN_GESTION_IMAGES.HTML */
  #gallery-edit {width:80%;}

  /* ADMIN_GESTION_PRODUITS.HTML */
  #filter-form {align-items: center;}
  #filter-form>div {
    margin-right:0!important;
    width: 60%;
  }
  #filter-form select {width: 100%;}

  .listing-filter+.bt-ajouter {
    margin: 30px auto 60px;
    width: 54%;
    min-width: 200px;
  }

}

/*** MOBILE ***/

@media screen and (max-width: 720px){
	.slicknav_nav {
            opacity: 1;
		padding-bottom: 0;
		height: 100vh;
	}
	.slicknav_nav a {padding: 16px !important; opacity: 1;}
	.slicknav_nav>div>div:last-child div {margin: 18px 0; opacity: 1;}

	/* HOME */
	#home article {
		width: 80%;
    left: 10%;
		top: 50%;
	}
	#home article h2 {
		font-size: 55px;
		margin-top: 15px;
	}
	#home #ligne {margin:22px auto;}
	#home article p {
		font-size: 15px;
		line-height: 24px;
	}
  .scrollHome {padding: 19px 50px;}
  #home address {display:none;}

  #team article img {
    width: 100%;
  }
  
 

	/* GALERIE */
	#galerie-photos {width: 100%;}

	/* PARTENAIRES */
	#partenaires .slick-slider, #temoignages .slick-slider {width: 95%;}
	.slick-prev, [dir='rtl'] .slick-next {left: -20px!important;}
	.slick-next, [dir='rtl'] .slick-prev {right: -20px!important;}

	/* TÉMOIGNAGES */
	#temoignages .slick-slide {padding: 40px 30px 0px 30px;}

	/* FOOTER */
	#footer address:first-child {display:none;}
	#address-mobile {
		display:block;
		text-align:center;
		line-height: 22px;
	}
  #footer .nav-wrapper > a {text-align:center;}
	#footer img {width: 55%;}


  /* ADMIN.HTML */
  .search-form input[type="text"] {width: 75%;}

}

@media screen and (max-width: 375px){
  h3 {
    margin: 30px 0;
    font-size: 40px;
  }
  #client-produits h3 {margin: 0 0 60px 0;}
  .bt-previous {
    width: 40px;
  }
  .search-form input[type="search"] {width: 75%;}

  #formConnexion, #formInscription {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    height: auto;
    min-height: 100%;

  }
  #formConnexion input[type="submit"],
  #formInscription input[type="submit"]{width: 100%;}

   /* ADMIN_GESTION_CLIENT.HTML */
   .listing-item {width: 90%;}
   #profil h2 {font-size:45px;}

   /* ADMIN_GESTION_PRODUIT.HTML */
   .listing-filter h4 {font-size:14px;}
   #filter-form>div {width: 100%;}

   /* ADMIN_GESTION_IMAGES.HTML */
  #gallery-edit {
    width:100%;
    justify-content: center;
  }
  #gallery-edit article {margin-bottom: 50px;}

  /* CLIENT.HTML */
  #form-temoignage div {flex-direction: column;}
  #form-temoignage div input {width: 100%;}
  #form-temoignage div input:first-of-type {margin-bottom: 15px;}


}

.draw-border {
  
  transition: color 0.25s 0.0833333333s;
  position: relative;
}
.draw-border::before, .draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.draw-border::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.draw-border::after {
  border-top-width: 2px;
  border-right-width: 2px;
}
.draw-border:hover {
  color: #f6b640;
}
.draw-border:hover::before, .draw-border:hover::after {
  border-color: #f6b640;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.draw-border:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}

a {
  text-decoration: none!important;
}
#home > article > h4:nth-child(8) > a {
  padding: 2px 30px 5px 30px;
}