@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/Raleway-Variable.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Variable.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bc-header {
  width: 100%;
  height: 7rem;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  box-shadow: 3px 0.2px 4px black;
  background-color: white;
  z-index: 1000;
}
.bc-header .bc-header-logo img {
  width: 22rem;
  height: 5.5rem;
}
.bc-header .bc-header-nav {
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}
.bc-header .bc-header-nav .bc-header-nav-link-detonator {
  position: relative;
}
.bc-header .bc-header-nav .bc-header-nav-link-detonator .bc-header-nav-menu {
  position: absolute;
  background-color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 1px black;
  gap: 1rem;
  width: 10rem;
  z-index: 0 !important;
}
.bc-header .bc-header-nav .bc-header-nav-link-detonator .bc-header-nav-menu.hidden {
  display: none;
}
.bc-header .bc-header-nav .bc-header-nav-link-detonator .bc-header-nav-menu .bc-header-nav-menu-links {
  text-align: center;
  color: #e83a81;
  font-size: 0.7rem;
  transition: 0.2s;
}
.bc-header .bc-header-nav .bc-header-nav-link-detonator .bc-header-nav-menu .bc-header-nav-menu-links:hover {
  color: black;
  transition: 0.2s;
}
.bc-header .bc-header-nav .bc-header-nav-links {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8em;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
}
.bc-header .bc-header-nav .bc-header-nav-links:hover {
  color: #e83a81;
  transition: 0.2s;
}
.bc-header .bc-header-nav .active {
  color: #e83a81;
  transition: 0.2s;
}
.bc-header .bc-header-buttons {
  display: flex;
  width: 10rem;
  gap: 0.3rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.bc-header .bc-header-buttons .bc-header-link img {
  height: 2rem;
  width: 2rem;
}
.bc-header .bc-header-buttons .bc-header-button {
  background-color: #e83a81;
  color: white;
  width: 100%;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 1.2em;
  transition: 0.2s;
}
.bc-header .bc-header-buttons .bc-header-button:hover {
  background-color: white;
  color: #e83a81;
  border: solid 1px #e83a81;
  transition: 0.2s;
}
.bc-header .bc-header-burger-menu {
  display: none;
}
.bc-header .bc-header-burger-aside {
  display: none;
}

@media screen and (max-width: 1420px) {
  .bc-header .bc-header-logo img {
    width: 18rem;
    height: 5.5rem;
  }
  .bc-header .bc-header-nav .bc-header-nav-links {
    font-size: 0.75em;
  }
  .bc-header .bc-header-buttons .bc-header-link img {
    height: 2rem;
    width: 2rem;
  }
  .bc-header .bc-header-buttons .bc-header-button {
    padding: 0.4rem 0.6rem;
    font-size: 1em;
  }
}
@media screen and (max-width: 1295px) {
  .bc-header .bc-header-logo img {
    width: 16rem;
    height: 5.5rem;
  }
  .bc-header .bc-header-nav .bc-header-nav-links {
    font-size: 0.7em;
  }
  .bc-header .bc-header-buttons {
    width: 8rem;
  }
  .bc-header .bc-header-buttons .bc-header-link img {
    height: 2rem;
    width: 2rem;
  }
  .bc-header .bc-header-buttons .bc-header-button {
    padding: 0.4rem 0.6rem;
    font-size: 1em;
  }
}
@media screen and (max-width: 1130px) {
  .bc-header {
    padding: 0.5rem 1rem;
  }
  .bc-header .bc-header-logo img {
    width: 12rem;
    height: 3rem;
  }
  .bc-header .bc-header-nav {
    gap: 0.6rem;
  }
  .bc-header .bc-header-nav .bc-header-nav-links {
    font-size: 0.7em;
  }
  .bc-header .bc-header-buttons {
    width: 8rem;
  }
  .bc-header .bc-header-buttons .bc-header-link img {
    height: 1.5rem;
    width: 1.5rem;
  }
  .bc-header .bc-header-buttons .bc-header-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.8em;
  }
  .bc-header .bc-header-burger-menu {
    display: none;
  }
  .bc-header .bc-header-burger-aside {
    display: none;
  }
}
@media screen and (max-width: 930px) {
  .bc-header .bc-header-logo img {
    width: 12rem;
    height: 3rem;
  }
  .bc-header .bc-header-nav {
    display: none;
  }
  .bc-header .bc-header-buttons {
    display: none;
  }
  .bc-header .bc-header-burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 2rem;
    cursor: pointer;
  }
  .bc-header .bc-header-burger-menu span {
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 5rem;
  }
  .bc-header .bc-header-burger-aside {
    position: absolute;
    top: 7rem;
    left: -100%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #e83a81;
    padding: 2rem 1rem;
    transition: left 0.5s;
  }
  .bc-header .bc-header-burger-aside.activeBurger {
    left: 0;
    transition: left 0.5s;
  }
  .bc-header .bc-header-burger-aside .bc-header-burger-aside-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
  }
  .bc-header .bc-header-burger-aside .bc-header-burger-aside-close span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2em;
    text-transform: uppercase;
    color: white;
  }
  .bc-header .bc-header-burger-aside .bc-header-aside-links {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 0.8em;
    text-transform: uppercase;
    color: white;
  }
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 1550px;
  margin-top: 7rem;
  margin-bottom: 4rem;
  overflow-x: hidden;
}
.content .home-hero-section {
  margin: 0 4%;
  background-color: #e83a81;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .home-hero-section .home-hero-section-titles {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 10%;
  gap: 2rem;
}
.content .home-hero-section .home-hero-section-titles.different-align {
  align-items: flex-start;
}
.content .home-hero-section .home-hero-section-titles h1 {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  font-size: 42px;
  color: white;
  margin: 0;
}
.content .home-hero-section .home-hero-section-titles h1.tinier {
  font-size: 35px;
}
.content .home-hero-section .home-hero-section-titles h2 {
  width: 100%;
  font-family: "Raleway", sans-serif;
  text-align: left;
  font-weight: 100;
  font-size: 26px;
  color: white;
  margin: 0;
}
.content .home-hero-section .home-hero-section-titles p {
  font-family: "Poppins", sans-serif;
  font-weight: 200 !important;
  text-align: justify;
  line-height: 1.8rem;
  font-size: 1rem;
  color: white;
  margin: 0;
}
.content .home-hero-section .home-hero-section-titles ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
}
.content .home-hero-section .home-hero-section-titles ul li {
  font-family: "Montserrat", sans-serif;
  line-height: 1.8rem;
  font-weight: 700;
  color: white;
  list-style-type: disc;
}
.content .home-hero-section .home-hero-section-titles a img {
  width: 3rem;
  height: 3rem;
  transform: rotate(180deg);
}
.content .home-hero-section .home-hero-section-titles .home-hero-section-titles-link {
  background-color: black;
  color: white;
  width: 15rem;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 200;
  font-size: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
}
.content .home-hero-section .home-hero-section-titles .home-hero-section-titles-link:hover {
  color: #e83a81;
}
.content .home-hero-section img {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .home-hero-section img.img-width {
  -o-object-fit: contain;
     object-fit: contain;
}
.content .home-hero-section .home-hero-hauteur-variable {
  width: 50%;
  position: relative;
}
.content .home-hero-section .home-hero-hauteur-variable img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .home-hero-section .home-hero-hauteur-variable .opacity-text {
  position: absolute;
  padding: 1rem;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1.8rem;
  font-weight: 100;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}
.content .home-hero-section.home-pro-hero-section .home-hero-section-titles {
  padding: 2rem;
  width: 30%;
}
.content .home-hero-section.home-pro-hero-section img {
  width: 70%;
  background-color: white;
}
.content .home-text-nous {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 10rem;
}
.content .home-text-nous p {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1.8rem;
  font-weight: 100;
}
.content .home-text-nous .p1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.5em;
}
.content .home-text-nous .p1 strong {
  color: #e83a81;
}
.content .home-text-nous .p3 {
  font-weight: 800;
  color: #e83a81;
}
.content .home-text-nous .p3 strong {
  color: black;
}
.content .home-text-nous .p5 {
  font-family: "Raleway", sans-serif;
  text-align: left;
  font-weight: 100;
  font-size: 1.5em;
}
.content .home-text-nous .p6 {
  font-weight: 800;
  color: black;
}
.content .home-text-nous .p6 strong {
  color: #e83a81;
}
.content .home-text-nous h2 {
  font-family: "Raleway", sans-serif;
  text-align: left;
  font-weight: 100;
  font-size: 1.5em;
  color: #e83a81;
}
.content .home-text-nous a {
  color: black;
  border: solid 1px black;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 200;
  text-transform: uppercase;
}
.content .home-text-nous a:hover {
  color: #e83a81;
  border: solid 1px #e83a81;
}
.content .home-solutions {
  width: 100%;
  background-color: #E9E9E9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 1rem;
}
.content .home-solutions.home-solutions-white {
  background-color: white !important;
}
.content .home-solutions h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.5em;
  text-align: center;
}
.content .home-solutions h2 strong {
  color: #e83a81;
}
.content .home-solutions h3 {
  font-family: "Raleway", sans-serif;
  text-align: left;
  font-weight: 100;
  text-align: center;
  font-size: 1em;
}
.content .home-solutions p {
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 1.5rem;
  font-weight: 300;
  text-align: justify;
  padding: 0 15rem;
  color: black;
}
.content .home-solutions .a1 {
  color: black;
  border: solid 1px black;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 200;
}
.content .home-solutions .a1:hover {
  color: #e83a81;
  border: solid 1px #e83a81;
}
.content .home-solutions .home-solutions-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 5rem;
}
.content .home-solutions .home-solutions-container .home-solutions-image {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content .home-solutions .home-solutions-container .home-solutions-image h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  color: #e83a81;
}
.content .home-solutions .home-solutions-container .home-solutions-image img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .home-solutions .home-solutions-container .home-solutions-image a {
  background-color: #e83a81;
  color: white;
  width: 100%;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 1.2em;
  transition: 0.2s;
}
.content .home-solutions .home-solutions-container .home-solutions-image a:hover {
  background-color: white;
  color: #e83a81;
  transition: 0.2s;
}
.content .main-contact-page {
  width: 98.8vw !important;
}
.content .home-contact {
  width: 100%;
  background-color: #e83a81;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 1rem;
  overflow: hidden;
}
.content .home-contact h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.5em;
  color: black;
  text-align: center;
}
.content .home-contact h3 {
  font-family: "Raleway", sans-serif;
  text-align: left;
  font-weight: 100;
  text-align: center;
  font-size: 1em;
  color: white;
}
.content .home-contact a {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 0.6em;
  font-weight: 100;
  text-align: justify;
  color: white;
}
.content .home-contact .wpcf7-form p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content .home-contact .wpcf7-form p .wpcf7-form-control-wrap {
  width: 100%;
}
.content .home-contact .wpcf7-form p input {
  background-color: white;
  font-family: "Montserrat", sans-serif;
  padding: 0.4rem 0.8rem;
}
.content .home-contact .wpcf7-form p textarea {
  background-color: white;
  font-family: "Montserrat", sans-serif;
  padding: 0.4rem 0.8rem;
  width: 100%;
}
.content .home-contact .wpcf7-form p .wpcf7-submit {
  background-color: black;
  color: white;
  width: 40%;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 200;
  font-size: 1.2em;
}
.content .home-labels {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 1rem;
}
.content .home-labels h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.5em;
  color: black;
  text-align: center;
}
.content .home-labels h2 strong {
  color: #e83a81;
}
.content .home-labels .home-labels-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
}
.content .home-labels .home-labels-container img:nth-of-type(1) {
  height: 10rem;
}
.content .home-labels .home-labels-container img:nth-of-type(2) {
  width: 10rem;
}

