/* ------
------------START Mise en Forme PAGE SPLASH re nommée INDEX.PHP-------------
---------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 90%;
  height: 100vh;
  background-color: #fff;
  margin: auto;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
}

#logoS {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fill 0.5s ease forwards 4.5s;
}

#logoS path:nth-child(1) {
  stroke-dasharray: 313;
  stroke-dashoffset: 313;
  animation: line-anim 2s ease forwards;
}

#logoS path:nth-child(2) {
  stroke-dasharray: 610;
  stroke-dashoffset: 610;
  animation: line-anim 2s ease forwards 0.3s;
}

#logoS path:nth-child(3) {
  stroke-dasharray: 464;
  stroke-dashoffset: 464;
  animation: line-anim 2s ease forwards 0.6s;
}

#logoS path:nth-child(4) {
  stroke-dasharray: 464;
  stroke-dashoffset: 464;
  animation: line-anim 2s ease forwards 0.9s;
}

#logoS path:nth-child(5) {
  stroke-dasharray: 297;
  stroke-dashoffset: 297;
  animation: line-anim 2s ease forwards 1.2s;
}

#logoS path:nth-child(6) {
  stroke-dasharray: 464;
  stroke-dashoffset: 464;
  animation: line-anim 2s ease forwards 1.5s;
}

#logoS path:nth-child(7) {
  stroke-dasharray: 509;
  stroke-dashoffset: 509;
  animation: line-anim 2s ease forwards 1.8s;
}

#logoS path:nth-child(8) {
  stroke-dasharray: 337;
  stroke-dashoffset: 337;
  animation: line-anim 2s ease forwards 2.1s;
}

#logoS path:nth-child(9) {
  stroke-dasharray: 549;
  stroke-dashoffset: 549;
  animation: line-anim 2s ease forwards 2.4s;
}

#logoS path:nth-child(10) {
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 2.7s;
}

#logoS path:nth-child(11) {
  stroke-dasharray: 509;
  stroke-dashoffset: 509;
  animation: line-anim 2s ease forwards 3.0s;
}

#logoS path:nth-child(12) {
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 3.3s;
}

#logoS path:nth-child(13) {
  stroke-dasharray: 337;
  stroke-dashoffset: 337;
  animation: line-anim 2s ease forwards 3.6s;
}

#logoS path:nth-child(14) {
  stroke-dasharray: 464;
  stroke-dashoffset: 464;
  animation: line-anim 2s ease forwards 3.9s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  from {
    fill: transparent;
  }

  to {
    fill: #009de4;
  }
}

/* -----RESPONSIVE PAGE SPLASH --------------*/
@media screen and (max-width: 767px) {
  #logoS {
    width: 75%;
    height: 75%;
  }
}

@media screen and (max-width: 1024px) {
  #logoS {
    width: 75%;
    height: 75%;
  }
}

@media screen and (min-width: 1024px) {
  #logoS {
    width: 90%;
    height: 90%;
  }
}
/* ----- END RESPONSIVE PAGE SPLASH --------------*/
.containerSplash {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 0 150px 0;
  flex-wrap: wrap;
  gap: 120px;
}

.btnSplash {
  position: relative;
  padding: 16px 30px;
  font-size: 1.5rem;
  color: var(--color);
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  text-shadow: 0 0 15px var(--color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: 0.3s;
  z-index: 1;
}

.btnSplash:hover {
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 0px var(--color);
}

.btnSplash::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  z-index: -1;
  transform: scale(0);
  transition: 0.3s;
}

.btnSplash:hover::before {
  transform: scale(1);
  transition-delay: 0.3s;
  box-shadow: 0 0 10px var(--color),
    0 0 30px var(--color),
    0 0 60px var(--color);
}

.btnSplash span {
  position: absolute;
  background: var(--color);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color),
    0 0 20px var(--color),
    0 0 30px var(--color),
    0 0 50px var(--color),
    0 0 100px var(--color);
  transition: 0.5s ease-in-out;
  transition-delay: 0.25s;
}

.btnSplash:hover span {
  opacity: 0;
  transition-delay: 0s;
}

.btnSplash span:nth-child(1),
.btnSplash span:nth-child(3) {
  width: 40px;
  height: 4px;
}

