@charset "UTF-8";
.displayContainer, .devis, #presentation, .groupServ {
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  min-width: 0;
  font: inherit;
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

/* Styles pour la barre de défilement dans Chrome et Safari */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(151, 151, 151, 0.5);
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
  text-align: center;
  font-weight: bold;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Min 32px, fluide, max 48px */
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); /* Min 28px, fluide, max 40px */
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem); /* Min 24px, fluide, max 32px */
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); /* Min 20px, fluide, max 28px */
}

p,
a {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-wrap: pretty;
}

p b,
a {
  font-weight: bold;
}

ul {
  margin: 0;
}

/*@use './variables' as *;
*/
#containerForm {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #E8D8C3;
  padding-bottom: 2vh;
}

.container {
  width: 80vw;
  max-width: 100%;
  background: #fff;
  padding: 25px 40px 10px 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.container .text {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #333;
}

.container form {
  padding: 30px 0 0 0;
}

.container form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}

.form-row .input-data {
  flex: 1 1 45%;
  min-width: 200px;
  position: relative;
  height: 40px;
}

.form-row .textarea {
  flex: 1 1 100%;
  height: auto;
}

.input-data input,
.textarea textarea {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  outline: none;
  background: transparent;
}

.input-data input:focus ~ label,
.input-data input:valid ~ label,
.textarea textarea:focus ~ label,
.textarea textarea:valid ~ label {
  transform: translateY(-20px);
  color: #3498db;
}

.textarea textarea {
  resize: none;
  padding-top: 10px;
  height: 120px;
}

.input-data label {
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #777;
}

.textarea label {
  bottom: 110px;
  background: #fff;
}

.input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}

.input-data .underline:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #3498db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before {
  transform: scale(1);
}

/* ✅ Bouton conservé */
.btnSub {
  width: auto;
  padding: 0;
}

@media (max-width: 700px) {
  .container {
    padding: 20px 20px 10px 20px;
  }
  .container form .form-row {
    flex-direction: column;
  }
  .form-row .input-data {
    width: 100%;
    margin-bottom: 25px;
  }
  .textarea label {
    bottom: 125px;
  }
  .submit-btn .input-data {
    width: 100% !important;
  }
}
/* Style de base pour la galerie */
#galerie {
  display: grid;
  position: relative;
}
#galerie ul {
  padding: 0;
}

/* Image de fond dans .act */
.act .img {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.6s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.act .img.visible {
  opacity: 1;
  z-index: 2;
}

/* Conteneur de la liste des images */
.list {
  width: 100%;
  height: auto; /* Hauteur auto pour s'adapter */
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Les autres éléments peuvent rester fixes */
.list li {
  list-style-type: none;
  position: absolute;
  border-radius: 10px;
  transition: transform 1s, opacity 1s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Élément central (actif) */
.list .act {
  width: 80vw;
  cursor: pointer;
  height: auto;
  aspect-ratio: 4/3; /* ou 16/9, adapte selon ton besoin */
  position: relative;
  z-index: 5;
}

/* Styles des éléments "prev" et "next" */
.list .prev,
.list .next {
  width: 75vw; /* un peu plus petit que .act */
  aspect-ratio: 4/3;
  height: auto;
  cursor: pointer;
  opacity: 0.75; /* Opacité réduite pour les éléments "prev" et "next" */
  z-index: 4; /* Place les éléments "prev" et "next" en dessous de l'image active */
}

/* Styles des éléments "new-prev" et "new-next" */
.new-prev,
.new-next {
  width: 70vw; /* un peu plus petit que .act */
  aspect-ratio: 4/3;
  height: auto;
  cursor: pointer;
  opacity: 0.25; /* Opacité encore plus réduite pour les éléments "new-prev" et "new-next" */
  z-index: 2; /* Place les éléments "new-prev" et "new-next" en dessous de "prev" et "next" */
}

.list .prev {
  transform: translateX(-30vw) scale(0.8);
}

.list .next {
  transform: translateX(30vw) scale(0.8);
}

/* Transition pour le changement d'image */
.act {
  transition: background-image 0.5s ease-in-out;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content button {
  height: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#lightbox-image {
  width: 80vw;
  height: 80vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
}

/* Boutons */
#lightbox-close,
#lightbox-prev,
#lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.3s ease;
}

#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Positionnement */
#lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2.5rem;
  line-height: 1;
}

#lightbox-prev {
  font-size: 3rem;
}

#lightbox-next {
  font-size: 3rem;
}

