@charset "utf-8";
/* CSS Document */
/*@font-face {
  font-family: "Gabarito";
  src: url("font/TorusBold.woff2") format("woff2"); 
}*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Varela+Round&display=swap');


/*@import url('//db.onlinewebfonts.com/c/81156f9c69f5673ba7e2e8bc24498fa9?family=Torus+Bold');*/

/* @font-face {
  font-family: "Fredoka One";
  font-style: normal;
  font-weight: 400;
  src: url("font/FredokaOne.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
} */

* {
  margin: 0;
  padding: 0;
  list-style: none;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: white;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1 {
  font-family: "Varela Round", sans-serif;
  font-weight:500;

  word-spacing: 180%;
  max-width: 800px;
  margin: auto;
  color: #ce0100;
  font-size: 3rem;
  text-align: center;

}
h1 > span:nth-child(1) {
  font-size: 4.8rem;
  margin: 0 10px;
  display: block;
  line-height: 150%;
  letter-spacing:-2px;
}
h1 > span:nth-child(2) {
  margin-top:20px;
  display: block;
  line-height: 120%;
  letter-spacing:-1px;
  font-size: 2.5rem;
  word-spacing: 200%;
  
}
h1 > span:nth-child(2) > span {
  word-spacing: normal;
}
@media screen and (max-width: 600px) {
  h1 > span:nth-child(1) {

    font-size: 4rem;
    margin: 0 10px;
    display: block;
    line-height: 90%;
    margin-bottom: 20px;
  }
  h1 > span:nth-child(2) {
    margin-top:40px;
    font-size: 2rem;
  }
}
h2 {
  font-family: "Varela Round", sans-serif;
  position: relative;
  font-size: 2.4em;
  color: #ce0100;
  text-align: center;
  padding: 0.5em;
  line-height: 95%;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 2em;
  }
}
/*
h2::after {
    left: 0;
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	position: absolute;
	bottom: -1px;
	background-color: #ce0100;
	line-height: 34px;
} */

h3 {
  font-family: "Varela Round", sans-serif;
  position: relative;
  font-size: 1.8em;
  color: #ce0100;
  text-align: center;
  padding: 0.2em;
  line-height: 95%;
}

p {
  max-width: 800px;
  margin: 12px auto;
  font-size: 1.5rem;
}
li {
  font-size: 1.5rem;
}
img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 500px) {
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}
/******************************/
header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0 0;
}

header > div {
  margin: 10px;
}
header > div p {
  display: inline-block;
  margin: 4px auto;
}
header > div:nth-child(2) {
  color: #000088;
  text-align: center;
  font-size: 2.4em;
  font-weight: bold;
}
header > div:nth-child(2) span {
  color: #ff0000;
}

@media screen and (max-width: 800px) {
  header {
    flex-direction: column;
  }
  header > div {
    max-width: 100%;
  }
  header > div:nth-child(3) {
    line-height: 50px;
  }
}

/******************************/
.boutons {
  display: flex;
  justify-content: center;
  align-items: center;

  position: sticky;
  top: 5px;
  z-index: 10;
  transition: 0.8s ease-in-out;
  gap: 10px;
  margin-inline: 10px;
}
.glisser > div {
  width: 50%;
}
.boutons button {
  position: relative;
  height: 70px;
  width: 280px;
  border-radius: 50px;
  border: 0px solid #ce0100;
  background-color: #ce0100;
  font-size: 1.8em;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
}

.boutons.glisser button {
  height: 50px;
  width: 250px;
  font-size: 1.5em;
}

.boutons.glisser .bouton-tel i {
  margin-right: 20px;
}
.boutons button::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 70px;
  width: 280px;
  border-radius: 50px;
  border: 0px solid #ce0100;
  background-color: #000088;
  transform: translate(-234px);
  z-index: -1;
  transition: 0.3s;
}

.boutons.glisser button::before {
  height: 50px;
  width: 250px;
  transform: translate(-205px);
}
.boutons button:hover {
  color: #fff;
  cursor: pointer;
}
.bouton-tel {
  text-align: right;
}

.bouton-tel button:hover::before {
  transform: translate(0%);
}
.bouton-tel button:hover {
  color: #fff;
  cursor: pointer;
}
.bouton-tel i {
  margin-right: 12px;
  transform: translate(-12px, 0);
}
.bouton-tel::after {
  content: "";
  border: solid 1px blue;
  position: absolute;
  top: 50px;
  left: 0;
}
.bouton-contact button:hover::before {
  transform: translate(0%);
}
/******************************/

.bouton-contact {
  width: 280px;
  transition: 0.8s ease-in-out;
  text-align: left;
  display: inline-block;
}
.bouton-contact button {
}
.bouton-contact button:hover {
}