.btnSplash:hover span:nth-child(1),
.btnSplash:hover span:nth-child(3) {
  transform: translateX(0);
}

.btnSplash span:nth-child(2),
.btnSplash span:nth-child(4) {
  width: 4px;
  height: 40px;
}

.btnSplash:hover span:nth-child(1),
.btnSplash:hover span:nth-child(3) {
  transform: translateY(0);
}

.btnSplash span:nth-child(1) {
  top: calc(50% - 2px);
  left: -50px;
  transform-origin: left;
}

.btnSplash:hover span:nth-child(1) {
  left: 50%;
}

.btnSplash span:nth-child(3) {
  top: calc(50% - 2px);
  right: -50px;
  transform-origin: right;
}

.btnSplash:hover span:nth-child(3) {
  right: 50%;
}

.btnSplash span:nth-child(2) {
  left: calc(50% - 2px);
  top: -50px;
  transform-origin: top;
}

.btnSplash:hover span:nth-child(2) {
  top: 50%;
}

.btnSplash span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -50px;
  transform-origin: bottom;
}

.btnSplash:hover span:nth-child(4) {
  bottom: 50%;
}

/* ------
------------END Mise en Forme PAGE SPLASH -------------
---------*/


/* ------
------------START Mise en Forme COOKIES -------------
---------*/

.wrapper {
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #e94d1a;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
}

.wrapper.show{
  right: 20px;
}

.wrapper header{
  display: flex;
  align-items: center;
  column-gap: 15px;
}

header i{
  color: #96c11c;
  font-size: 32px;
}

header h4{
  color: #96c11c;
  font-weight: 500;
}

.wrapper .dataC{
 margin-top: 16px;
}

.wrapper .dataC p{
  color: #1f1f1f;
  font-size: 16px;
}

.dataC p a{
  color: #96c11c;
  text-decoration: none;
}

.dataC p a:hover{
  text-decoration: underline;
}

.wrapper .buttonsC {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content:space-between;
}

.buttonsC .buttonCa{
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #009de4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}

.buttonsC .buttonCa:hover{
  background-color: #96c11c;
}

/* ------
------------END Mise en Forme COOKIES -------------
---------*/

/* ------
------------START Mise en Forme LOGO -------------
---------*/

.logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* pointer-events: none; */
}

svg {
  width: 20vmin;
  height: 20vmin;
  overflow: visible;

}