/* Media queries pour les écrans de différentes tailles */
@media screen and (min-width: 700px) {
  .list .act {
    width: 70vw;
  }
  .list .prev,
  .list .next {
    width: 65vw;
  }
  .new-prev,
  .new-next {
    width: 60vw;
  }
  /* Styles spécifiques aux éléments "prev" et "next" */
  .list .prev {
    transform: translateX(-25vw) scale(0.85);
  }
  .list .next {
    transform: translateX(25vw) scale(0.85);
  }
  .list .new-prev {
    transform: translateX(-50vw) scale(0.7);
  }
  .list .new-next {
    transform: translateX(50vw) scale(0.7);
  }
}
@media screen and (min-width: 1280px) {
  .list .act {
    width: 45vw;
  }
  .list .prev,
  .list .next {
    width: 40vw; /* un peu plus petit que .act */
  }
  .new-prev,
  .new-next {
    width: 35vw;
  }
}
/*@use './variables' as *;*/
.btnCall {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #2E4637;
}
.btnCall :hover {
  transform: scale(1.2);
}

.btnCall.vibrate {
  animation: vibrate 1s ease-in-out;
}

@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  10% {
    transform: translate(-2px, 2px);
  }
  20% {
    transform: translate(2px, -2px);
  }
  30% {
    transform: translate(-2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(-2px, 2px);
  }
  60% {
    transform: translate(2px, -2px);
  }
  70% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(2px, 2px);
  }
  90% {
    transform: translate(-2px, 2px);
  }
  100% {
    transform: translate(0);
  }
}
img.svg-image {
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 700px) {
  .btnCall {
    width: 60px;
    height: 60px;
  }
  img.svg-image {
    width: 35px;
    height: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .btnCall {
    width: 70px;
    height: 70px;
  }
  img.svg-image {
    width: 45px;
    height: 45px;
  }
}
/*@use './variables' as *;*/
header {
  display: flex;
  color: #fff;
}
header .devis {
  margin-bottom: 10vh;
}

.img_header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/header_mobile.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.img_header h1 {
  width: 80vw;
  padding-bottom: 25vh;
  position: fixed;
  transition: opacity 0.5s ease; /* Transition fluide */
  animation: fadeInDown 1s ease-in-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.flex_menu {
  position: fixed; /* Assurez-vous que .flex_menu est en position relative ou fixed */
  width: 100vw;
  height: 12vh;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Ne pas ajouter d'image ici */
}

/* Pseudo-élément qui portera le background */
.flex_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
  background-image: none;
}

.flex_menu.background-active::before {
  background-color: rgba(46, 70, 55, 0.85);
}

.logo {
  z-index: 10;
}

.logo img {
  width: 70px;
  height: 70px;
  margin-left: 20px;
  border-radius: 50%;
  border: 5px solid white;
}

nav a {
  color: white;
  text-align: center;
  text-decoration: none;
  margin: 10px 0 10px 0;
  transition: transform 0.3s ease;
}
nav a:hover {
  transform: scale(1.1);
}

.navbar {
  display: flex;
  position: fixed;
  width: 100vw;
  height: 10vh;
  z-index: 10;
}

.nav-menu {
  width: 70vw;
  display: flex;
  justify-content: flex-end;
}

.burger {
  width: 70%;
}

.nav_label {
  display: flex;
  cursor: pointer;
  z-index: 10;
}

#menu_toggle {
  display: none;
}

