@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@700&display=swap");
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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: #FBFBFE;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body {
    padding: 0 20px;
  }
}
body .anchor::before {
  content: "";
  display: block;
  height: 105px;
  margin-top: -105px;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  body .anchor::before {
    height: 135px;
    margin-top: -135px;
  }
}
@media screen and (min-width: 1200px) {
  body .anchor::before {
    height: 100px;
    margin-top: -100px;
  }
}
body h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
body h3 {
  font-size: 15px;
  font-weight: 500;
  color: #286DAA;
  text-align: center;
}
body h4 {
  font-size: 13px;
  font-weight: 500;
}
body p, body li {
  font-size: 12px;
  font-weight: 400;
}
body .text {
  margin: 20px 15px;
}
body .bold {
  font-weight: 700;
}
body .tab {
  display: flex;
  width: 100%;
}
body .tab .tab-col:first-child p {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
body .tab .tab-col:nth-child(3) p {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
body .tab .tab-col p:nth-child(odd):nth-child(n+2) {
  background-color: hsla(208, 43%, 68%, 0.5);
}
body .tab .tab-col {
  flex-grow: 1;
}
body .tab .tab-col :first-child {
  background-color: #578DBD;
}
body .tab .tab-col p {
  padding-left: 5px;
}
body .heading-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
body .heading-title .line {
  width: 100vw;
  height: 2px;
  background-color: #286DAA;
  margin: 0 8px;
}
body .heading-title .icon {
  width: 40px;
  height: auto;
}
body .text {
  margin: 10px 20px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body .text {
    margin: 20px 50px;
  }
}
body .box-title {
  font-weight: 600;
  color: #286DAA;
  font-size: 15px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  body .box-title {
    font-size: 25px;
    margin-left: 50px;
  }
}
@media screen and (min-width: 1200px) {
  body .box-title {
    font-size: 30px;
    margin-left: 60px;
  }
}
body .presentation-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 10px 0;
}
body .presentation-box .presentation-box-text {
  width: 55%;
}
body .presentation-box .presentation-box-text p:nth-child(2) {
  font-weight: 500;
}
body .presentation-box .presentation-box-img {
  width: 40%;
  display: flex;
  align-items: stretch;
}
body .presentation-box .presentation-box-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
body .presentation-box-left .presentation-box-text {
  margin-right: 10px;
}
body .presentation-box-left .presentation-box-img img {
  border-bottom-right-radius: 50px;
}
body .presentation-box-right .presentation-box-text {
  margin-left: 10px;
}
body .presentation-box-right .presentation-box-img img {
  border-bottom-left-radius: 50px;
}
body header {
  padding: 30px 20px 15px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FBFBFE;
  z-index: 50;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
body header #top-bar {
  display: flex;
  justify-content: space-between;
}
body header #top-bar #logo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 29px;
}
@media screen and (min-width: 768px) {
  body header #top-bar #logo-bar {
    height: fit-content;
  }
}
body header #top-bar #logo-bar #main-logo img {
  width: 50px;
}
@media screen and (min-width: 768px) {
  body header #top-bar #logo-bar #main-logo img {
    width: 70px;
  }
}
body header #top-bar #logo-bar #logo-title {
  display: flex;
  width: 70px;
  height: 40px;
  font-family: "Kaisei HarunoUmi", serif;
  font-size: 14px;
  color: #578DBD;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body header #top-bar #logo-bar #logo-title {
    width: fit-content;
  }
}
body header #top-bar #logo-bar #logo-title h2 {
  line-height: 1.2;
  margin: 0;
}
body header #top-bar .button {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
body header #top-bar .button a {
  background-color: #8CB1D1;
  padding: 7px 10px;
  text-decoration: none;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre */
  transition: box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  body header #top-bar .button a {
    font-size: 18px;
  }
}
body header nav {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  body header nav {
    display: none;
  }
}
body header nav ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
body header nav ul li {
  list-style: none;
}
body header nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s ease;
}
body header nav ul li a:hover {
  color: #286DAA;
}
body .main-container {
  margin-top: 112px;
}
@media screen and (min-width: 768px) {
  body .main-container {
    margin-top: 140px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container {
    display: flex;
    align-items: start;
    flex-direction: row-reverse;
    gap: 32px;
    margin-top: 100px;
  }
}
body .main-container #summary {
  display: none;
}
@media screen and (min-width: 1200px) {
  body .main-container #summary {
    display: block;
    padding: 15px 5px;
    margin: 20px 0;
    position: sticky;
    top: 120px;
    width: 30%;
    border: #578DBD 3px solid;
    border-radius: 12px;
  }
  body .main-container #summary h3 {
    color: black;
    font-size: 30px;
    text-align: left;
  }
  body .main-container #summary li {
    list-style: none;
    border-left: #578DBD 3px solid;
    margin-bottom: 5px;
  }
  body .main-container #summary li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-left: 4px;
  }
  body .main-container #summary li a:hover {
    color: #286DAA;
  }
  body .main-container #summary .button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body .main-container #summary .button a {
    font-weight: 600;
    font-size: 24px;
    background-color: #8CB1D1;
    padding: 7px 10px;
    text-decoration: none;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre */
    transition: box-shadow 0.3s ease;
  }
}
@media screen and (min-width: 1200px) and (min-width: 768px) {
  body .main-container #summary .button a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main {
    width: 70%;
  }
}
body .main-container main #introduction #title {
  background-image: url("media/PLOMBERIE-scaled.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100hv;
  height: 129px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .main-container main #introduction #title h1 {
  font-weight: 700;
  color: #000000;
  text-align: center;
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 20px;
}
body .main-container main #introduction #introduction-text .quote {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #007BFF;
  position: relative;
  margin: 10px 20px;
}
@media screen and (min-width: 768px) {
  body .main-container main #introduction #introduction-text .quote {
    margin: 20px 50px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main #introduction #introduction-text .quote {
    margin: 20px 60px;
  }
}
body .main-container main #introduction #introduction-text .quote .quote-text {
  margin: 0;
}
body .main-container main #introduction #introduction-text .quote::before {
  content: "“";
  font-size: 30px;
  color: #007BFF;
  position: absolute;
  top: -10px;
  left: 10px;
}
body .main-container main #introduction #introduction-text .quote::after {
  content: "”";
  font-size: 30px;
  color: #007BFF;
  position: absolute;
  bottom: -10px;
  right: 10px;
}
body .main-container main #introduction #introduction-text .quote-text {
  margin: 0;
}
body .main-container main #introduction #introduction-text img {
  padding-right: 20px;
  height: 140px;
  object-fit: cover;
  width: 80vw;
  max-width: 800px;
  border-bottom-right-radius: 90px;
}
body .main-container main #plomberie .text p {
  margin-bottom: 10px;
}
body .main-container main #plomberie .row-box .box {
  background-color: #8CB1D1;
  padding: 10px;
  margin: 15px 45px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