svg .shadow {
  filter: url(#blur);
  fill: #2a3e4d;
  opacity: 0.4;
}

svg text {
  font-family: cursive;
  font-size: 18px;
  fill: black;
  /* pointer-events: none; */
}

svg .ring1 ellipse {
  stroke: #009de4;
  stroke-width: 2px;
  fill: none;
  transform-origin: center;
  stroke-dasharray: 109 6;
  stroke-dashoffset: 26;
}

svg .ring1 ellipse:nth-child(1) {
  filter: url(#blur);
  opacity: 0.5;
}

svg .ring1 ellipse:nth-child(3) {
  stroke-dasharray: 0 230;
  animation-name: orbit;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  stroke-width: 7px;
  stroke-linecap: round;
}

svg .ring1:nth-child(2) ellipse {
  animation-duration: 6s;
  animation-direction: reverse;
}

svg .ring1:nth-child(3) ellipse:nth-child(3) {
  animation-delay: -1s;
}

svg .ring2 ellipse {
  stroke: #e94d1a;
  stroke-width: 2px;
  fill: none;
  transform-origin: center;
  stroke-dasharray: 109 6;
  stroke-dashoffset: 26;
}

svg .ring2 ellipse:nth-child(1) {
  filter: url(#blur);
  opacity: 0.5;
}

svg .ring2 ellipse:nth-child(3) {
  stroke-dasharray: 0 230;
  animation-name: orbit;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  stroke-width: 7px;
  stroke-linecap: round;
}

svg .ring2:nth-child(2) ellipse {
  animation-duration: 6s;
  animation-direction: reverse;
}

svg .ring2:nth-child(3) ellipse:nth-child(3) {
  animation-delay: -1s;
}

svg .ring3 ellipse {
  stroke: #96c11c;
  stroke-width: 2px;
  fill: none;
  transform-origin: center;
  stroke-dasharray: 109 6;
  stroke-dashoffset: 26;
}

svg .ring3 ellipse:nth-child(1) {
  filter: url(#blur);
  opacity: 0.5;
}

svg .ring3 ellipse:nth-child(3) {
  stroke-dasharray: 0 230;
  animation-name: orbit;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  stroke-width: 7px;
  stroke-linecap: round;
}

svg .ring3:nth-child(2) ellipse {
  animation-duration: 6s;
  animation-direction: reverse;
}

svg .ring3:nth-child(3) ellipse:nth-child(3) {
  animation-delay: -1s;
}

@keyframes orbit {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-width: 4px;
  }

  100% {
    stroke-dashoffset: 230;
  }
}

/* ------------- Mise en place du lien Logo SVG / Page accueil ---------*/

@namespace svg url(http://www.w3.org/2000/svg);

svg|a {
  cursor: pointer;
}

svg|a text {
  fill: blue;
  text-decoration: underline;
}

svg|a:hover,
svg|a:active {
  outline: dotted 1px blue;
}

/* ------
------------END Mise en Forme LOGO -------------
---------*/

/*-------------------------------------------------------------------------*/

/* ------
------------START Mise en Forme BUTTONS NAV-------------
---------*/

.containerButtons {
  margin: 0;
  padding: 0;
  display: flex;
  text-align: center;
  align-items: center;
  min-height: 15vh;
  justify-content: space-around;
}

.button {
  position: relative;
  padding: 16px 30px;
  font-size: 1.2rem;
  text-shadow: 0 0 15px var(--color);
  text-decoration: none;
  transition: 0.5s;
  z-index: 1;
}

/*-- bouton 1 - PAGE DEPANNAGES --*/
.btn1 {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #009de4;
  letter-spacing: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s;
}

.btn1:hover {
  color: #255784;
  background: #009de4;
  box-shadow: 0 0 10px #009de4, 0 0 40px #009de4, 0 0 80px #009de4;
  transition-delay: 1s;
}

.btn1 span {
  position: absolute;
  display: block;
}

.btn1 span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #009de4);
}

.btn1:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}

.btn1 span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #009de4);
}

.btn1:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}

.btn1 span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #009de4);
}

.btn1:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}

.btn1 span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #009de4);
}

.btn1:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}

/*-- bouton 2 - PAGE INSTALLATION RENOVATION--*/
.btn2 {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #e94d1a;
  letter-spacing: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s;
}

.btn2:hover {
  color: orange;
  background: #e94d1a;
  box-shadow: 0 0 10px #e94d1a, 0 0 40px #e94d1a, 0 0 80px #e94d1a;
  transition-delay: 1s;
}

.btn2 span {
  position: absolute;
  display: block;
}

.btn2 span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e94d1a);
}

.btn2:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}

.btn2 span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #e94d1a);
}

.btn2:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}

.btn2 span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #e94d1a);
}

.btn2:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}

.btn2 span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #e94d1a);
}

.btn2:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}


/*-- bouton 3 - PAGE CONTACT --*/
.btn3 {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #96c11c;
  letter-spacing: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s;
}

.btn3:hover {
  color: green;
  background: #96c11c;
  box-shadow: 0 0 10px #96c11c, 0 0 40px #96c11c, 0 0 80px #96c11c;
  transition-delay: 1s;
}

.btn3 span {
  position: absolute;
  display: block;
}

.btn3 span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #96c11c);
}

.btn3:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}

.btn3 span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #96c11c);
}

.btn3:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}

.btn3 span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #96c11c);
}

.btn3:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}

.btn3 span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #96c11c);
}

.btn3:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}

/* ---------bouton MENU BURGER --------*/
#CmdMenu { 
  position :fixed; 
  top :4px; 
  right :4px; 
  z-index :50;
  padding:5px 8px; 
  color:#fff;
  background: #009de4;
  border-radius:5px;
  cursor:pointer;
}
#CmdMenu:hover {	
  background:#96c11c; 
  color: #e94d1a;	
  border: solid 1px #e94d1a;
}