.navigation {
  background-image: url("../images/header_mobile.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  padding-top: 50%;
  align-items: center;
  height: 100vh;
  top: 0;
}

.navigation a {
  font-size: 24px;
}

.navigation_none {
  display: none;
  width: 100vw;
  align-items: center;
}

.filter-active {
  filter: blur(5px);
}

.logo-band {
  width: 40px;
  position: relative;
  top: -12px;
}

.band {
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  right: 30px;
  transition: all 0.3s ease;
}

.band:nth-child(1) {
  top: 0;
}

.band:nth-child(2) {
  top: 15px;
}

.band:nth-child(3) {
  top: 30px;
}

.logo-band.cross .band:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.logo-band.cross .band:nth-child(2) {
  display: none;
}

.logo-band.cross .band:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 700px) and (orientation: landscape) {
  .img_header {
    background-image: url("../images/header_desktop.jpg");
    /* background-position: top;*/
  }
  .img_header h1 {
    padding-bottom: 40px;
  }
  .navigation {
    padding-top: 0;
  }
  .flex_menu {
    height: 25vh;
  }
}
/* Pour les écrans en mode portrait : largeur >= 768px et hauteur > largeur */
@media screen and (min-width: 700px) and (orientation: portrait) {
  .img_header {
    background-image: url("../images/header_mobile.jpg"); /* Remplacez par le chemin de votre image portrait */
  }
}
/* Tablettes */
@media screen and (min-width: 768px) {
  .nav-menu {
    flex-wrap: nowrap;
    padding-right: 2%;
    width: 80vw;
  }
  .navbar label {
    display: none;
  }
  .nav_label {
    display: none;
  }
  .nav_label img {
    display: none;
  }
  .navigation_none {
    display: flex;
    flex-direction: row;
    justify-content: end;
  }
  .navigation {
    padding-top: 20%;
  }
  #divNav a {
    padding: 0 0 0 3%;
  }
}
@media screen and (min-width: 900px) {
  .flex_menu {
    height: 15vh;
  }
}
@media screen and (min-width: 1440px) {
  .img_header h1 {
    padding-bottom: 250px;
  }
}
/* Variables et styles de base */
.displayContainer, .groupServ, #presentation, .devis {
  display: flex;
  align-items: center;
  justify-content: center;
}

#témoignages {
  width: 80vw;
  margin: 0 auto;
}

#témoignages h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

/* Container principal des avis - MOBILE (par défaut) */
#reviews-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

#reviews-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding-bottom: 5vh;
}

/* Carte d'avis - MOBILE (par défaut) */
.google {
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.google:last-child {
  margin-bottom: 0;
}

.avis {
  border-radius: 10px;
  padding: 1.5rem;
  text-align: justify;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.info img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.nameGoogle {
  font-weight: bold;
  margin: 0.5rem 0;
  text-align: center;
}

.date {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.limiter-texte {
  overflow: hidden;
  overflow-y: auto;
  padding: 1rem 0;
  flex-grow: 1;
}

.state {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.etoile {
  font-size: 24px;
  margin: 0 2px;
}

.etoile-jaune {
  color: #fbbe01;
}

.etoile-grise {
  color: #B0B0A8;
}

/* Wrapper du carrousel */
.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Boutons de navigation */
.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  color: #444;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

/* Indicateurs de pagination */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #fbbe01;
}

/* Responsive - MOBILE */
@media screen and (max-width: 768px) {
  .info img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
  .avis {
    padding: 1rem;
  }
  .limiter-texte {
    max-height: 12em;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .carousel-btn.gauche {
    left: -20px;
  }
  .carousel-btn.droite {
    right: -20px;
  }
}
/* DESKTOP - Format horizontal avec 3 cartes côte à côte */
@media screen and (min-width: 769px) {
  /* Container principal des avis - DESKTOP */
  #reviews-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  #reviews-container.centrer-avis {
    justify-content: center;
  }
  #témoignages {
    width: 90vw;
  }
  /* Carte d'avis - DESKTOP (3 cartes par vue) */
  .google {
    flex-shrink: 0;
    width: calc(33.333% - 1rem);
    margin-right: 1rem;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .google:last-child {
    margin-right: 0;
  }
  .info img {
    width: 70px;
    min-width: 70px;
    height: 70px;
    min-height: 70px;
  }
  .limiter-texte {
    max-height: 15em;
  }
  .carousel-wrapper {
    height: 400px;
  }
}
main,
#presentation,
#témoignages,
#galerie,
#containerForm,
#services,
footer {
  overflow-x: hidden;
}

#témoignages {
  overflow-y: hidden;
  padding-bottom: 2vh;
}

#imageContainer {
  display: none;
  position: absolute;
  top: 10vh;
  width: 10vw;
  right: 0;
}

#monFormulaire {
  max-width: 400px; /* Ajustez la largeur selon vos besoins */
  margin: 20px auto;
  font-size: 16px;
}

#services {
  text-align: center;
}
#services h1,
#services h2 {
  display: inline-block;
  width: 80%;
}