.bouton-contact button:hover {
  color: #fff;
  cursor: pointer;
}
.bouton-contact i {
  float: left;
  margin-left: 8px;
}
.bouton-contact button::before {
}

.bouton-contact button:hover::before {
  transform: translate(0%);
}

@media screen and (max-width: 800px) {
  .boutons button, .boutons.glisser button {
    width: 180px;
    height: 45px;
    font-size: 1.1em;
  }
  .boutons i {
    font-size: 1.5rem;
  }
  .bouton-tel i {
    margin-right: 0px;
  }
  .boutons.glisser .bouton-tel i {
    margin-right: 0px;
  }
  .boutons button::before {
    display: none;
  }
  .boutons button:hover {
    background-color: #000088;
  }
  .bouton-contact i {
    margin-left: 12px;
  }
  /* .bouton-tel,
  .bouton-contact {
    width: 180px;
    margin: auto 4px;
  }
  .bouton-tel button:hover,
  .bouton-contact button:hover {
    width: 180px;
  }
  .bouton-tel button,
  .bouton-contact button {
    height: 45px;
    width: 180px;
    font-size: 1.3em;
  }
  .bouton-tel button:hover,
  .bouton-contact button:hover {
    background-color: #000088;
    cursor: pointer;
  }
  .bouton-contact {
    float: left;
  }
  .bouton-tel {
    float: right;
  }
  .bouton-tel i {
    display: none;
  }
  .glisser {
    width: 200px;
  }
  */
}
/******************************/

div#accueil_1 {
  z-index: -1;
  height: 450px;
  overflow: hidden;
  margin-top: 0px;
  clear: both;
}
div#accueil_1 img {
  width: 100%;
  height: auto;
  z-index: -1;
  vertical-align: middle;
  z-index: -2;
  margin-top: 0;
}

@media screen and (max-width: 800px) {
  div#accueil_1 {
    height: auto;
    margin-top: 20px;
  }
  div#accueil_1 img {
    margin-top: 0;
  }
}

/******************************/

div#accueil_2 {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}
div#accueil_2 div {
  max-width: 20%;
  text-align: center;
  font-size: 14px;
}
div#accueil_2 div img {
  display: block;
}

@media screen and (max-width: 800px) {
  div#accueil_2 {
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  div#accueil_2 div {
    max-width: none;
  }
}

/******************************/

div#accueil_3 {
  padding:40px 0;
}


/******************************/

div#devis {
  position: relative;
  margin: auto;
  text-align: center;
  padding: 20px 0;
  display: block;
  width: auto;
  padding: 20px;
  background-color: #ddd;
  padding-bottom: 50px;
}

div#devis {
  display: block;
  width: auto;
  padding: 20px;
  background-color: #ddd;
  padding-bottom: 50px;
}
div#devis p {
  text-align: center;
}
div#devis a {
  font-weight: 700;
}
div#devis > div#depannages {
  display: inline-block;
  border: solid 0px;
  vertical-align: top;
  padding: 20px 0;
}
div#devis > div#depannages ul {
  display: flex;
  justify-content: center;
  padding: 20px 0 0;
  flex-wrap: wrap;
  max-width: 900px;
}
div#devis > div#depannages li {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.5em;
}
@media screen and (max-width: 800px) {
  div#devis > div#depannages li {
    display: inline-block;
    font-size: 1.4em;
    margin: 0.5em;
  }
}

div#devis > div#depannages li a {
  color: #fff;
  background-color: #000088;
  border-radius: 30px;
  padding: 0.3em 0.6em;
  text-decoration: none;
  transition: 0.3s;
  min-width: 200px;
  display: inline-block;
}
div#devis > div#depannages li a:hover {
  background-color: #ce0100;
}

/******************************/

div#etudiants {
  max-width: 600px;
  background-color: #ce0100;
  color: white;
  text-align: center;
  margin: 40px auto;
  border-radius: 10px;
}
div#etudiants div {
  max-width: 500px;
  display: inline-block;

  vertical-align: top;
}

div#etudiants div div {
  background-color: white;
  margin: 0 auto;
  color: #2c2c2c;
  font-size: 1.2rem;
  width: 100%;
  border-radius: 10px;
}
div#etudiants div img {
  max-height: 180px;
  wodth: auto;
  margin: auto;
}
div#etudiants div a {
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  div#etudiants div {
    max-width: 400px;
    display: inline-block;
    padding: 0px;
    vertical-align: top;
  }
  div#etudiants div img {
    max-width: 400px;
  }
}
/**********************************/
div.savoir-faire {
  padding: 2em 1em;
  max-width: 1200px;
  margin: auto;
}
div.savoir-faire p {
  max-width: none !important;
  margin: 12px;
}
div.savoir-faire p strong {
  color: #ce0100;
}
div.savoir-faire img {
  max-width: 500px;
  height: auto;
}
div#plomberie,
div#vitrerie,
div#electricite {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
div.flex {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  div.flex {
    flex-direction: column;
  }
}
div.flex div {
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

div.flex div ul {
  padding-left: 4em;
  margin: auto;
  display: block;
}

div.flex div li {
  font-size: 1.4rem;
}
div.flex div li {
  list-style-type: disc;
  text-align: left;
}
ul.check li {
  list-style-type: none !important;
}
ul.check li:before {
  content: "✓";
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 6px;
}

/*********************************/

div#accueil_6 {
  position: relative;
  margin: auto;
  text-align: center;
  margin-top: 40px;
}