/* MOBILE FIRST */
#LeMenu {
  flex-direction:column;
}
#CmdMenu { 
  display:block;
}
/* TABLET - DESKTOP */
@media (min-width: 769px) {
  #LeMenu {
    flex-direction:row;
    /*flex-wrap:wrap;*/
  }
  #LeMenu > a {
    display:flex;
    align-items:center;
    /*flex-wrap:wrap;*/
  }
  #CmdMenu { 
    display:none;
  }
}
/* TABLET */
@media (min-width: 769px) and (max-width: 1200px) {
  #LeMenu > a { 
    padding:5px 10px; 
    margin:0 2px;
  }
}
/* DESKTOP */
@media (min-width:1201px) {
  #LeMenu > a { 
    margin:0 5px;
  }
}

/* ------
------------END Mise en Forme BUTTONS NAV-------------
---------*/

/* ------
------------START Mise en Forme BUTTON CTA CONTACT ------------
---------*/

.btn-Contact {
  background-image: linear-gradient(to right, #e94d1a 0%, #e94d1a 50%);
  border-radius: 50px;
  box-sizing: border-box;
  color: #e94d1a;
  display: block;
  height: 50px;
  font-size: 22px;
  padding: 4px;
  display: block;
  margin: auto;
  text-decoration: none;
  width: 200px;
  height: 50px;
  z-index: 2;
}

.btn-Contact:hover {
  color: #fff;
}

.btn-Contact .btn-Contact-span {
  align-items: center;
  background: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: background 0.5s ease;
  width: 100%;
}

.btn-Contact:hover .btn-Contact-span {
  background: transparent;
}

/* ------
------------END Mise en Forme BUTTON CTA CONTACT  ------------
---------*/


/* ------
------------START Mise en Forme TITRES -------------
---------*/

.h1{
  font-size: 30px;
  text-align: center;
}
.h1::after {
  content: '';
  display: block;
  width: 10%;
  height: 4px;
  background: #e94d1a;
  margin: auto;
}

.h2 {
  font-size: 25px;
  text-align: center;
}

.h3 {
  font-size: 23px;
}

/* Page Dépannages */ 

.h1-dep {
  font-size: 30px;
  text-align: center;
}

.h1-dep::after {
  content: '';
  display: block;
  width: 10%;
  height: 4px;
  background: #009de4;
  margin: auto;
}

/* Page Installation */

.h1-instal{
  font-size: 30px;
  text-align: center;
}

.h1-instal::after {
  content: '';
  display: block;
  width: 10%;
  height: 4px;
  background: #e94d1a;
  margin: auto;
}

.h1-instalLeft {
  font-size: 30px;
  text-align: left;
}

.h1-instalLeft::after {
  content: '';
  display: block;
  width: 10%;
  height: 4px;
  background: #e94d1a;
} 

/* Page Contact */
.h1-contact{
  font-size: 30px;
  text-align: center;
}

.h1-contact::after {
  content: '';
  display: block;
  width: 10%;
  height: 4px;
  background: #96c11c;
  margin: auto;
}

.h2-Contact {
  font-size: 25px;
  text-align: left;
  color: #96c11c;
  text-decoration: underline;
}

.h3-Contact {
  font-size: 23px;
  text-align: left;
  color: #96c11c;
  text-decoration: underline;
}

.h5-find {
  text-decoration: underline;
}

/* ------
------------END Mise en Forme TITRES-------------
---------*/

/* ------
------------START Mise en Forme BANNIERE / Page ACCUEIL-------------
---------*/

.banniere {
  height: 380Px;
  background: no-repeat center center / cover url("../assets/images/img/anthony-indraus-Bb9jWuTMPUk-unsplash.jpg");
}

span.nameJbe {
  color: #e94d1a;
  font-weight: bold;
}

.bg-other {
  background-color: #96c11c;
}

/* ------
------------END Mise en Forme BANNIERE / Page ACCUEIL -------------
---------*/

/* ------
------------START Mise en Forme bloc PARTENAIRES / Page ACCUEIL-------------
---------*/

.conteneurPartenaires {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 0 20px 0;
}

.boxPartenaires{
  width: 180px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .conteneurPartenaires{
    flex-direction: column;
    justify-content: space-between;
    margin: 20px;
  }
}

/* ------
------------END Mise en Forme bloc PARTENAIRES / Page ACCUEIL -------------
---------*/
/* ------
------------START Mise en Forme PAGE DEPANNAGE / SERVICES ------------
---------*/
.nota {
  text-align: center;
  border: 1px solid #009de4;
  border-radius: 20px;
  background-color: #009de4;
  color: #fff;
  font-size: 22px;
}

.request_message {
  width: 400px;
  text-transform: capitalize;
  background-color: #fff;
  text-align: center;
  color: green;
  font-size: 13px;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #009de4;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  margin-left: auto;
  margin-right: auto;
  animation: anime 0.5s ease-out;
}

/*animation*/
@keyframes anime {
  from {
    transform: translateY(-70px);
  }
}
/*----------*/

.mefDepContact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.containerDepContact {
  width: 80%;
  padding: 20px;
}

.containerDepContact .row100 {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}

.containerDepContact .row100 .col {
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin: 30px 0 10px;
  transition: 0.5s;
  color: #009de4;
}

.containerDepContact .row100 .inputBox {
  position: relative;
  width: 100%;
  height: 40px;
  color: #009de4;
}

.containerDepContact .row100 .choice {
  position: relative;
  width: 100%;
  /* height: 40px; */
  color: #009de4;
}

.containerDepContact .row100 .checkbox {
  position: relative;
  width: 100%;
  height: 40px; 
  color: #009de4;;
}

.containerDepContact .row100 .saisie {
  position: relative;
  width: 100%;
  height: 40px; 
  color: #009de4;
  font-style: italic;
}

.containerDepContact .row100 .case {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.containerDepContact .row100 .inputBox input,
.containerDepContact .row100 .inputBox.textarea textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 0 10px;
  z-index: 1;
  color: #fff;
}

.containerDepContact .row100 .inputBox .text {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  font-size: 22px;
  padding: 0 10px;
  display: block;
  transition: 0.5s;
  /* pointer-events: none; */
}

.containerDepContact .row100 .inputBox input:focus+.text,
.containerDepContact .row100 .inputBox input:valid+.text {
  top: -35px;
  left: -10px;
}

.containerDepContact .row100 .inputBox .line {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #009de4;
  transition: 0.5s;
  border-radius: 2px;
  /* pointer-events: none; */
}

.containerDepContact .row100 .inputBox input:focus~.line,
.containerDepContact .row100 .inputBox input:valid~.line {
  height: 100%;
}

.containerDepContact .row100 .inputBox.textarea {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 10px 0;
}

.containerDepContact .row100 .inputBox.textarea textarea {
  height: auto;
  resize: none;
  overflow: auto;
}

.containerDepContact .row100 .inputBox textarea:focus+.text,
.containerDepContact .row100 .inputBox textarea:valid+.text {
  top: -35px;
  left: -10px;
}

.containerDepContact .row100 .inputBox textarea:focus~.line,
.containerDepContact .row100 .inputBox textarea:valid~.line {
  height: 100%;
}

#DepSubmit {
  border: none;
  padding: 7px 35px;
  cursor: pointer;
  outline: none;
  background: #009de4;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

select{
  border: 1px solid #009de4;
  border-radius: 10px;
}

#statusMessage{
  background-color: #009de4;
  border: #2b5a2d 1px solid;
  padding: 5px 9px;
  color: #262b26;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
}
.errorMessage{
  background-color: #e64141;
  border: #da1414 1px solid;
  padding: 5px 10px;
  color: #fdf7f7;
  border-radius: 4px;
}
.info{
  font-size: 0.9em;
  color: #d67262;
  letter-spacing: 2px;
  padding-left: 5px;
}