#presentation h2 {
  width: 80vw;
}

.zone_p {
  width: 80vw;
}

.region-container {
  margin-bottom: 30px;
  width: 80%;
}

summary {
  background-color: #E8D8C3;
  color: black;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 5px;
}

.ville-liste {
  padding: 10px;
  background-color: #E8D8C3;
  border-radius: 10px;
  color: black;
}

.ville-item {
  margin-bottom: 5px;
  padding: 3px 0;
}

.intro {
  text-align: center;
  margin-bottom: 20px;
}

.devis {
  height: 15vh;
  overflow-x: hidden;
}
.devis button {
  width: 50vw;
  overflow-x: hidden;
  border-radius: 10px;
  color: #2E4637;
}
.devis a {
  padding: 0;
}

button {
  background: #D8A85B;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  height: 10vh;
}
button a {
  text-decoration: none;
  color: #2E4637;
}
button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}
button:active {
  box-shadow: none;
  transform: translateY(0);
}

.image-flex img {
  border-radius: 10px;
}

#presentation {
  background-color: #2E4637;
  padding-bottom: 2vh;
  flex-direction: column;
  color: #FAF7F0;
}
#presentation p {
  overflow-x: hidden;
}

.presentation-flex {
  width: 80vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.groupServ {
  flex-direction: column;
}
.groupServ img {
  width: 40%;
}

footer {
  background-color: #2E4637;
  color: #FAF7F0;
  text-align: center;
  padding-top: 2%;
}
footer p {
  margin: 0;
}
footer .dev {
  margin: 0 auto;
  padding-top: 2%;
  text-align: center;
  font-size: 0.95rem;
  color: #FAF7F0;
  letter-spacing: 0.5px;
}
footer .dev-link {
  color: #FAF7F0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
footer .dev-link:hover {
  color: #F7F3EB;
  color: #2E4637;
  text-shadow: 0 0 6px rgba(100, 181, 246, 0.8);
}
footer iframe {
  border: 0;
  max-width: 100%;
  width: 100%;
  height: 450px;
}
footer .footerLink {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer .footerLink a {
  color: #F7F3EB;
  padding: 1%;
  text-align: center;
  text-decoration: none;
}

.servCss {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  width: 80vw;
  margin: 0 auto;
  flex-wrap: wrap;
}

#messageContainer {
  display: none;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: auto;
  z-index: 15;
  width: 70%;
  height: 50%;
  position: fixed;
  color: #FAF7F0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2E4637;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 32px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#messageContainer.visible {
  opacity: 1;
}

.media {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
.media a {
  outline: none;
}
.media img {
  width: 50px;
}
.media img:hover {
  transform: translateY(-2px);
}
.media img:active {
  filter: drop-shadow(none);
  transform: translateY(0);
}

.group1, .group2, .group3 {
  padding-bottom: 2vh;
}

@media screen and (min-width: 700px) {
  .padding {
    padding-top: 10vh;
  }
  .head {
    background-image: url(../images/arbo-ju-desktop.png);
    height: 25vh;
  }
  .servCss {
    flex-direction: row;
    justify-content: space-between;
  }
  .groupServ {
    width: 45%;
    overflow-x: hidden;
  }
  .groupServ img {
    width: 25%;
  }
  .devis button {
    width: 30vw;
  }
  footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  footer iframe {
    height: 350px;
  }
  footer .footerLink a {
    padding: 3%;
  }
  .group1,
  .group2 {
    width: 40%;
  }
  .group3 {
    width: 20%;
  }
  #messageContainer {
    width: 50%;
    height: 20%;
  }
  #monFormulaire {
    max-width: none;
  }
  .ville-liste {
    -moz-column-count: 2;
         column-count: 2;
  }
  .region-container {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .presentation-flex {
    flex-direction: row;
  }
  .presentation-text {
    width: 50%;
    padding-right: 20px;
  }
  .image-flex {
    padding-left: 20px;
    width: 50%;
  }
  .devis button {
    width: 20vw;
  }
  .groupServ {
    width: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .head {
    height: 40vh;
  }
  #monFormulaire {
    font-size: 20px;
  }
  button {
    height: 5vh;
  }
  .ville-liste {
    -moz-column-count: 3;
         column-count: 3;
  }
  .region-container {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */