@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: rgb(226, 226, 226);
  overflow-x: hidden;
}
body #backToTopBtn {
  display: none; /* Caché par défaut */
  position: fixed; /* Position fixe */
  bottom: 30px; /* En bas de la page */
  right: 30px; /* À droite */
  z-index: 100; /* Au-dessus des autres éléments */
  background-color: rgb(34, 139, 34); /* Couleur du bouton */
  color: white; /* Couleur du texte */
  border: none; /* Pas de bordure */
  outline: none; /* Pas de contour */
  cursor: pointer; /* Curseur pointer au survol */
  padding: 15px; /* Espacement interne */
  border-radius: 50%; /* Bouton rond */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombre légère */
  transition: opacity 0.3s ease-in-out; /* Transition douce pour l'apparition/disparition */
}
body #backToTopBtn:hover {
  background-color: #0056b3; /* Couleur au survol */
}

@font-face {
  font-family: "RedRose";
  src: url("/assets/fonts/RedRose-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RedRoseBold";
  src: url("/assets/fonts/RedRose-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.header {
  position: relative;
  height: 23rem;
  display: flex;
  max-width: 1380px;
  margin: 0 auto;
  border-radius: 0 0 40px 40px;
  /* Version ordinateur */
  /* Barre réseaux sociaux */
}
.header .top-social-bar {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
}
.header .top-social-bar a {
  color: #fff;
  font-size: 20px;
  margin-left: 15px;
  transition: transform 0.2s ease, color 0.2s ease;
  text-decoration: none;
  border: none;
}
.header .top-social-bar a:hover {
  transform: scale(1.2);
  color: #f39c12;
}
@media (min-width: 992px) {
  .header {
    height: 40rem;
  }
}
.header .header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.header .header-content .logo-container {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-top: 10px;
}
.header .header-content .logo-container .logo {
  width: 150px;
  height: auto;
}
.header .header-content .logo-container .site-title {
  position: absolute;
  font-size: clamp(27px, 4vw, 80px);
  color: white;
  margin-top: 200px;
  margin-left: 5px;
  font-family: Lato;
  letter-spacing: 1px;
}
.header .header-content .logo-container .site-title span {
  color: red;
}
@media (min-width: 992px) {
  .header .header-content .logo-container .site-title {
    margin-top: 300px;
    margin-left: 45px;
  }
}
.header .header-content .floating-image {
  position: absolute;
  bottom: 0;
  left: 11rem;
  width: auto;
  max-width: 550px;
  height: 19rem;
}
@media (min-width: 992px) {
  .header .header-content .floating-image {
    height: 38rem;
    left: 52rem;
  }
}
.header .header-content .header-subtitle {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  font-size: clamp(20px, 3vw, 48px);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;
  font-family: RedRose;
}
@media (min-width: 992px) {
  .header .header-content .header-subtitle {
    bottom: 8rem;
    left: 4rem;
    line-height: 45px;
    font-weight: 900;
  }
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RedRose";
  src: url("/assets/fonts/RedRose-VariableFont_wght.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.services {
  max-width: 1380px;
  margin: 0 auto;
  font-family: RedRose;
  font-weight: 100;
  line-height: 20px;
  padding: 40px 20px 20px 20px;
  text-align: center;
}
.services .services-container {
  max-width: 1000px;
  margin: 0 auto;
  /* Définition de l'animation */
}
.services .services-container .services-text {
  font-size: clamp(24px, 2vw, 20px);
  color: rgb(8, 71, 104);
  margin-bottom: 20px;
  line-height: 28px;
  font-family: Lato;
}
.services .services-container .services-text span {
  font-weight: bold;
}
.services .services-container .btn {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #254295;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 18px);
  padding: 15px 20px;
  border-radius: 35px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.services .services-container .btn:hover {
  background-color: #1e3a7d;
}
.services .services-container .btn .btn-icon {
  width: 39px;
  height: auto;
}
.services .services-container .btn-call {
  background-color: rgb(34, 139, 34); /* Couleur de base */
  font-size: clamp(30px, 2vw, 30px);
  width: 300px;
  margin: 20px auto;
  color: white; /* Texte lisible */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  animation: lightenPulse 1.2s infinite ease-in-out; /* Animation infinie */
}
@keyframes lightenPulse {
  0% {
    filter: brightness(1); /* Couleur normale */
  }
  50% {
    filter: brightness(1.5); /* Couleur légèrement plus claire */
  }
  100% {
    filter: brightness(1); /* Retour à la couleur normale */
  }
}
.services .services-container .btn-urgence {
  background-color: rgb(34, 139, 34);
  font-size: clamp(22px, 2vw, 20px);
  text-align: center;
  border-radius: 50px;
  height: 65px;
  max-width: 350px;
  margin: 0 auto;
}
.services .services-container .btn-urgence:hover {
  background-color: rgb(34, 139, 34);
}
.services .services-container .btn-urgence .btn-icon-urgency {
  width: 80px;
}
.services .logo-rncp {
  width: 200px;
  padding-top: 50px;
}

@media (min-width: 768px) {
  .services-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }
  .services-container .services-text {
    flex: 1;
    margin-bottom: 0;
    order: 2;
  }
  .services-container .btn-call {
    order: 1;
    margin: 0;
    flex-shrink: 0;
  }
  .services-container .btn-urgence {
    order: 3;
    margin: 0;
    flex-shrink: 0;
  }
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf");
  font-display: swap;
}
.depannage-section {
  max-width: 1380px;
  margin: 20px auto;
  font-family: Lato;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}
.depannage-section .depannage-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .depannage-section .depannage-content {
    flex: 1;
  }
}
.depannage-section .depannage-image img {
  max-width: 100%;
  height: auto;
}
.depannage-section .depannage-texte {
  flex: 1;
}
.depannage-section .depannage-texte p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  color: rgb(8, 61, 96);
}
@media (max-width: 768px) {
  .depannage-section {
    flex-direction: column;
    text-align: center;
  }
  .depannage-section .depannage-image img {
    max-width: 100%;
    margin: auto;
  }
  .depannage-section .depannage-texte {
    margin-top: 20px;
  }
}
.depannage-section .depannage-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.depannage-section .depannage-logo img {
  width: 150px;
  height: auto;
}
.depannage-section .depannage-logo p {
  font-size: 20px;
  color: rgb(34, 139, 34);
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}
@media (max-width: 768px) {
  .depannage-section .depannage-logo p img {
    margin-bottom: 10px;
  }
  .depannage-section .depannage-logo p p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .depannage-section .depannage-texte {
    margin-bottom: 20px;
  }
  .depannage-section .depannage-logo {
    width: 100%;
    justify-content: flex-start;
  }
}
@font-face {
  font-family: "RedRose";
  src: url("/assets/fonts/RedRose-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.assurance-section {
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .assurance-section {
    padding: 0;
  }
}
.assurance-section h2 {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 15px;
  color: rgb(34, 139, 34);
  font-family: Lato;
}
.assurance-section p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #254295;
  font-style: italic;
  font-weight: 700;
  font-family: Lato;
  line-height: 24px;
  letter-spacing: 1px;
}
.assurance-section .assurance-logos {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .assurance-section .assurance-logos {
    border-radius: 0;
    padding: 10px;
  }
}
.assurance-section .assurance-logos img {
  width: 60px;
  height: auto;
}
@media (max-width: 768px) {
  .assurance-section .assurance-logos {
    gap: 10px;
  }
  .assurance-section .assurance-logos img {
    width: 90px;
  }
  .assurance-section h2 {
    font-size: 34px;
  }
  .assurance-section p {
    font-size: 14px;
  }
}

@font-face {
  font-family: "RedRose";
  src: url("/assets/fonts/RedRose-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.services-section {
  padding: 45px 20px;
  text-align: center;
  max-width: 1380px;
  margin: 0 auto;
}
.services-section .services-cards .before-after {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  cursor: ew-resize;
}
.services-section .before-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.services-section .after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.services-section .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.08);
}
.services-section .slider-handle::before {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section h2 {
  font-size: clamp(34px, 4vw, 42px);
  margin-bottom: 15px;
  color: rgb(34, 139, 34);
  font-family: Lato;
}
.services-section p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #254295;
  font-style: italic;
  font-weight: 700;
  font-family: Lato;
  line-height: 24px;
  letter-spacing: 1px;
}
.services-section .services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.services-section .services-cards .card {
  overflow: hidden;
  text-align: left;
}
.services-section .services-cards .card img {
  width: 100%;
  display: block;
  border-radius: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
}
.services-section .services-cards .card h3 {
  font-size: 20px;
  margin: 15px;
  color: rgb(34, 139, 34);
  font-family: Lato;
}
.services-section .services-cards .card p {
  font-size: 17px;
  line-height: 1.6;
  margin: 20px 0;
  color: #254295;
  font-style: normal;
  font-weight: 100;
  font-family: Lato;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 768px) {
  .services-section .services-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .services-section .card h3 {
    font-size: 18px;
  }
  .services-section .card p {
    font-size: 13px;
  }
}

