@media all and (min-width: 991px) {
  header {
    max-height: 140px;
    overflow: hidden;
    border-bottom: 2px solid #1D18AA;
  }
}
header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .navbar {
  padding-top: 0;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar-brand img {
  width: 150px;
}

.nav-item .nav-link {
  color: #33343F;
}
.nav-item .nav-link:hover {
  color: #7BB0F3;
}
.nav-item .nav-link.active {
  color: #7BB0F3;
  font-weight: bold;
}

footer {
  margin-top: auto;
  padding: 10px 25px;
}
footer a:hover {
  font-weight: bold;
}

body {
  background-color: #FFFFFF;
  color: #33343F;
}

a {
  color: #33343F;
  text-decoration: none;
}
a:hover {
  color: #7BB0F3;
}

.hidden {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.container-fluid:has(.banner) {
  padding-left: 0;
  padding-right: 0;
}

.banner {
  border-bottom: #000 3px solid;
}
.banner.homepage {
  height: clamp(300px, 50vh, 500px);
  overflow: hidden;
  position: relative;
}
.banner.homepage .img-container {
  height: 100%;
}
.banner.homepage .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner.homepage .text-container {
  background-color: rgba(51, 52, 63, 0.4);
  position: absolute;
  top: 25%;
  height: 100%;
  width: 100%;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(2, 2, 5, 0.7);
}
.banner.homepage .text-container .banner-title {
  font-size: clamp(40px, 5vw, 60px);
}
.banner.homepage .text-container .banner-subtitle {
  font-size: clamp(25px, 2vw, 36px);
}
.banner.homeblock > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 991px) {
  .banner.homeblock > .container {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
}
.banner.homeblock > .container .text-w50 {
  width: 50%;
}
@media all and (max-width: 576px) {
  .banner.homeblock > .container .text-w50 {
    width: 100%;
  }
}
.banner.homeblock > .container .img-container {
  height: 400px;
  flex: 1; /* Ensure container takes available space and has defined width */
  min-width: 0; /* Fix flexbox overflow issues */
  display: flex;
  justify-content: center; /* Horizontally center content */
}
@media all and (max-width: 1200px) {
  .banner.homeblock > .container .img-container {
    height: 330px;
  }
}
@media all and (max-width: 991px) {
  .banner.homeblock > .container .img-container {
    padding-bottom: 30px;
    flex: auto; /* Reset flex on mobile if needed */
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .banner.homeblock > .container .img-container {
    height: 250px;
  }
}
.banner.homeblock > .container .img-container .carousel {
  height: 100% !important;
  width: 100%;
}
.banner.homeblock > .container .img-container .carousel .carousel-inner {
  width: 100% !important;
  height: 100% !important;
}
.banner.homeblock > .container .img-container .carousel .carousel-inner .carousel-item {
  width: 100% !important;
  height: 100% !important;
  text-align: center;
  background: transparent;
}
.banner.homeblock > .container .img-container img {
  height: 100%;
  width: auto;
  display: inline-block; /* Respect text-align center */
  object-fit: contain;
  border-left: solid 2px #000;
  border-right: solid 2px #000;
}
@media all and (max-width: 991px) {
  .banner.homeblock > .container .img-container img {
    border-top: solid 2px #000;
    border-bottom: solid 2px #000;
  }
}
.banner.homeblock > .container .text-container {
  margin: auto;
  text-align: center;
  max-width: 365px;
}
@media all and (max-width: 991px) {
  .banner.homeblock > .container .text-container {
    padding-top: 50px;
  }
}
.banner.homeblock > .container .text-container h2 {
  margin-bottom: 35px;
}
.banner.homeblock > .container .text-container p .btn {
  margin-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.banner.homeblock > .container .text-container p .btn > span {
  margin-left: 10px;
}
.banner.couverture-block {
  background-color: #33343F;
  color: #FFFFFF;
}
.banner.plomberie-block {
  background-color: #B3DFF1;
}
@media all and (max-width: 991px) {
  .banner.plomberie-block > .container {
    flex-direction: column-reverse;
  }
}

.contact-page {
  /*    margin-top: 20px;
      border-top: solid 2px $darkblue;*/
  padding-top: 30px;
  padding-bottom: 15px;
  margin-bottom: 50px;
  border-bottom: solid 2px #1D18AA;
  background-color: lightgrey;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.contact-page > .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact-page section {
  padding: 50px 20px;
  width: 50%;
}
@media all and (max-width: 991px) {
  .contact-page section {
    width: 100%;
  }
}
.contact-page section.infos-section {
  border-right: solid 2px #1D18AA;
}
@media all and (max-width: 991px) {
  .contact-page section.infos-section {
    border-right: 0;
    border-bottom: solid 2px #1D18AA;
  }
}
.contact-page section.infos-section address {
  margin-bottom: 30px;
}
.contact-page section.infos-section address strong {
  font-size: 1.5em;
  margin-bottom: 25px;
}
.contact-page section.infos-section address, .contact-page section.infos-section p {
  text-align: center;
  font-size: 20px;
}
.contact-page section.form-section form {
  display: flex;
  flex-wrap: wrap;
  margin-left: 25px;
}
.contact-page section.form-section form > div {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 576px) {
  .contact-page section.form-section form > div {
    width: 100%;
  }
}
.contact-page section.form-section form > div.subject-container, .contact-page section.form-section form > div.message-container {
  width: 100%;
}
.contact-page section.form-section form > div.subject-container > div, .contact-page section.form-section form > div.message-container > div {
  display: flex;
  flex-direction: column;
}
.contact-page section.form-section form > div.subject-container > div input, .contact-page section.form-section form > div.subject-container > div textarea, .contact-page section.form-section form > div.message-container > div input, .contact-page section.form-section form > div.message-container > div textarea {
  width: 100% !important;
}
.contact-page section.form-section form > div.form-actions {
  width: 100%;
}
.contact-page section.form-section form > div.form-actions button {
  margin: auto !important;
  display: inline-block !important;
  margin-top: 25px !important;
  font-weight: 500;
  border-width: 2px !important;
}
.contact-page section.form-section form input, .contact-page section.form-section form textarea {
  width: 90%;
  border-radius: 6px;
  border: solid 1px #33343F;
  padding: 5px 10px;
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 8px;
}
@media all and (max-width: 576px) {
  .contact-page section.form-section form input, .contact-page section.form-section form textarea {
    width: 100% !important;
  }
}

/*# sourceMappingURL=main.css-zy9ZHR6.map */