/* -----------Message d'erreurs formulaires dépannages----- */
.error{
  color: #D8000C;
  background-color: #FFBABA;
}

/* ------
------------END Mise en Forme PAGE DEPANNAGE / SERVICES ------------
---------*/
/* ------
------------START Mise en Forme Page INSTALLATION RENOVATION / CAROUSEL CLIENTS /-------------
---------*/

.pic-ctn {
  width: 100vw;
  height: 200px;
}

@keyframes display {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }

  10% {
    transform: translateX(0);
    opacity: 1;
  }

  20% {
    transform: translateX(0);
    opacity: 1;
  }

  30% {
    transform: translateX(-500px);
    opacity: 0;
  }

  100% {
    transform: translateX(-500px);
    opacity: 0;
  }
}

.pic-ctn {
  position: relative;
  width: 100vw;
  height: 300px;
  margin-top: 10vh;
}

.pic-ctn>img {
  position: absolute;
  top: 0;
  left: calc(45% - 100px);
  opacity: 0;
  animation: display 33s infinite;

  border-radius: 50%;
}

img:nth-child(2) {
  animation-delay: 3s;
}

img:nth-child(3) {
  animation-delay: 6s;
}

img:nth-child(4) {
  animation-delay: 9s;
}

img:nth-child(5) {
  animation-delay: 12s;
}