@media screen and (max-width: 1050px) {
  .content .home-hero-section {
    margin: 0 4%;
    flex-direction: column;
  }
  .content .home-hero-section .home-hero-section-titles {
    width: 100%;
    align-items: center;
    padding: 4rem 2rem;
  }
  .content .home-hero-section .home-hero-section-titles h1 {
    text-align: center;
    width: 100%;
    font-size: 35px;
    color: white;
    margin: 0;
  }
  .content .home-hero-section .home-hero-section-titles h2 {
    font-size: 20px;
    color: white;
    margin: 0;
  }
  .content .home-hero-section .home-hero-section-titles p {
    font-size: 1rem;
  }
  .content .home-hero-section .home-hero-section-titles ul {
    padding-left: 20px;
  }
  .content .home-hero-section .home-hero-section-titles ul li {
    line-height: 1.8rem;
  }
  .content .home-hero-section .home-hero-section-titles a img {
    width: 2rem;
    height: 2rem;
    transform: rotate(180deg);
  }
  .content .home-hero-section .home-hero-section-titles .home-hero-section-titles-link {
    background-color: black;
    color: white;
    width: 14rem;
    padding: 0.5rem 0.8rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 200;
    font-size: 1.2em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .content .home-hero-section .home-hero-section-titles .home-hero-section-titles-link:hover {
    color: #e83a81;
  }
  .content .home-hero-section img {
    width: 100%;
    height: 30rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content .home-hero-section img.img-width {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .content .home-hero-section .home-hero-hauteur-variable {
    width: 100%;
    position: relative;
  }
  .content .home-hero-section .home-hero-hauteur-variable img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content .home-hero-section .home-hero-hauteur-variable .opacity-text {
    line-height: 1.8rem;
    font-weight: 100;
  }
  .content .home-hero-section.home-pro-hero-section .home-hero-section-titles {
    padding: 2rem;
    width: 100%;
  }
  .content .home-hero-section.home-pro-hero-section img {
    width: 100%;
    background-color: white;
  }
}
@media screen and (max-width: 500px) {
  .content .home-hero-section {
    margin: 0;
    flex-direction: column;
  }
  .content .home-hero-section .home-hero-section-titles {
    width: 100%;
    align-items: center;
    padding: 4rem 2rem;
  }
  .content .home-hero-section .home-hero-section-titles h1 {
    font-size: 25px;
    color: white;
    margin: 0;
  }
  .content .home-hero-section .home-hero-section-titles h2 {
    font-size: 15px;
    text-align: center;
    color: white;
    margin: 0;
  }
  .content .home-hero-section .home-hero-section-titles p {
    font-size: 1rem;
  }
  .content .home-hero-section .home-hero-section-titles ul {
    padding-left: 20px;
  }
  .content .home-hero-section .home-hero-section-titles ul li {
    line-height: 1.8rem;
  }
  .content .home-hero-section .home-hero-section-titles a img {
    width: 2rem;
    height: 2rem;
    transform: rotate(180deg);
  }
  .content .home-hero-section .home-hero-section-titles .home-hero-section-titles-link {
    background-color: black;
    color: white;
    width: 14rem;
    padding: 0.5rem 0.8rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 200;
    font-size: 1.2em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .content .home-hero-section .home-hero-section-titles .home-hero-section-titles-link:hover {
    color: #e83a81;
  }
  .content .home-hero-section img {
    width: 100%;
    height: 30rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content .home-hero-section img.img-width {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .content .home-hero-section .home-hero-hauteur-variable {
    width: 100%;
    position: relative;
  }
  .content .home-hero-section .home-hero-hauteur-variable img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content .home-hero-section .home-hero-hauteur-variable .opacity-text {
    line-height: 1.8rem;
    font-weight: 100;
  }
  .content .home-hero-section.home-pro-hero-section .home-hero-section-titles {
    padding: 2rem;
    width: 100%;
  }
  .content .home-hero-section.home-pro-hero-section img {
    width: 100%;
    background-color: white;
  }
}
@media screen and (max-width: 800px) {
  .content {
    margin-top: 7rem;
  }
  .content .home-text-nous {
    width: 100%;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .content .home-text-nous p {
    line-height: 1.5rem;
  }
  .content .home-text-nous .p1 {
    font-size: 1.2em;
  }
  .content .home-text-nous .p5 {
    font-size: 1.2em;
    text-align: center;
  }
  .content .home-text-nous h2 {
    font-size: 1.2em;
    text-align: center;
  }
  .content .home-solutions {
    padding: 2rem 0;
    gap: 1rem;
  }
  .content .home-solutions.home-solutions-white {
    background-color: white !important;
  }
  .content .home-solutions h2 {
    font-size: 1.2em;
  }
  .content .home-solutions h2 strong {
    color: #e83a81;
  }
  .content .home-solutions h3 {
    font-family: "Raleway", sans-serif;
    text-align: left;
    font-weight: 100;
    text-align: center;
    font-size: 1em;
  }
  .content .home-solutions p {
    padding: 0 2rem;
    text-align: center;
  }
  .content .home-solutions .a1 {
    color: black;
    border: solid 1px black;
    padding: 0.5rem 0.8rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 200;
  }
  .content .home-solutions .a1:hover {
    color: #e83a81;
    border: solid 1px #e83a81;
  }
  .content .home-solutions .home-solutions-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .content .home-solutions .home-solutions-container .home-solutions-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .content .home-solutions .home-solutions-container .home-solutions-image h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: #e83a81;
  }
  .content .home-solutions .home-solutions-container .home-solutions-image img {
    width: 100%;
    height: 15rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content .home-solutions .home-solutions-container .home-solutions-image a {
    background-color: #e83a81;
    color: white;
    width: 100%;
    padding: 0.5rem 0.8rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 300;
    font-size: 1.2em;
    transition: 0.2s;
  }
  .content .home-solutions .home-solutions-container .home-solutions-image a:hover {
    background-color: white;
    color: #e83a81;
    transition: 0.2s;
  }
  .content .home-contact {
    width: 100%;
    background-color: #e83a81;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 1rem;
  }
  .content .home-contact h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.5em;
    color: black;
    text-align: center;
  }
  .content .home-contact h3 {
    font-family: "Raleway", sans-serif;
    text-align: left;
    font-weight: 100;
    text-align: center;
    font-size: 1em;
    color: white;
  }
  .content .home-contact a {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    line-height: 0.6em;
    font-weight: 100;
    text-align: justify;
    color: white;
  }
  .content .home-contact .wp-block-contact-form-7-contact-form-selector {
    width: 100%;
    padding: 1rem 1rem;
  }
  .content .home-contact .wp-block-contact-form-7-contact-form-selector .wpcf7 {
    width: 100%;
  }
  .content .home-contact .wp-block-contact-form-7-contact-form-selector .wpcf7-form-control-wrap {
    width: 100%;
  }
  .content .home-contact .wp-block-contact-form-7-contact-form-selector .wpcf7-form-control-wrap input {
    width: 100%;
  }
  .content .home-labels {
    gap: 1rem;
  }
  .content .home-labels h2 {
    font-size: 1.2em;
  }
  .content .home-labels .home-labels-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .content .home-labels .home-labels-container img:nth-of-type(1) {
    height: 5rem;
  }
  .content .home-labels .home-labels-container img:nth-of-type(2) {
    width: 5rem;
  }
}
.bc-footer {
  width: 100%;
  background-color: white;
  box-shadow: 3px 0.2px 4px black;
}
.bc-footer .nb-footer-main {
  display: flex;
  padding: 1rem 10%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}
.bc-footer .nb-footer-main .nb-footer-hooks {
  display: flex;
  padding: 1rem 2rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
.bc-footer .nb-footer-main .nb-footer-hooks .bc-header-aside-links {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8em;
  text-transform: uppercase;
}
.bc-footer .nb-footer-main .nb-footer-logo {
  width: 32rem;
  height: 10rem;
}
.bc-footer .nb-footer-main .nb-footer-logo img {
  width: 100%;
  height: 100%;
}
.bc-footer .nb-footer-main .nb-footer-socials {
  display: flex;
  padding: 1rem 2rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.bc-footer .nb-footer-main .nb-footer-socials .nb-footer-adresse {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.bc-footer .nb-footer-main .nb-footer-socials .nb-footer-adresse span {
  margin-right: 0.5rem;
}
.bc-footer .nb-footer-main .nb-footer-socials .nb-footer-number {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8em;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.bc-footer .nb-footer-main .nb-footer-socials .nb-footer-number span {
  margin-right: 0.5rem;
}
.bc-footer .nb-footer-main .nb-footer-socials .nb-footer-rs {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.bc-footer .nb-footer-main .nb-footer-socials .nb-footer-rs .nb-footer-social {
  text-decoration: none;
  height: 2.5rem;
  width: 2.5rem;
}

.nb-footer-banner {
  background-color: #e83a81;
  width: 100%;
  height: 2rem;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 728px) {
  footer .nb-footer-main {
    flex-direction: column !important;
    padding: 1rem 0 !important;
  }
  footer .nb-footer-main .nb-footer-hooks {
    padding: 1rem 2rem !important;
    gap: 0.5rem !important;
    width: 100%;
    text-align: center;
  }
  footer .nb-footer-main .nb-footer-hooks .nb-footer-hook {
    font-size: large !important;
    width: 100%;
    text-align: center;
  }
  footer .nb-footer-main .nb-footer-logo {
    width: 60% !important;
    height: 67% !important;
  }
  footer .nb-footer-main .nb-footer-socials {
    padding: 1rem 1rem !important;
    width: 100%;
    justify-content: center !important;
    align-items: center;
  }
  footer .nb-footer-main .nb-footer-socials .nb-footer-adresse {
    font-size: medium !important;
    text-align: center !important;
  }
  footer .nb-footer-main .nb-footer-socials .nb-footer-number {
    font-size: medium !important;
    text-align: center !important;
  }
  footer .nb-footer-main .nb-footer-socials .nb-footer-rs {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  footer .nb-footer-main .nb-footer-socials .nb-footer-rs .nb-footer-social {
    height: 2rem !important;
    width: 2rem !important;
  }
  footer .nb-footer-main .nb-footer-socials .nb-footer-rs .nb-footer-social img {
    width: 100%;
    height: 100%;
  }
  footer .nb-footer-banner {
    padding: 0.2rem;
    font-size: xx-small;
  }
}
.content .bc-lasociete-historique {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.content .bc-lasociete-historique img {
  width: 20rem;
}
.content .bc-lasociete-historique p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  text-align: center;
  font-size: 1.5em;
  color: black;
}

@media screen and (max-width: 900px) {
  .content .bc-lasociete-historique img {
    width: 15rem;
  }
  .content .bc-lasociete-historique p {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 900px) {
  .content .bc-lasociete-historique {
    flex-direction: column;
    padding: 2rem 0;
  }
  .content .bc-lasociete-historique img {
    width: 15rem;
  }
  .content .bc-lasociete-historique p {
    font-size: 1.2em;
  }
}
.content .bc-lasociete-text {
  display: flex;
  padding: 2rem 5rem;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
}
.content .bc-lasociete-text .bc-lasociete-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 30%;
  height: 100%;
  gap: 2rem;
}
.content .bc-lasociete-text .bc-lasociete-text-container h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 1.5em;
  color: #e83a81;
}
.content .bc-lasociete-text .bc-lasociete-text-container p {
  font-family: "Montserrat", sans-serif;
  text-align: justify;
  line-height: 1.8rem;
  font-weight: 100;
  color: black;
}

@media screen and (max-width: 700px) {
  .content .bc-lasociete-text {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }
  .content .bc-lasociete-text .bc-lasociete-text-container {
    width: 100%;
    height: 100%;
    gap: 2rem;
  }
  .content .bc-lasociete-text .bc-lasociete-text-container h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    font-size: 1em;
    color: #e83a81;
  }
  .content .bc-lasociete-text .bc-lasociete-text-container p {
    font-family: "Montserrat", sans-serif;
    text-align: justify;
    line-height: 1.8rem;
    font-size: 0.8em;
    font-weight: 100;
    color: black;
  }
}
.content .bc-confort-carousel {
  width: 100%;
  padding: 2rem;
}
.content .bc-confort-carousel .item {
  -o-object-fit: cover;
     object-fit: cover;
  width: 30rem;
  height: 20rem;
}

.content .bc-section-pictos {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 2rem;
}
.content .bc-section-pictos .bc-section-pictos-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 60%;
}
.content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
}
.content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container h3 strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 1em;
  color: #e83a81;
  text-transform: uppercase;
}
.content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container img {
  width: 50%;
}
.content .bc-section-pictos a {
  background-color: #e83a81;
  color: white;
  width: 12rem;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 1.2em;
  transition: 0.2s;
}
.content .bc-section-pictos a:hover {
  background-color: white;
  color: #e83a81;
  transition: 0.2s;
}

@media screen and (max-width: 700px) {
  .content .bc-section-pictos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 2rem;
  }
  .content .bc-section-pictos .bc-section-pictos-containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 60%;
  }
  .content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    font-size: 1em;
    text-transform: uppercase;
  }
  .content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container h3 strong {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    font-size: 1em;
    color: #e83a81;
    text-transform: uppercase;
  }
  .content .bc-section-pictos .bc-section-pictos-containers .bc-section-pictos-container img {
    width: 50%;
  }
  .content .bc-section-pictos a {
    background-color: #e83a81;
    color: white;
    width: 12rem;
    padding: 0.5rem 0.8rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 300;
    font-size: 1.2em;
    transition: 0.2s;
  }
  .content .bc-section-pictos a:hover {
    background-color: white;
    color: #e83a81;
    transition: 0.2s;
  }
}
.posts-container {
  margin-top: 7rem;
  width: 100%;
  min-height: 100vh;
  padding: 5rem 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
}
.posts-container .item-post {
  width: 25%;
  height: 38rem;
  border: solid 1px black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1rem;
}
.posts-container .item-post img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.posts-container .item-post h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2em;
}
.posts-container .item-post p {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 1em;
}
.posts-container .item-post a {
  background-color: #e83a81;
  color: white;
  width: 12rem;
  padding: 0.5rem 0.8rem;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 1.2em;
  transition: 0.2s;
}
.posts-container .item-post a:hover {
  background-color: white;
  color: #e83a81;
  transition: 0.2s;
}

@media screen and (max-width: 1000px) {
  .posts-container {
    gap: 5rem;
  }
  .posts-container .item-post {
    width: 40%;
  }
  .posts-container .item-post h2 {
    font-size: 1em;
  }
  .posts-container .item-post p {
    font-size: 0.8em;
  }
  .posts-container .item-post a {
    font-size: 1em;
  }
}
@media screen and (max-width: 700px) {
  .posts-container {
    gap: 5rem;
    padding: 5rem 1rem;
  }
  .posts-container .item-post {
    width: 100%;
  }
  .posts-container .item-post h2 {
    font-size: 1em;
  }
  .posts-container .item-post p {
    font-size: 0.8em;
  }
  .posts-container .item-post a {
    font-size: 1em;
  }
}
.single-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single-post .single-post-bc {
  margin: 12rem 5rem 5rem 5rem;
  width: 80%;
  min-height: 100vh;
  border: solid 1px black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}
.single-post .single-post-bc img {
  width: 100%;
  height: 25%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post .single-post-bc h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2em;
  color: #e83a81;
  width: 100%;
  text-align: left;
}
.single-post .single-post-bc h2,
.single-post .single-post-bc h3,
.single-post .single-post-bc h4,
.single-post .single-post-bc h5,
.single-post .single-post-bc h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  color: #e83a81;
  width: 100%;
  text-align: left;
}
.single-post .single-post-bc p {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 1em;
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 1000px) {
  .single-post .single-post-bc {
    margin: 9rem 2rem 2rem 2rem;
    width: 90%;
    min-height: 10vh;
    padding: 1rem;
    gap: 1rem;
  }
  .single-post .single-post-bc img {
    height: 45%;
  }
  .single-post .single-post-bc h1 {
    font-size: 1em;
  }
  .single-post .single-post-bc h2,
  .single-post .single-post-bc h3,
  .single-post .single-post-bc h4,
  .single-post .single-post-bc h5,
  .single-post .single-post-bc h6 {
    font-size: 0.8em;
  }
  .single-post .single-post-bc p {
    font-size: 0.8em;
  }
}
.content iframe {
  width: 100%;
}

.legal-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 4rem 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  padding-bottom: 3rem;
}
.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #e83a81;
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}
@media (max-width: 768px) {
  .legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
  }
}
@media (max-width: 480px) {
  .legal-content h2 {
    font-size: 1.3rem;
  }
}
.legal-content p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: "Raleway", sans-serif;
  text-align: justify;
}
@media (max-width: 768px) {
  .legal-content p {
    font-size: 0.95rem;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .legal-content p {
    font-size: 0.9rem;
  }
}
.legal-content a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
.legal-content ul li,
.legal-content ol li {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .legal-content ul,
  .legal-content ol {
    padding-left: 1.5rem;
  }
}
.legal-content > * + * {
  margin-top: 1rem;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.legal-content table th,
.legal-content table td {
  padding: 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
}
@media (max-width: 768px) {
  .legal-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.legal-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #007bff;
  background-color: #f8f9fa;
  font-style: italic;
}
@media (max-width: 768px) {
  .legal-content blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
  }
}
.legal-content h1:first-child,
.legal-content .page_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .legal-content h1:first-child,
  .legal-content .page_title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .legal-content h1:first-child,
  .legal-content .page_title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
}
.legal-content strong,
.legal-content b {
  font-weight: 600;
  color: #1a1a1a;
}
.legal-content .contact-info {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .legal-content .contact-info {
    padding: 1rem;
  }
}/*# sourceMappingURL=custom.css.map */