div#accueil_6 div {
  width: 500px;
  display: inline-block;
  vertical-align: middle;
  border: solid 0px;
  text-align: left;
}
div#accueil_6 div p {
  text-align: left;
  margin-left: 12px;
}
div#accueil_6 div:nth-child(2) {
  text-align: center !important;
}
div#accueil_6 div a.telephone {
  color: red;
}
div#accueil_6 div img {
  max-width: 96%;
  height: auto;
}
@media screen and (max-width: 800px) {
  div#accueil_6 div {
    width: auto;
  }
}

/**********************************/

div#carte {
  position: relative;
  margin: auto;
  text-align: center;
  margin-top: 40px;
}
div#carte iframe {
  width: 100%;
  height: 400px;
}
div#carte h2 {
  color: #ce0100;
  text-align: center;
  border: 0;
  text-transform: uppercase;
}
div#carte h2::after {
  display: none;
}

/******************************/

/******************************/

menu#menu2 > ul {
  display: flex;
  justify-content: center;
  padding: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  list-style: none;
  margin: 10px auto;
  border-collapse: collapse;
}
menu#menu2 > ul > li {
  text-align: center;
  display: block;
  flex-grow: 1;
}
menu#menu2 > ul > li > a {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: gray;
  border-right: 1px solid gray;
  width: 100%;
  min-height: 20px;
  border-top: 2px solid transparent;
  text-decoration: none;
  padding-top: 8px;
  padding-bottom: 8px;
}
menu#menu2 > ul > li:last-child > a {
  border-right: 0px solid gray;
}
menu#menu2 > ul > li > a.active {
  border-top: 3px solid #ce0100;
  color: black;
}
menu#menu2 > ul > li > a:hover {
  border-top: 3px solid #ce0100;
  color: black;
}

/*** Formulaire ***/
/* champ antispam */
input#remarque {
  margin: 0;
  padding: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 0;
  border: 0;
}
input#remarque {
  display: none;
}

div#formulaire {
  min-width: 360px;
  max-width: 460px;
  padding: 20px;
  background-color: #ddd;
  margin: 40px auto;
  border-radius: 10px;
}

div#formulaire label {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
div#formulaire input {
  width: 100%;
  border: 1px solid #bfbfbf;
  box-shadow: none;
  padding: 5px 10px;
  height: 35px;
  border-radius: 4px;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  margin-bottom: 10px;
  box-sizing: border-box;
}
div#formulaire textarea {
  width: 100%;
  border: 1px solid #bfbfbf;
  box-shadow: none;
  padding: 5px 10px;
  height: 35px;
  border-radius: 4px;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  margin-bottom: 10px;
  box-sizing: border-box;
  min-height: 100px;
}
div#formulaire button {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16.8px;
  padding: 15px;
  transition: all 0.3s;
  background-color: #ce0100;
  color: #fff;
  margin-top: 12px;
  border-radius: 6px;
}
div#formulaire button:hover {
  background-color: #9c0000;
}
div#formulaire form p {
  font-size: 0.9rem;
}

/**********************************/

footer {
  display: flex;
  justify-content: space-evenly;
  background-color: #2c2c2c;
  color: white;
  align-items: center;
  padding: 16px 0;
  width: 100%;
  margin: auto 0;
  margin-top: 40px;
}
footer > div {
  max-width: 30%;
  text-align: center;
}
footer > div:nth-child(2) {
  color: #fff;
}
footer > div:nth-child(3) {
  font-weight: bold;
  color: #fff;
}

#contact p a {
  color: #fff;
  text-decoration: none;
  background-color: #ce0100;
  border-radius: 30px;
  padding: 4px 10px;
  min-width: 260px;
  display: inline-block;
}

#contact p a:hover {
  background-color: #000088;
}
@media screen and (max-width: 800px) {
  footer {
    justify-content: center;
    padding: 0;
    margin-top: 20px;
    flex-direction: column;
    padding: 12px 0;
  }
  footer > div {
    max-width: 100%;
  }
}

/******************************/
#basdepage {
  margin-bottom:40px;
  margin-top:20px;
}
#basdepage p {
  text-align: center;
  font-size: 1.2rem;
}