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

.row-center {
  justify-content: center;
}

.row-between {
  justify-content: space-between;
}

#cmplz-document {
  flex-direction: column;
  /* max-width: 1440px; */
  /* align-items: center; */
  /* width: 1440px; */
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

* {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: #84a3c0;
  line-height: 140%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-titles);
  margin: 0;
  padding: 0;
  color: var(--color-light-client-default);
  margin-bottom: var(--spacing-1-5);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

header {
  height: 128px;
}
header .container,
header .row {
  height: 100%;
}
header .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
header .logo a {
  display: block;
}
header .menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: var(--spacing-1);
}
header .btn-section {
  display: flex;
  gap: var(--spacing-1);
}
header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-2);
  list-style: none;
}
header ul li a {
  text-decoration: none;
  color: var(--color-light-client-default);
}

.menu-mobile {
  display: none;
}

.header-mobile__hamburger {
  display: none;
}

@media screen and (max-width: 992px) {
  header {
    border-radius: 0 0 16px 16px;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: white;
    -webkit-box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.23);
    height: 12vh;
  }
  header .menu-desktop {
    display: none;
  }
  .header-mobile__hamburger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .header-mobile__hamburger .hamburger {
    background-color: transparent;
    border: none;
    display: block;
    width: 40px;
    height: 23px;
    padding: 0;
    cursor: pointer;
  }
  .header-mobile__hamburger .hamburger .hamburger-box {
    display: flex;
    justify-content: left;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header-mobile__hamburger .hamburger .hamburger-box .hamburger-inner {
    top: auto;
    bottom: 0;
    left: 0;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.13s;
    width: 100%;
    position: absolute;
    display: block;
    border-radius: 10px;
    margin-top: -2px;
    height: 4px;
    background-color: #002e5a;
  }
  .header-mobile__hamburger .hamburger .hamburger-box .hamburger-inner:before {
    content: "";
    width: 100%;
    top: -10px;
    background-color: #002e5a;
    position: absolute;
    height: 4px;
    display: block;
    border-radius: 10px;
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .header-mobile__hamburger .hamburger .hamburger-box .hamburger-inner:after {
    content: "";
    display: block;
    border-radius: 10px;
    height: 4px;
    width: 100%;
    top: -20px;
    background-color: #002e5a;
    position: absolute;
    transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  }
  .header-mobile__hamburger .hamburger.active .hamburger-box .hamburger-inner {
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  .header-mobile__hamburger .hamburger.active .hamburger-box .hamburger-inner:before {
    top: 0;
    transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
    transform: rotate(-90deg);
    width: 100%;
  }
  .header-mobile__hamburger .hamburger.active .hamburger-box .hamburger-inner:after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  }
  .menu-mobile {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: transparent;
    width: 100vw;
    height: 100vh;
    padding-top: 10vh;
    transition: all 400ms;
    display: block;
  }
  .menu-mobile__inner {
    background-color: white;
    width: 80%;
    height: 100%;
    position: fixed;
    left: -100%;
    transition: all 400ms;
    padding: var(--spacing-5) var(--spacing-1-5);
  }
  .menu-mobile__inner ul {
    padding: var(--spacing-2) 0;
    list-style: none;
    padding: 0;
  }
  .menu-mobile__inner ul li a {
    padding: var(--spacing-1);
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-decoration: none;
    color: #002e5a;
  }
  .menu-mobile__inner .btn-section {
    margin-top: var(--spacing-10);
    gap: var(--spacing-1);
    display: flex;
    flex-direction: column;
  }
  .menu-mobile__inner .btn-section .btn {
    width: 100%;
    display: block;
    padding: var(--spacing-0-5) 0;
  }
  .menu-mobile.active {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .menu-mobile.active .menu-mobile__inner {
    left: 0%;
  }
}
.devis {
  padding: 108px 0;
}
.devis .row {
  justify-content: center;
}
.devis .row .devis-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px;
  gap: 32px;
  isolation: isolate;
  background: #002e5a;
  border: 0.5px solid #00b1eb;
  border-radius: 16px;
}
.devis .row .devis-inner h2 {
  color: white;
  text-align: center;
}
.devis .row .devis-inner p {
  text-align: center;
  color: white;
}

footer {
  background-color: #f0f4ff;
}
footer .col-agence p {
  font-style: normal;
  font-weight: 400;
  color: #3d3d3d;
}
footer .col-agence .agency-name {
  font-family: "Museo";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #002e5a;
}
footer .footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}
footer .footer-menu li a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #002e5a;
}
footer .footer-top {
  position: relative;
  padding: 92px 0;
}
footer .footer-top .footer-socials {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  border-radius: 0 32px 0 0;
}
footer .footer-top .logo {
  width: 100%;
}
footer .footer-top .logo a {
  display: block;
  width: 100%;
}
footer .footer-top .logo a img {
  width: 50%;
}
footer .footer-bottom {
  border-top: 2px solid #002e5a;
}
footer .footer-bottom .row {
  justify-content: space-between;
  align-items: center;
}
footer .footer-bottom .footer-menu-bottom {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-1);
}
footer .footer-bottom .footer-menu-bottom li a {
  text-decoration: none;
}