body .main-container main #plomberie .row-box .box:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
body .main-container main #plomberie .row-box .box ul {
  list-style-type: none;
  padding: 0;
}
body .main-container main #plomberie .row-box .box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #333;
}
body .main-container main #plomberie .row-box .box ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #225e9a;
  border-radius: 50%;
}
body .main-container main #equipment {
  display: flex;
  justify-content: space-around;
}
body .main-container main #equipment .puce-triangle {
  display: flex;
  gap: 8px;
}
body .main-container main #equipment h4 {
  color: #578DBD;
}
body .main-container main #equipment img {
  height: 10px;
}
body .main-container main #partenaire .partenaire-box {
  display: flex;
  flex-direction: column;
}
body .main-container main #partenaire .partenaire-box .partenaire-row {
  display: flex;
  justify-content: space-around;
  height: 110px;
}
body .main-container main #partenaire .partenaire-box .partenaire-row img {
  object-fit: contain;
  width: 40%;
}
body .main-container main #tarif {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body .main-container main #tarif .grid-container {
  align-items: center;
}
body .main-container main #tarif .grid-container .grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border-radius: 15px;
}
body .main-container main #tarif .grid-container .grid-row:first-child {
  background-color: #578DBD;
}
body .main-container main #tarif .grid-container .grid-row:nth-child(odd):nth-child(n+2) {
  background-color: hsla(208, 43%, 68%, 0.5);
}
body .main-container main #tarif .grid-container .grid-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 50px;
}
body .main-container main #tarif .grid-container .grid-cell p {
  margin: 0;
}
body .main-container main #tarif .grid-container .grid-cell img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  body .main-container main #tarif .grid-container .grid-cell img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main #tarif .grid-container .grid-cell img {
    width: 40px;
    height: 40px;
  }
}
body .main-container main #rayon .text .rayon-action p:last-child {
  font-weight: 500;
}
body .main-container main #rayon .text .carte img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .main-container main #rayon .text .rub-contact {
  position: relative;
  background-image: url("media/plomberie-2-scaled.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100hv;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main-container main #rayon .text .rub-contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(87, 141, 189, 0.6);
}
body .main-container main #rayon .text .rub-contact p {
  color: white;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  position: relative;
  margin: 10px;
}
body .main-container main #realisation #bandeau {
  background: linear-gradient(90deg, rgba(140, 177, 209, 0.5) 0%, rgba(140, 177, 209, 0.5) 100%), #ffffff;
  display: flex;
  justify-content: space-evenly;
}
body .main-container main #realisation #bandeau .bandeau-text {
  margin: 10px;
  text-align: center;
}
body .main-container main #realisation #bandeau .bandeau-text p:first-child {
  font-weight: 600;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  body .main-container main #realisation #bandeau .bandeau-text p:first-child {
    font-size: 35px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main #realisation #bandeau .bandeau-text p:first-child {
    font-size: 45px;
  }
}
body .main-container main #realisation #bandeau .bandeau-text p:last-child {
  font-weight: 500;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  body .main-container main #realisation #bandeau .bandeau-text p:last-child {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main #realisation #bandeau .bandeau-text p:last-child {
    font-size: 20px;
  }
}
body .main-container main #realisation .img-tab {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 20px 32px;
  margin: 10px 0;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  body .main-container main #realisation .img-tab {
    grid-template-columns: repeat(2, 250px);
    gap: 32px 15px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main #realisation .img-tab {
    gap: 46px 72px;
  }
}
body .main-container main #realisation .img-tab .img-box {
  width: 150px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  body .main-container main #realisation .img-tab .img-box {
    width: 200px;
    height: 250px;
  }
}
@media screen and (min-width: 1200px) {
  body .main-container main #realisation .img-tab .img-box {
    width: 250px;
    height: 300px;
  }
}
body .main-container main #realisation .img-tab .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
body .main-container main #realisation .temoignage-box h3 {
  font-weight: 600;
}
body .main-container main #realisation .temoignage-box .avis-contain {
  display: flex;
  flex-direction: column;
  margin: 5px 38px;
}
body .main-container main #realisation .temoignage-box .avis-contain .avis-box {
  border: rgba(0, 0, 0, 0.5) 1px solid;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px;
}
body .main-container main #realisation .temoignage-box .avis-contain .avis-box h4 {
  font-weight: 600;
}
body .main-container main #realisation .temoignage-box .avis-contain .avis-box img {
  width: 80px;
}
body .main-container main #realisation .temoignage-box .avis-contain .avis-box p {
  font-weight: 400;
}
body footer {
  background-color: #286DAA;
  color: #FBFBFE;
  padding: 10px 20px 5px 20px;
}
body footer .first-section {
  display: flex;
  padding-top: 10px;
  justify-content: space-around;
}
body footer .first-section .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body footer .first-section .footer-info #devis {
  font-weight: 700;
  font-size: 15px;
  margin: 10px;
}
body footer .first-section .footer-info .footer-logo {
  display: flex;
  align-items: center;
  border-radius: 48px;
  padding: 0 5px;
  gap: 10px;
  background-color: #FBFBFE;
  color: #286DAA;
}
body footer .first-section .footer-info .footer-logo .footer-logo-img img {
  width: 61px;
  height: 46px;
}
body footer .first-section .footer-info .footer-logo .footer-logo-title p {
  font-family: "Kaisei HarunoUmi", serif;
  font-size: 10px;
  color: #286DAA;
  text-align: center;
}
body footer .first-section .footer-contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
body footer .first-section .footer-contact p {
  font-weight: 500;
}
body footer .first-section .footer-contact p:last-child {
  font-weight: 700;
}
body footer .footer-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  gap: 10px;
}
body footer .footer-nav li {
  list-style: none;
}
body footer .footer-nav li a {
  text-decoration: none;
  color: #FBFBFE;
  font-weight: 400;
  transition: color 0.3s ease;
}
body footer .footer-nav li a:hover {
  color: #8CB1D1;
}
body footer .footer-nav .prestation {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body footer .footer-nav .prestation div {
  display: flex;
  gap: 15px;
}
body footer .mention {
  text-align: center;
}

@media screen and (min-width: 768px) {
  body, footer {
    font-size: 18px;
  }
  body h1, footer h1 {
    font-size: 40px;
  }
  body h2, footer h2 {
    font-size: 35px;
  }
  body h3, footer h3 {
    font-size: 25px;
  }
  body h4, footer h4 {
    font-size: 20px;
  }
  body p, body li, footer p, footer li {
    font-size: 18px;
  }
  body a, footer a {
    font-size: 18px;
  }
  body .text, footer .text {
    margin: 20px 50px;
  }
}
@media screen and (min-width: 1200px) {
  body, footer {
    font-size: 20px;
  }
  body h1, footer h1 {
    font-size: 48px;
  }
  body h2, footer h2 {
    font-size: 45px;
  }
  body h3, footer h3 {
    font-size: 30px;
  }
  body h4, footer h4 {
    font-size: 24px;
  }
  body p, body li, footer p, footer li {
    font-size: 20px;
  }
  body a, footer a {
    font-size: 20px;
  }
  body .text, footer .text {
    margin: 20px 60px;
  }
}

/*# sourceMappingURL=style.css.map */