img:nth-child(6) {
  animation-delay: 15s;
}

img:nth-child(7) {
  animation-delay: 18s;
}

img:nth-child(8) {
  animation-delay: 21s;
}

img:nth-child(9) {
  animation-delay: 24s;
}

img:nth-child(10) {
  animation-delay: 27s;
}

img:nth-child(11) {
  animation-delay: 30s;
}

/* ------
------------END Mise en Forme CAROUSEL CLIENTS / Page INSTALLATION RENOVATION-------------
---------*/

/* ------
------------START Mise en Forme FORMULAIRE PAGE CONTACT ------------
---------*/

.TextContact {
  text-align: right;
}

.FormMef {
  border: 1px solid #96c11c;
  border-radius: 10px;
  width: 735px;
  height: 40px;
}

/* ------
------------START Mise en Forme FORMULAIRE PAGE CONTACT ------------
------------Version YouTube https://www.youtube.com/watch?v=wgyvLfXBGdQ ----------------
---------*/
.mefContact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.containerContact {
  width: 80%;
  padding: 20px;
}

.containerContact .row100 {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}

.containerContact .row100 .col {
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin: 30px 0 10px;
  transition: 0.5s;
}

.containerContact .row100 .inputBox {
  position: relative;
  width: 100%;
  height: 40px;
  color: #96c11c;
}

.containerContact .row100 .checkbox {
  position: relative;
  width: 100%;
  height: 40px;
  color: #96c11c;
}

.containerContact .row100 .inputBox input,
.containerContact .row100 .inputBox.textarea textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 0 10px;
  z-index: 1;
  color: #fff;
}

.containerContact .row100 .inputBox .text {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  font-size: 18px;
  padding: 0 10px;
  display: block;
  transition: 0.5s;
  /* pointer-events: none; */
}

.containerContact .row100 .inputBox input:focus+.text,
.containerContact .row100 .inputBox input:valid+.text {
  top: -35px;
  left: -10px;
}

.containerContact .row100 .inputBox .line {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #96c11c;
  transition: 0.5s;
  border-radius: 2px;
  /* pointer-events: none; */
}

.containerContact .row100 .inputBox input:focus~.line,
.containerContact .row100 .inputBox input:valid~.line {
  height: 100%;
}

.containerContact .row100 .inputBox.textarea {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 10px 0;
}

.containerContact .row100 .inputBox.textarea textarea {
  height: auto;
  resize: none;
  overflow: auto;
}

.containerContact .row100 .inputBox textarea:focus+.text,
.containerContact .row100 .inputBox textarea:valid+.text {
  top: -35px;
  left: -10px;
}

.containerContact .row100 .inputBox textarea:focus~.line,
.containerContact .row100 .inputBox textarea:valid~.line {
  height: 100%;
}

#ContSubmit {
  border: none;
  padding: 7px 35px;
  cursor: pointer;
  outline: none;
  background:#96c11c;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#statusMessageC{
  background-color: #96c11c;
  border: #2b5a2d 1px solid;
  padding: 5px 9px;
  color: #262b26;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
}
.errorMessage{
  background-color: #e64141;
  border: #da1414 1px solid;
  padding: 5px 10px;
  color: #fdf7f7;
  border-radius: 4px;
}
.info{
  font-size: 0.9em;
  color: #d67262;
  letter-spacing: 2px;
  padding-left: 5px;
}

/* ------
------------END Mise en Forme FORMULAIRE PAGE CONTACT ------------
---------*/

/* ------
------------START Mise en Forme NOUS TROUVER - PAGE CONTACT ------------
---------*/

.mapJbe {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 695px;
  height: 450px;
}

.find {
  text-align: center;
}

/* ------
------------END Mise en Forme NOUS TROUVER - PAGE CONTACT ------------
---------*/