:root {
  --color-black: black;
}

.hidden {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.burger {
  display: block;
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 3px;
  z-index: 1000000000000000000000;
  box-shadow: 0 0 grid(1) rgba(0, 0, 0, 0.25), 0 0 grid(0.2) rgba(0, 0, 0, 0.1);
  background-color: var(--color-white);
  margin: 0.5rem;
}
.burger span {
  user-select: none;
  position: absolute;
  margin: 0.0625rem auto 0.525rem -0.75rem;
  text-indent: -999em;
  top: 50%;
  left: 50%;
  margin-top: -0.0625rem;
  cursor: pointer;
}
.burger span, .burger span:before, .burger span:after {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--color-black);
  transition: 0.5s;
  opacity: 1;
}
.burger span:before, .burger span:after {
  position: absolute;
  content: "";
}
.burger span:before {
  top: -0.525rem;
}
.burger span:after {
  top: 0.525rem;
}

.burgers {
  display: flex;
}

.burger1:not(.collapsed) > span:before, .burger1:not(.collapsed) > span:after {
  top: 0px;
  margin-top: -0.5875rem;
}
.burger1:not(.collapsed) > span {
  background-color: transparent;
}
.burger1:not(.collapsed) > span:before {
  transform: translateY(0.525rem) rotate(45deg);
}
.burger1:not(.collapsed) > span:after {
  transform: translateY(0.525rem) rotate(-45deg);
}

.burger2:not(.collapsed) > span:before, .burger2:not(.collapsed) > span:after {
  top: 0px;
  margin-top: -0.5875rem;
}
.burger2:not(.collapsed) > span {
  background-color: transparent;
}
.burger2:not(.collapsed) > span:before {
  transform: translateY(0.525rem) rotate(-45deg);
}
.burger2:not(.collapsed) > span:after {
  transform: translateY(0.525rem) rotate(45deg);
}

.burger3:not(.collapsed) > span:before, .burger3:not(.collapsed) > span:after {
  top: 0px;
  margin-top: -0.5875rem;
}
.burger3:not(.collapsed) > span {
  transform: rotate(-360deg);
  background-color: transparent;
}
.burger3:not(.collapsed) > span:before {
  transform: translateY(0.525rem) rotate(-45deg);
}
.burger3:not(.collapsed) > span:after {
  transform: translateY(0.525rem) rotate(45deg);
}

.burger4:not(.collapsed) > span:before, .burger4:not(.collapsed) > span:after {
  top: 0px;
  margin-top: -0.5875rem;
}
.burger4:not(.collapsed) > span {
  animation: menuCloseMiddle--base 0.5s forwards;
}
.burger4:not(.collapsed) > span:before {
  animation: menuCloseMiddle--before 0.5s forwards;
}
.burger4:not(.collapsed) > span:after {
  animation: menuCloseMiddle--after 0.5s forwards;
}
@keyframes menuCloseMiddle--base {
  0% {
    background-color: rgb(0, 0, 0);
  }
  80% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0);
  }
}
@keyframes menuCloseMiddle--after {
  0% {
    transform: translateY(0) rotate(0);
  }
  80% {
    transform: translateY(0.525rem) rotate(0);
  }
  100% {
    transform: translateY(0.525rem) rotate(45deg);
  }
}
@keyframes menuCloseMiddle--before {
  0% {
    transform: translateY(0) rotate(0);
  }
  80% {
    transform: translateY(0.525rem) rotate(0);
  }
  100% {
    transform: translateY(0.525rem) rotate(-45deg);
  }
}

.tracedebug {
  margin-top: 200px;
  margin-bottom: 100px;
}
.tracedebug * {
  font-size: 14px;
  font-family: monospace;
}

html, body {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  font-display: swap;
}