.reassurances .reassurances-explication img {
  width: 100%;
}
.reassurances .list-reassurances {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: var(--spacing-3);
}
.reassurances .list-reassurances li {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-1-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 8px;
  background: #f0f4ff;
  box-shadow: 4px 4px 19px rgba(0, 79, 159, 0.1);
  border-radius: var(--spacing-1);
}
.reassurances .list-reassurances li img {
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
}
.reassurances .list-reassurances li p {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  padding: 0;
  letter-spacing: -0.02em;
  margin: 0;
  color: #002e5a;
}

@media screen and (max-width: 768px) {
  .devis {
    padding: var(--spacing-2) 0;
  }
  .reassurances {
    padding: var(--spacing-2) 0;
  }
  .reassurances .list-reassurances {
    padding-top: var(--spacing-2);
    padding-left: unset;
  }
  footer .footer-bottom .logo {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  footer .footer-bottom .logo a {
    display: block;
    text-align: center;
    margin: auto;
  }
  footer .footer-bottom .footer-menu-bottom {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-menu {
    margin-top: 2rem;
  }
  footer .footer-top {
    padding: var(--spacing-2) 0;
  }
  footer .footer-top .logo img {
    width: 100%;
    margin-bottom: var(--spacing-3);
  }
  footer .footer-top .logo .agency-name {
    margin-bottom: var(--spacing-1-5);
  }
  footer .footer-top .footer-socials {
    width: 45%;
    height: unset;
    aspect-ratio: 1;
    object-fit: cover;
  }
  footer .footer-bottom .footer-menu-bottom {
    justify-content: center;
  }
}
.btn {
  display: flex;
  align-items: center;
  text-align: center;
  display: block;
  width: fit-content;
  padding: var(--spacing-0-5);
  border-radius: var(--spacing-0-5);
  text-decoration: none;
}
.btn.primary {
  color: #ffffff;
  background-color: var(--color-light-client-default);
}
.btn.secondary {
  color: #343330;
  background-color: var(--color-light-background-primary);
}

article.article-large {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  gap: 16px;
  border-radius: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1/1.4;
  margin-bottom: var(--spacing-1);
}
article.article-large:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
article.article-large img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}
article.article-large {
  display: flex;
  align-items: flex-end;
}
article.article-large .article-inner {
  display: flex;
  padding: var(--spacing-2);
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-1);
}
article.article-large .article-inner .title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

.content-single {
  margin-top: 32px;
}
.content-single .row {
  justify-content: center;
}
.content-single .content-img {
  width: 100%;
  margin: 62px 0;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.content-single .content-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  article.article-large .article-inner {
    padding: var(--spacing-1);
  }
}
.breadcrumb-section {
  margin: var(--spacing-1) 0;
}
.breadcrumb-section a,
.breadcrumb-section .breadcrumb_last {
  text-align: center;
  text-decoration: none;
  align-items: center;
  padding: 4px 16px;
  background: #f0f4ff;
  border-radius: var(--spacing-1);
}
.breadcrumb-section .breadcrumb_last {
  background-color: var(--color-light-client-primary);
  color: white;
}

.hero {
  width: 100%;
  aspect-ratio: 16/5;
  border-radius: var(--spacing-2-5);
  isolation: isolate;
  position: relative;
}
.hero-margin {
  margin-bottom: 5%;
}
.hero .container {
  position: relative;
  height: 100%;
  border-radius: var(--spacing-2-5);
}
.hero-row {
  height: 100%;
  border-radius: var(--spacing-2-5);
}
.hero-row.hero-gradient {
  border-radius: var(--spacing-2-5);
}
.hero-row.hero-gradient:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(269.03deg, rgba(0, 79, 159, 0) 47.53%, #004f9f 89.66%);
  z-index: -1;
  border-radius: var(--spacing-1-5);
}
.hero {
  position: relative;
}
.hero .background-image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--spacing-1-5);
  object-fit: cover;
  overflow: hidden;
}

.hero-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 72px;
}
.hero-inner h1 {
  color: white;
}
.hero-inner p {
  color: white;
}