@font-face {
  font-family: "RedRose";
  src: url("/assets/fonts/RedRose-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.testimonials-section {
  max-width: 1380px;
  margin: 0 auto;
  padding: 40px;
}
.testimonials-section .testimonials-content {
  text-align: center;
}
.testimonials-section .testimonials-content h2 {
  font-family: "Lato", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  color: rgb(34, 139, 34);
  margin-bottom: 20px;
}
.testimonials-section .testimonials-content h2 span {
  color: rgb(34, 139, 34);
}
.testimonials-section .testimonials-content p {
  font-family: "RedRose", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  color: #254295;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonials-section .tagembed-widget {
  width: 100%;
  margin-top: 20px;
}
.testimonials-section .tagembed-widget iframe {
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: "RedRose";
  src: url("/assets/fonts/RedRose-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.pre-footer {
  background-color: rgb(34, 139, 34);
  border-radius: 50px;
  margin: 25px;
  font-family: RedRose;
}
@media (min-width: 992px) {
  .pre-footer {
    max-width: 1080px;
    margin: 25px auto;
    display: flex;
    justify-content: center;
  }
}
.pre-footer .text-section p {
  color: white;
  font-size: 26px;
  text-align: center;
  padding: 0 10px;
}
.pre-footer img {
  width: 350px;
}
.pre-footer .phone-section {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.pre-footer .phone-section .blink {
  animation: clignoter 1.2s linear infinite;
  color: yellow;
  font-size: 20px;
  font-weight: bold;
}
.pre-footer .phone-section .blink a {
  text-decoration: none;
  color: yellow;
  font-size: 30px;
}
.pre-footer .phone-section .blink a img {
  width: 30px;
  margin-left: 10px;
}
.pre-footer .text-section2 {
  display: flex;
  justify-content: center;
  color: white;
  padding: 15px 0;
  font-size: 25px;
}
@keyframes clignoter {
  50% {
    opacity: 0;
  }
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  color: #333;
}
.footer .footer-villes {
  margin-top: 2rem;
  text-align: center;
}
.footer .ville-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}
.footer .btn-ville {
  padding: 8px 15px;
  background-color: #254295;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.footer .footer-logo img {
  margin-bottom: 10px;
  width: 80px;
}
.footer .footer-company-name p {
  font-size: 25px;
  font-weight: bold;
  margin: 5px 0;
  font-family: Lato;
  color: #254295;
}
.footer .footer-company-name p span {
  color: rgb(34, 139, 34);
}
.footer .footer-navigation,
.footer .footer-localisation,
.footer .footer-villes,
.footer .footer-address {
  margin-top: 20px;
}
.footer .footer-navigation h3,
.footer .footer-localisation h3,
.footer .footer-villes h3,
.footer .footer-address h3 {
  font-size: 18px;
  font-weight: bold;
  color: #254295;
  margin-bottom: 10px;
}
.footer .footer-navigation p,
.footer .footer-navigation li,
.footer .footer-localisation p,
.footer .footer-localisation li,
.footer .footer-villes p,
.footer .footer-villes li,
.footer .footer-address p,
.footer .footer-address li {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}
.footer .footer-navigation ul,
.footer .footer-localisation ul,
.footer .footer-villes ul,
.footer .footer-address ul {
  list-style: none;
  padding: 0;
}
.footer .footer-navigation ul li,
.footer .footer-localisation ul li,
.footer .footer-villes ul li,
.footer .footer-address ul li {
  margin-bottom: 5px;
}
.footer .footer-navigation ul li a,
.footer .footer-localisation ul li a,
.footer .footer-villes ul li a,
.footer .footer-address ul li a {
  color: #333;
  text-decoration: none;
}
.footer .footer-navigation ul li a:hover,
.footer .footer-localisation ul li a:hover,
.footer .footer-villes ul li a:hover,
.footer .footer-address ul li a:hover {
  text-decoration: underline;
  color: #254295;
}
.footer .footer-map {
  margin: 1.5rem 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.footer .footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
.footer .footer-legal a {
  font-size: 14px;
  text-decoration: none;
}
.footer .footer-legal a:hover {
  text-decoration: underline;
}
.footer p {
  font-size: 12px;
  margin-top: 15px;
  color: #666;
}
.footer .site-realise-par {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .site-realise-par p {
  margin-right: 5px;
  font-size: 0.8em;
  color: #777;
}
.footer .site-realise-par a img {
  height: 40px;
  width: auto;
  display: block;
}

.marques-section {
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .marques-section {
    padding: 0;
  }
}
.marques-section h2 {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 15px;
  color: rgb(34, 139, 34);
  font-family: Lato;
}
.marques-section p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #254295;
  font-style: italic;
  font-weight: 700;
  font-family: Lato;
  line-height: 24px;
  letter-spacing: 1px;
}
.marques-section .marques-logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .marques-section .marques-logos {
    border-radius: 0;
  }
}
.marques-section .marques-logos img {
  width: 90px;
  height: auto;
}
.marques-section .marques-logos a {
  display: inline-block;
}
@media (max-width: 768px) {
  .marques-section .marques-logos {
    gap: 10px;
    padding: 10px;
  }
  .marques-section .marques-logos img {
    width: 90px;
  }
  .marques-section h2 {
    font-size: 34px;
  }
  .marques-section p {
    font-size: 14px;
  }
}

.legal-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.legal-header {
  text-align: center;
  margin-bottom: 20px;
}
.legal-header h1 {
  color: #007BFF;
}

.legal-main .legal-section {
  margin-bottom: 30px;
}
.legal-main .legal-section h2 {
  color: #007BFF;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.legal-main .legal-section p {
  margin-bottom: 15px;
}
.legal-main .back-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.legal-main .back-link:hover {
  background-color: rgb(0, 98.4, 204);
}

.legal-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
}
.legal-footer .site-realise-par {
  display: flex;
  align-items: center; /* Centre verticalement */
  justify-content: center; /* Centre horizontalement */
}
.legal-footer .site-realise-par p {
  margin-right: 5px; /* Espacement entre le texte et le logo */
  font-size: 0.8em; /* Taille de la police */
  color: #777; /* Couleur du texte */
}
.legal-footer .site-realise-par a img {
  height: 40px; /* Hauteur du logo */
  width: auto; /* Largeur automatique pour conserver les proportions */
  display: block; /* Supprime l'espacement supplémentaire autour de l'image */
}

#faq {
  background-color: white;
  max-width: 1380px;
  margin: 20px auto;
}
#faq h2 {
  font-size: clamp(24px, 4vw, 42px);
  color: rgb(34, 139, 34);
  font-family: Lato;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