nav {
  font-family: "bebas-neue-pro", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  transition: top 0.3s linear;
}
nav.navbar {
  position: sticky;
  background-color: white;
  z-index: 99;
}
nav .navbar-brand img {
  width: 100%;
  max-width: 160px;
  height: auto;
}
@media (max-width: 991px) {
  nav .navbar-brand img {
    max-width: 100px;
  }
}
nav .navbar-toggler {
  border: none;
  outline: none;
  padding: 18px;
  background-color: #038486;
}
nav .navbar-toggler span {
  background-color: white;
  height: 3px;
}
nav .navbar-toggler span:before, nav .navbar-toggler span:after {
  background-color: white;
  height: 3px;
}
nav .navbar-toggler span:after {
  top: 0.6rem;
}
nav .navbar-toggler:focus-visible, nav .navbar-toggler:focus, nav .navbar-toggler:active {
  box-shadow: none;
}
nav .navbar-toggler:not(.collapsed) {
  background-color: white;
}
nav .navbar-toggler:not(.collapsed) span:before, nav .navbar-toggler:not(.collapsed) span:after {
  background-color: #038486;
}
nav .nav-link {
  text-transform: uppercase;
  color: #4E4E4E;
  position: relative;
  padding: 8px;
  display: block;
  margin-left: 8px;
}
@media (max-width: 991px) {
  nav .nav-link {
    color: white;
  }
}
nav .nav-link:before {
  content: "";
  position: absolute;
  background-color: #038486;
  bottom: 0;
  left: 0;
  max-height: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: all 0.3s linear;
}
nav .nav-link:hover {
  color: white;
}
nav .nav-link:hover:before {
  max-height: 100px;
}
@media (max-width: 991px) {
  nav .navbar-collapse {
    transition: right 0.3s ease-in-out;
    position: fixed;
    right: -100vw;
    background-color: #038486;
    width: calc(100% - 120px);
    height: 100vh;
    z-index: 1;
    top: 0;
    padding-top: 112px;
  }
  nav .navbar-collapse:before {
    content: "";
    display: block;
    width: 1000vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -300vw;
    background-color: rgba(3, 132, 134, 0.6);
    opacity: 0;
    transition: all linear 0.3s;
  }
  nav .navbar-collapse.show {
    right: 0;
  }
  nav .navbar-collapse.show:before {
    left: -120px;
    opacity: 1;
  }
}

footer {
  margin-bottom: 80px;
}
footer .logo {
  max-width: 190px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
  margin: auto;
}
footer ul a {
  color: #4E4E4E;
  text-decoration: none;
}
footer ul a:hover {
  color: #038486;
}
@media all and (max-width: 767px) {
  footer ul {
    margin: 0;
    padding: 0;
  }
}