.hero-gallery {
  display: flex;
  align-items: center;
  translate: 0 -50%;
  list-style: none;
  padding: 0;
}
.hero-gallery li img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--spacing-1-5);
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  .hero {
    margin-top: var(--spacing-0-75);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    aspect-ratio: unset;
    height: 50vh;
  }
  .hero-inner {
    padding: 0 8px;
  }
  .hero-gallery li img {
    border-radius: var(--spacing-0-5);
  }
}
@media screen and (max-width: 576px) {
  .hero .container {
    position: unset;
  }
  .hero .background-image {
    border-radius: 2rem;
  }
  .hero-gallery {
    width: 100%;
    margin: auto;
  }
}
.text-classic {
  padding: var(--spacing-4) 0;
}
.text-classic .row {
  justify-content: center;
}
.text-classic h2 {
  text-align: left;
}
.text-classic p {
  text-align: left;
}
.text-classic .btn {
  margin: auto;
  margin-top: var(--spacing-1);
}

.mp-type-product {
  padding: var(--spacing-2) 0;
}
.mp-type-product .row {
  justify-content: space-between;
}
.mp-type-product .row.row-reverse {
  flex-direction: row-reverse;
}
.mp-type-product .row .product-details {
  margin-top: var(--spacing-1-5);
  padding: var(--spacing-1);
  background-color: var(--color-light-background-primary);
}
.mp-type-product a.primary {
  margin-top: var(--spacing-1);
}
.mp-type-product img {
  width: 100%;
  border-radius: var(--spacing-1);
}

@media screen and (max-width: 992px) {
  .mp-type-product img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .mp-type-product .row,
  .mp-type-product .row.row-reverse {
    flex-direction: column-reverse;
  }
  .mp-type-product img {
    aspect-ratio: 16/7;
    height: unset;
  }
  .mp-type-product h2 {
    padding: var(--spacing-0-5) 0;
  }
}
.models-product .models-inner {
  padding: var(--spacing-1-5) var(--spacing-4);
  border-radius: var(--spacing-0-75);
  background-color: var(--color-light-background-primary);
}
.models-product .model-description {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.models-product .model-description p {
  width: 80%;
}
.models-product .model-description .model-description-button {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-0-5);
  width: 100%;
}
.models-product .model-description .model-description-button button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.models-product__list li {
  margin: var(--spacing-0-75);
}
.models-product__list li .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: var(--spacing-1);
  background-color: white;
  transition: all 400ms;
  height: 650px;
  position: relative;
}
.models-product__list li .inner a {
  position: absolute;
  bottom: var(--spacing-2);
  left: var(--spacing-2);
}
.models-product__list li .inner .inner-text {
  padding: var(--spacing-2);
  padding-bottom: 0;
  height: 250px;
}
.models-product__list li .inner p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.models-product__list li .inner img {
  width: 100%;
  height: 400px;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.models-product__list li .inner:hover {
  background: #004f9f;
}
.models-product__list li .inner:hover h3 {
  color: white;
}
.models-product__list li .inner:hover p {
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .models-product__list li .inner .inner-text {
    padding: var(--spacing-1);
  }
}
@media screen and (max-width: 992px) {
  .model-description-button {
    margin-right: var(--spacing-0-75);
  }
  .models-product__list li .inner {
    height: 500px;
  }
  .models-product__list li .inner img {
    height: 250px;
    min-height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .models-product .models-inner {
    padding: var(--spacing-1-5);
  }
  .models-product__list li .inner {
    height: 450px;
  }
}
.realisations {
  padding: 32px 0;
}
.realisations h2 {
  text-align: center;
}
.realisations p {
  text-align: center;
}

.realisations-slick {
  margin: 0 -15px;
  overflow: hidden;
  margin-top: var(--spacing-2);
}
.realisations-slick .slick-slide {
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.85);
}
.realisations-slick .slick-slide.slick-center {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}
.realisations-slick img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.dots-custom {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-1);
  gap: var(--spacing-1);
}
.dots-custom li {
  border-radius: 100%;
  width: 15px;
  height: 15px;
  display: block;
  background-color: var(--color-light-background-primary);
  transition: all 400ms;
}
.dots-custom li.slick-active {
  width: 45px;
  background-color: #004F9F;
  border-radius: 0.5rem;
}

.youtube-video {
  padding: var(--spacing-2) 0;
}
.youtube-video iframe {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--spacing-0-5);
}

.agency {
  padding: var(--spacing-4) 0;
}
.agency-row {
  justify-content: space-between;
}
.agency-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-1);
  justify-content: space-between;
}
.agency-inner {
  background-color: var(--color-light-background-primary);
  border-radius: var(--spacing-0-5);
  padding: var(--spacing-1);
}
.agency-inner.full {
  width: 100%;
}
.agency-inner.middle {
  flex: 1;
}
.agency-inner a {
  margin-top: var(--spacing-1);
}
.agency-photo {
  border-radius: var(--spacing-1);
  width: 100%;
}