.accordion {
  background: #eee;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background 0.3s;
  margin-bottom: 2px;
  color: rgb(37, 66, 149);
  font-weight: 400;
  font-family: Lato;
  letter-spacing: 1px;
}

.accordion:hover,
.accordion.active {
  background: #ccc;
}

.accordion::after {
  content: "➤";
  float: right;
  transition: transform 0.3s;
}

.accordion.active::after {
  transform: rotate(90deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f9f9f9;
}

.panel p {
  padding: 10px 15px;
  margin: 0;
  font-weight: 500;
}

.serrurier-lille {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  width: 100%;
  padding: 2rem 1rem;
  overflow: hidden;
}
.serrurier-lille__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.serrurier-lille__overlay {
  position: relative;
  z-index: 1;
  background: rgba(28, 28, 28, 0.65);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  max-width: 500px;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.serrurier-lille__overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.serrurier-lille__overlay p {
  font-size: 1.15rem;
}

@media (max-width: 600px) {
  .serrurier-lille {
    min-height: 220px;
  }
  .serrurier-lille__overlay {
    padding: 1.2rem 0.7rem;
  }
  .serrurier-lille__overlay h2 {
    font-size: 1.25rem;
  }
  .serrurier-lille__overlay p {
    font-size: 1rem;
  }
}/*# sourceMappingURL=main.css.map */