body {
  color: #4E4E4E;
}
body main h1 {
  font-family: "bebas-neue-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 100%;
  text-transform: uppercase;
  color: #038486;
  margin-bottom: 16px;
}
body main h2 {
  font-family: "bebas-neue-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #038486;
  margin-bottom: 48px;
}
body main .couleur_content {
  color: #4E4E4E !important;
}
body main .button {
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  padding: 14px 16px;
  display: block;
  width: fit-content;
  margin: auto;
  border-radius: 4px;
  background-color: gray;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  border: none;
  outline: none;
}
body main .button-blue {
  background-color: #038486;
  color: white;
}
body main .button-blue:hover {
  background-color: #2FB6B8;
}
body main .button-white {
  background-color: white;
  color: #038486;
}
body main .button-white:hover {
  color: #2FB6B8;
}
body main .button-orange {
  background-color: #D43B0B;
  color: white;
}
body main .button-orange:hover {
  background-color: #EC651C;
}
body main .bloc {
  margin: 104px 0;
  position: relative;
}
body main .padding_bloc {
  padding: 80px 0;
}
body main .bg_main_light {
  background-color: rgba(47, 182, 184, 0.1);
}
body main .card_categories {
  border-radius: 4px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.21);
  margin: 10px 0;
  position: relative;
  height: 100%;
  max-height: 230px;
}
body main .card_categories img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body main .card_categories-titre {
  font-weight: 700;
  padding: 16px;
  background-color: #038486;
  color: white;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  width: 100%;
}
body main .card_categories-hover {
  content: "";
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -100%;
  right: 0;
  z-index: 10;
  background-color: rgba(3, 132, 134, 0.8);
  transition: all 0.3s ease-in-out;
  color: white;
  font-weight: 700;
  text-decoration-line: underline;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .card_categories:hover .card_categories-hover {
  bottom: 0;
  opacity: 1;
}
body main .card_categories:hover .card_categories-titre {
  opacity: 0;
}
body main .carousel {
  position: relative;
  margin-top: 48px;
  margin-bottom: 40px;
}
body main .carousel .glider-track {
  gap: 16px;
}
body main .carousel .glider-next {
  right: -40px;
}
body main .carousel .glider-prev {
  left: -40px;
}
body main .carousel .glider-prev svg {
  transform: rotate(180deg);
}
body main .carousel .glider-prev, body main .carousel .glider-next {
  opacity: 1;
  top: 37%;
}
body main .carousel .glider-prev.disabled path, body main .carousel .glider-next.disabled path {
  stroke: #C6C6C6;
}
body main .carousel .dots {
  margin-top: 32px;
}
body main .carousel .glider-dot.active {
  background-color: #038486;
}
body main .card_blog {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  height: 100%;
  max-height: 280px;
}
body main .card_blog:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0.9) 100%);
  transition: all linear 0.3s;
}
body main .card_blog:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  background-image: linear-gradient(180deg, rgba(47, 182, 184, 0) 0%, rgba(47, 182, 184, 0.9) 100%);
  transition: all linear 0.3s;
}
body main .card_blog:hover:before {
  opacity: 0;
}
body main .card_blog:hover:after {
  opacity: 1;
}
body main .card_blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body main .card_blog .desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  color: white;
  padding: 16px;
  z-index: 1;
}
body main .card_blog .desc .date {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 16px;
}
body main .card_blog .desc .titre {
  font-weight: 700;
}
body main .card_savoir_faire {
  max-width: 250px;
  margin: auto;
  text-align: center;
}
body main .card_savoir_faire h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
}
body main .article_catalogue {
  height: 100%;
  position: relative;
  background-color: white;
}
body main .article_catalogue a {
  color: #4E4E4E;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body main .article_catalogue:after {
  position: absolute;
  content: "";
  height: 3px;
  background-color: #D43B0B;
  width: 100%;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
body main .article_catalogue-img_container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
body main .article_catalogue-img_container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
body main .article_catalogue-text {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
body main .article_catalogue-article {
  font-weight: 600;
}
body main .article_catalogue-rayon {
  margin-top: 4px;
  margin-bottom: 12px;
  color: #B3B3B3;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
body main .article_catalogue-prix {
  background-color: #D43B0B;
  color: white;
  padding: 4px;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
  margin-top: auto;
}
body main .article_catalogue:hover:after {
  opacity: 1;
}
body main .article_catalogue:hover .article_catalogue-img_container img {
  transform: scale(110%);
}
body main form input, body main form select, body main form textarea {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(78, 78, 78, 0.1);
  border-radius: 4px;
}
body main form textarea {
  min-height: 110px;
}
body main form select:required:invalid {
  color: gray;
}
body main form option[value=""][disabled] {
  display: none;
}
body main form option {
  color: black;
}
body main form button.button {
  margin-top: 32px;
}
body .section_contact label {
  display: block;
  margin-bottom: 4px;
}
body .section_contact form input, body .section_contact form textarea, body .section_contact form select {
  border-color: #4E4E4E;
}
body .section_contact form input.erreur, body .section_contact form textarea.erreur, body .section_contact form select.erreur {
  border-color: red;
}
body .section_contact input.required:invalid, body .section_contact textarea.required:invalid, body .section_contact select.required:invalid {
  border-color: red;
}
body .section_maintenance {
  background-color: #D43B0B;
  padding: 56px;
  border-radius: 16px;
  text-align: center;
}
body .section_maintenance h2, body .section_maintenance p {
  color: white !important;
  max-width: 610px;
  margin: auto;
}
body .section_maintenance h2 {
  margin-bottom: 16px;
}
body .section_maintenance p {
  margin-bottom: 32px;
}
body .section_maintenance .button {
  color: #D43B0B;
}
body .section_maintenance .button:hover {
  color: #EC651C;
}
body .section_maintenance-illu {
  width: 78px;
  height: auto;
  margin-bottom: 16px;
}
body .adressAutofill {
  color: black;
}
body#page_home .bandeau {
  position: relative;
  padding: 130px 0;
}
body#page_home .bandeau img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
body#page_home .bandeau h2 {
  font-family: "bebas-neue-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  color: white;
  text-align: left;
  margin-bottom: 0;
}
body#page_home .bloc_chiffres {
  margin: 80px 0;
}
@media (max-width: 991px) {
  body#page_home .bloc_chiffres {
    margin: 0;
    margin-top: -104px;
    padding: 80px 0;
    background-color: #038486;
  }
  body#page_home .bloc_chiffres .ligne_chiffres {
    padding: 0;
  }
}
body#page_home .ligne_chiffres {
  background-color: #038486;
  color: white;
  text-align: center;
  padding: 56px 64px;
  border-radius: 16px;
}
body#page_home .ligne_chiffres .chiffre {
  font-weight: 800;
  font-size: 64px;
  line-height: 75px;
}
body#page_home .ligne_chiffres .texte {
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
}
body#page_home .button-actu {
  margin-top: 32px;
}
body#page_home .bloc_contact {
  background-color: #038486;
}
body#page_home .bloc_contact h2 {
  color: white;
}
body#page_home .bloc_contact .col-12:has(> .illu) {
  min-height: 350px;
}
body#page_home .bloc_contact .illu {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
body#page_home .bloc_contact .form_container {
  max-width: 500px;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 82px;
  padding-bottom: 82px;
}
body#page_qui_sommes_nous .nav-link:before {
  background-color: #FFC923;
}
body#page_qui_sommes_nous h1, body#page_qui_sommes_nous h2 {
  color: #FFC923;
}
body#page_qui_sommes_nous .bg_jaune {
  background-color: #FFC923;
}
body#page_qui_sommes_nous .bg_jaune h2 {
  margin-bottom: 16px;
}
body#page_qui_sommes_nous .ou_nous_trouver {
  background-color: #FAF8F2;
}
body#page_catalogue .nav-link:before, body#page_catalogue_secondevie .nav-link:before {
  background-color: #D43B0B;
}
body#page_catalogue h1, body#page_catalogue_secondevie h1 {
  color: #D43B0B;
}
body#page_catalogue .bloc_filtre, body#page_catalogue_secondevie .bloc_filtre {
  background-color: #FCF7F5;
  padding: 50px 0;
  color: black;
}
body#page_catalogue .filtres, body#page_catalogue_secondevie .filtres {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
}
body#page_catalogue .filtres .filtre, body#page_catalogue_secondevie .filtres .filtre {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body#page_catalogue .filtres .tag, body#page_catalogue_secondevie .filtres .tag {
  display: flex;
  gap: 8px;
  align-items: center;
}
body#page_catalogue .tag_type, body#page_catalogue_secondevie .tag_type {
  font-weight: 700;
  width: 100%;
}
body#page_catalogue_secondevie .nav-link:before {
  background-color: #038486;
}
body#page_catalogue_secondevie h1 {
  color: #038486;
}
body#page_catalogue_secondevie .bloc_filtre {
  background-color: rgba(47, 182, 184, 0.1);
}
body#page_catalogue_secondevie .article_catalogue:after {
  background-color: #038486;
}
body#page_catalogue_secondevie .article_catalogue-prix {
  background-color: #038486;
}
body#page_rayons .nav-link:before {
  background-color: #D43B0B;
}
body#page_rayons h1, body#page_rayons h2 {
  color: #D43B0B;
}
body#page_rayons .bloc_categorie {
  background-color: #FCF7F5;
}
body#page_rayons .card_categories {
  box-shadow: none;
}
body#page_rayons .card_categories-titre {
  background-color: #D43B0B;
  color: white;
  text-align: center;
}
body#page_rayons .card_categories-hover {
  background-color: rgba(212, 59, 11, 0.8);
}
body#page_rayons .glider-next, body#page_rayons .glider-prev {
  width: 15px;
  height: 12px;
}
@media all and (max-width: 991px) {
  body#page_rayons .glider-next, body#page_rayons .glider-prev {
    display: none;
  }
}
body#page_rayons .glider-next:before, body#page_rayons .glider-prev:before {
  content: "";
  position: absolute;
  background: url("/images/pictos/arrow.svg") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
}
body#page_rayons .glider-prev {
  transform: rotate(-180deg);
}
body#page_rayons .glider-dot.active {
  background: #D43B0B;
}
body#page_rayons .glider .article_catalogue {
  padding: 0px 4px;
}
body#page_article .nav-link:before {
  background-color: #D43B0B;
}
body#page_article h1, body#page_article h2 {
  color: #D43B0B;
}
body#page_article .breadcrumb {
  margin-top: 24px;
  margin-bottom: 40px;
}
body#page_article .breadcrumb a {
  font-size: 14px;
  color: #B3B3B3;
  text-transform: none;
  text-decoration: none;
  font-weight: 600;
}
body#page_article .breadcrumb span.level {
  padding-left: 14px;
}
body#page_article .breadcrumb .level_1 a {
  color: #D43B0B;
}
body#page_article .breadcrumb span.level:before {
  content: " / ";
  padding-right: 14px;
  display: inline-block;
  color: #B3B3B3;
  font-weight: 600;
}
body#page_article .article {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 0;
}
body#page_article .article h1 {
  color: #D43B0B;
  padding-bottom: 15px;
  text-align: left;
  padding-left: 0;
  font-size: 40px;
}
body#page_article .article h1 .article_rayon {
  font-weight: 400;
  font-size: 24px;
  display: block;
  line-height: 100%;
}
body#page_article .article .image {
  text-align: center;
  z-index: 1;
}
body#page_article .article .image .grande_image {
  min-height: 350px;
  margin-bottom: 15px;
}
body#page_article .article .image img {
  max-width: 100%;
  max-height: 400px;
  z-index: 1;
}
body#page_article .article .image .thumbnails {
  list-style-type: none;
  padding-bottom: 15px;
}
body#page_article .article .image .thumbnails .thumbnail {
  cursor: pointer;
}
body#page_article .article .article_description {
  font-size: 16px;
}
body#page_article .article .article_description p {
  font-size: inherit;
}
body#page_article .article .recompenses {
  margin-top: 60px;
  padding: 40px 60px;
  font-size: 16px;
  border-radius: 16px;
  border: 2px solid #D43B0B;
}
body#page_article .article .recompenses h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #D43B0B;
  text-transform: uppercase;
  text-align: start;
  margin-bottom: 12px;
}
body#page_article .article .recompenses p {
  margin-bottom: 8px;
}
body#page_article .article div.article_cadre form {
  padding-bottom: 30px;
}
body#page_article .article div.article_cadre .button {
  max-width: 230px;
  width: 100%;
  text-align: center;
}
body#page_article .article div.article_cadre .article_prix {
  padding: 15px 0;
}
body#page_article .article div.article_cadre .article_prix .prix {
  text-align: left;
}
body#page_article .article div.article_cadre .article_prix .prix .prix_ttc {
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  display: inline-block;
  padding-right: 6px;
}
body#page_article .article div.article_cadre .article_prix .prix.meilleur .prix_ttc {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%; /* 24px */
  text-transform: uppercase;
  color: #D43B0B;
}
body#page_article .article div.article_cadre .article_prix .prix.barre .prix_ttc {
  text-decoration: line-through;
}
body#page_article .article div.article_cadre .article_prix .prix .unite {
  font-size: 24px;
  display: inline-block;
}
body#page_article .article div.article_cadre .article_prix .quantite {
  display: none;
}
body#page_article .article div.article_cadre .article_prix .quantite_min {
  font-size: 14px;
  padding-left: 8px;
  display: inline-block;
}
body#page_article .article div.article_cadre .article_prix .prix_origine {
  width: 100%;
  padding-left: 15px;
  font-size: 14px;
}
body#page_article .article div.article_cadre .article_prix .prix_origine:before {
  content: "au lieu de ";
}
body#page_article .article div.article_cadre .promotion_description {
  padding: 10px 15px 10px 15px;
  margin-bottom: 15px;
  background-color: #D43B0B;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
body#page_article .article div.article_cadre .promotion_description .prix_ttc {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  display: inline-block;
}
body#page_article #vous_aimerez_aussi {
  background-color: #FCF7F5;
}
body#page_article #vous_aimerez_aussi .titre {
  font-family: bebas-neue-pro, sans-serif;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  color: #D43B0B;
  margin-bottom: 24px;
}
body#page_blog main .blog_ligne .image {
  text-align: center;
}
body#page_blog main .blog_ligne .image img {
  max-width: 100%;
}
body#page_blog main .blog_ligne .date {
  color: #038486;
}
body#page_blog main .blog_ligne .image {
  margin-bottom: 32px;
}
body#page_blogs .bandeau {
  height: 435px;
  width: 100%;
}
body#page_blogs .bandeau img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#page_contact form button[type=submit] {
  background-color: #038486;
  transition: 0.3s ease-in-out all;
  color: white;
}
body#page_contact form button[type=submit]:hover {
  background-color: #2FB6B8;
}
body#page_contact .bandeau {
  height: 435px;
  width: 100%;
}
body#page_contact .bandeau img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#page_contact .ou_nous_trouver {
  background-color: #FAF8F2;
}

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