@media screen and (max-width: 992px) {
  .agency-inner.middle {
    width: 39.5%;
  }
}
@media screen and (max-width: 768px) {
  .agency-flex {
    margin-bottom: 2rem;
  }
  .agency-flex h3 {
    margin-bottom: var(--spacing-0-5);
  }
  .agency {
    padding: var(--spacing-2) 0;
  }
  .agency-inner.middle {
    width: 100%;
  }
}
/* assets/css/map-block.css */
.block-map {
  width: 100%;
  margin: 2rem 0;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.google-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.map-notice {
  padding: 1rem;
  background: #f0f0f0;
  border-radius: 4px;
  text-align: center;
}

.featured-mp {
  width: 100%;
  padding-bottom: var(--spacing-4);
  border-radius: var(--spacing-0-5);
}
.featured-mp article {
  display: flex;
  width: 100%;
}
.featured-mp article .article-img {
  aspect-ratio: 1;
  width: 30%;
}
.featured-mp article .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured-mp article .article-content {
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #002e5a;
  padding: var(--spacing-2);
}
.featured-mp article .article-content h3,
.featured-mp article .article-content p {
  color: white;
}

@media screen and (max-width: 768px) {
  .featured-mp article {
    flex-direction: column;
  }
  .featured-mp article .article-img {
    aspect-ratio: unset;
    width: 100%;
  }
  .featured-mp article .article-img img {
    width: 100%;
    border-radius: var(--spacing-1) var(--spacing-1) 0 0;
    aspect-ratio: 1/0.3;
  }
  .featured-mp article .article-content {
    width: 100%;
  }
}
.contact-block img {
  max-width: 350px;
  text-align: center;
  margin: auto;
  display: block;
  margin-top: 2rem;
}

.form-message--error {
  color: red;
  padding: 8px 0;
}

.field-error + span {
  color: red;
}

.mp-form .form-content {
  padding: 16px 40px;
  background: #f0f4ff;
  border-radius: var(--spacing-0-5);
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-1);
}
.mp-form .form-content label {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-0-5);
}
.mp-form .form-content label.form-mid {
  width: 47%;
}
.mp-form .form-content label.form-full {
  width: 100%;
}
.mp-form .form-content label span {
  line-height: 140%;
  /* ou 22px */
  color: #1e1e1e;
}
.mp-form .form-content label input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  gap: 4px;
  background: #ffffff;
  border: 1px solid #b2b6bf;
  border-radius: 4px;
}
.mp-form .form-content label textarea {
  background: #ffffff;
  border: 1px solid #b2b6bf;
  border-radius: 4px;
  width: 100%;
  color: #1e1e1e;
  padding: 8px;
}
.mp-form .acceptance {
  display: flex;
  gap: var(--spacing-0-5);
  align-items: flex-start;
}
.mp-form .submit {
  border: none;
  display: flex;
  align-items: center;
  text-align: center;
  display: block;
  width: fit-content;
  padding: var(--spacing-0-5);
  border-radius: var(--spacing-0-5);
  text-decoration: none;
  color: #343330;
  background-color: var(--color-light-background-primary);
  margin: auto;
  margin-top: var(--spacing-1);
}
.mp-form label.error input,
.mp-form label.error select,
.mp-form label.error textarea {
  border-color: #dc3545;
}
.mp-form .error-message {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.mp-form {
  /* Messages globaux */
}
.mp-form .form-error-message,
.mp-form .form-success-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}
.mp-form .form-error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.mp-form .form-success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.mp-form {
  /* Bouton désactivé */
}
.mp-form .submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hours_back {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: var(--spacing-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--spacing-2);
}
.hours_back h3,
.hours_back p {
  color: white;
}

@media screen and (max-width: 768px) {
  .mp-form {
    margin-top: var(--spacing-1);
  }
  .mp-form .form-content {
    padding: var(--spacing-1);
    flex-wrap: wrap;
    gap: var(--spacing-1);
  }
  .mp-form .form-content label.form-mid {
    width: 100%;
  }
  .hours_back {
    padding: var(--spacing-1);
  }
}
.text-image {
  padding: 96px 0;
}
.text-image .row {
  justify-content: space-between;
  align-items: center;
}
.text-image .row-reverse {
  flex-direction: row-reverse;
}
.text-image .row a {
  margin-top: var(--spacing-2);
}
.text-image img {
  width: 100%;
  border-radius: var(--spacing-1);
}

@media screen and (max-width: 768px) {
  .text-image .row-reverse {
    flex-direction: column-reverse;
  }
  .text-image img {
    aspect-ratio: 16/7;
    height: unset;
    object-fit: cover;
  }
}

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