*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.imgResp-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.imgResp-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background-color: #f2f9f9;
  color: #192B2E;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container-page {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 2100px;
}

.linear-bckg {
  background: rgb(243, 250, 248);
  background: -moz-linear-gradient(180deg, rgb(243, 250, 248) 0%, rgb(239, 248, 246) 50%, rgb(176, 223, 217) 100%);
  background: -webkit-linear-gradient(180deg, rgb(243, 250, 248) 0%, rgb(239, 248, 246) 50%, rgb(176, 223, 217) 100%);
  background: linear-gradient(180deg, rgb(243, 250, 248) 0%, rgb(239, 248, 246) 50%, rgb(176, 223, 217) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3faf8",endColorstr="#b0dfd9",GradientType=1);
}

.reverselinear-bckg {
  background: rgb(176, 223, 217);
  background: -moz-linear-gradient(180deg, rgb(176, 223, 217) 0%, rgb(239, 248, 246) 50%, rgb(243, 250, 248) 100%);
  background: -webkit-linear-gradient(180deg, rgb(176, 223, 217) 0%, rgb(239, 248, 246) 50%, rgb(243, 250, 248) 100%);
  background: linear-gradient(180deg, rgb(176, 223, 217) 0%, rgb(239, 248, 246) 50%, rgb(243, 250, 248) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b0dfd9",endColorstr="#f3faf8",GradientType=1);
}

.header-page {
  width: 100%;
  height: 600px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .header-page {
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  .header-page {
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .header-page {
    height: 300px;
  }
}
.header-page .header--titre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  padding: 3rem;
  background-color: rgba(59, 117, 127, 0.8);
  color: #f2f9f9;
  border-radius: 5px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .header-page .header--titre {
    padding: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .header-page .header--titre {
    width: 80%;
    padding: 1rem;
  }
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 80px 2rem;
}
@media screen and (max-width: 1280px) {
  section {
    padding: 40px 1rem;
  }
}
@media screen and (max-width: 900px) {
  section {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  section {
    padding: 2rem 0.5rem;
  }
}

.message-sectionVide {
  width: 80%;
  background-color: rgb(176, 223, 217);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
}
.message-sectionVide p {
  line-height: 200%;
}

.error {
  color: #f82d2d;
}

.panel-btns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1440px;
  padding: 0.5rem;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  .panel-btns {
    padding: 0.5rem 0;
    gap: 0.75rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.panel-btns .btn-panel {
  text-transform: capitalize;
  border: none;
  background-color: rgb(146, 202, 206);
  color: #192B2E;
  padding: 5px 8px;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  .panel-btns .btn-panel {
    width: 100%;
  }
}
.panel-btns .btn-panel:hover {
  background-color: #2e7372;
  color: #f2f9f9;
}
.panel-btns .active {
  background-color: #2e7372;
  color: #f2f9f9;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p, a, li, span, div, textarea, input, label, select, td, caption, figcaption, button {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

h1 {
  font-size: clamp(1.28125rem, 1.2143rem + 0.3348vw, 1.75rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.125rem, 1.0804rem + 0.2232vw, 1.4375rem);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: clamp(0.9375rem, 0.9018rem + 0.1786vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1.125rem);
  font-weight: 400;
  line-height: 1.2;
}

p {
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1.125rem);
  line-height: 150%;
  font-weight: 300;
}

a, li, span, input, label, select, figcaption, button {
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1.125rem);
}

.small-text {
  font-size: clamp(0.75rem, 0.7232rem + 0.1339vw, 0.9375rem);
}

.attente {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  .attente {
    gap: 0.5rem;
  }
}
.attente .row-logo {
  margin-top: 20px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .attente .row-logo {
    width: 80%;
  }
}
.attente .row-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.attente .row-text {
  color: #192B2E;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.attente .row-text h1 {
  text-transform: uppercase;
}
.attente .row-text span {
  padding: 8px 32px;
  color: #ef6e48;
  border: 1px solid #ef6e48;
  border-radius: 5px;
  text-transform: uppercase;
  text-wrap: nowrap;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 600px) {
  .attente .row-text span {
    padding: 8px 16px;
  }
}
.attente .row-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .attente .row-media {
    padding: 0.5rem;
  }
}
.attente .row-media span {
  color: #ef6e48;
  text-transform: uppercase;
  text-align: center;
}
.attente .row-media ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 600px) {
  .attente .row-media ul {
    gap: 1.5rem;
  }
}
.attente .row-media ul li {
  list-style-type: none;
}
.attente .row-media ul li a {
  color: #ef6e48;
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .attente .row-media ul li a {
    font-size: 1.5rem;
  }
}

.btn {
  padding: 8px 16px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
}
@media screen and (max-width: 900px) {
  .btn {
    padding: 6px 16px;
  }
}
.btn__vert {
  background-color: #2e7372;
  color: #f2f9f9;
  -webkit-box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  -moz-box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  transition: all 1.4s ease;
  border: none;
}
.btn__vert:hover {
  background-color: #192B2E;
  transition: all 1s ease-out;
}
.btn__vertHome {
  background-color: #2e7372;
  color: #f2f9f9;
  transition: all 1.4s ease;
  border: none;
}
.btn__vertHome:hover {
  background-color: #192B2E;
  transition: all 1s ease-out;
}

.btn-text {
  color: #192B2E;
}
.btn-text:hover {
  color: #ef6e48;
}

.btn-overlay {
  background-color: transparent;
  border: none;
  color: #f2f9f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
}
.btn-overlay:hover {
  color: #ef6e48;
}

.titre-section {
  color: #ef6e48;
  padding: 0.5rem 1rem;
  position: relative;
  border-bottom: 2px solid #ef6e48;
  border-top: 2px solid #ef6e48;
  text-transform: uppercase;
  text-align: center;
  margin: 0.5rem 0;
}
@media screen and (max-width: 600px) {
  .titre-section {
    width: 90%;
  }
}
.titre-section::before, .titre-section::after {
  content: "";
  background-color: #ef6e48;
  width: 2px;
  height: 40%;
  position: absolute;
}
.titre-section::before {
  top: 0;
  left: 0;
}
.titre-section::after {
  bottom: 0;
  right: 0;
}

.separateur {
  width: 100%;
  height: 140px;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .separateur {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .separateur {
    padding: 30px 0;
  }
}
.separateur .img-separateur {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../assets/background/separateur-2500.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1280px) {
  .separateur .img-separateur {
    background-image: url("../assets/background/separateur-1440.svg");
  }
}
@media screen and (max-width: 900px) {
  .separateur .img-separateur {
    background-image: url("../assets/background/separateur-900.svg");
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .separateur .img-separateur {
    background-image: url("../assets/background/separateur-300.svg");
    padding: 30px 0;
  }
}

.scroll-up {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #f2f9f9;
  background-color: #2e7372;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .scroll-up {
    bottom: 40px;
  }
}

.box--cta {
  width: 90%;
  background-color: rgb(146, 202, 206);
  border: 1px solid rgb(221, 239, 240);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  text-align: center;
  margin: 1rem 0;
}
@media screen and (max-width: 900px) {
  .box--cta {
    padding: 1rem;
    gap: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .box--cta {
    padding: 0.5rem;
  }
}

.container--breadcrumb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem;
  background-color: rgb(221, 239, 240);
}
@media screen and (max-width: 900px) {
  .container--breadcrumb {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .container--breadcrumb {
    padding: 0.5rem;
  }
}
.container--breadcrumb__liste {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.container--breadcrumb__liste li {
  list-style-type: none;
}
.container--breadcrumb__liste li a {
  text-decoration: none;
  color: #192B2E;
  text-wrap: nowrap;
}
.container--breadcrumb__liste li a:hover {
  color: #ef6e48;
  text-decoration: underline;
}
.container--breadcrumb__liste li .current-link {
  color: #ef6e48;
  text-decoration: underline;
  text-wrap: wrap;
}

footer {
  width: 100%;
  height: 100%;
  padding: 40px 0;
  background-color: #192B2E;
  color: #f2f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
footer .footer--top {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
}
@media screen and (max-width: 1280px) {
  footer .footer--top {
    gap: 1rem;
  }
}
footer .footer--top .box-footer {
  width: calc(33% - 32px);
  min-width: 320px;
}
@media screen and (max-width: 600px) {
  footer .footer--top .box-footer {
    width: 100%;
    padding: 0.5rem;
  }
}
footer .footer--top .box-footer .container-titreFooter {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
footer .footer--top .box-footer .container-titreFooter::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #f2f9f9;
  height: 2px;
  width: 60%;
}
footer .footer--top .box-footer .container-titreFooter .titre-footer {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
}
footer .footer--top__left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
footer .footer--top__left .container-titreFooter img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
footer .footer--top__left .leftFooter-text {
  width: 100%;
}
@media screen and (max-width: 600px) {
  footer .footer--top__left .leftFooter-text {
    text-align: center;
  }
}
footer .footer--top__left .leftFooter-text p:nth-child(1) {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1rem;
}
footer .footer--top__left .leftFooter-plan {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
footer .footer--top__left .leftFooter-plan .closemap {
  display: none;
}
footer .footer--top__left .leftFooter-plan.show {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #192B2E;
  top: 0;
  left: 0;
  z-index: 6;
}
footer .footer--top__left .leftFooter-plan.show .closemap {
  display: flex;
  position: absolute;
  z-index: 6;
  top: 30px;
  right: 30px;
  margin: auto;
  width: 40px;
  cursor: pointer;
}
footer .footer--top__left .leftFooter-plan.show .closemap:hover .inner label {
  opacity: 1;
}
footer .footer--top__left .leftFooter-plan.show .closemap:hover .inner::after, footer .footer--top__left .leftFooter-plan.show .closemap:hover .inner::before {
  transform: rotate(0);
}
footer .footer--top__left .leftFooter-plan.show .closemap:hover .inner::before {
  top: 0;
}
footer .footer--top__left .leftFooter-plan.show .closemap:hover .inner::after {
  bottom: 0;
}
footer .footer--top__left .leftFooter-plan.show .closemap .inner {
  width: inherit;
  text-align: center;
}
footer .footer--top__left .leftFooter-plan.show .closemap .inner::before, footer .footer--top__left .leftFooter-plan.show .closemap .inner::after {
  position: absolute;
  content: "";
  height: 1px;
  width: inherit;
  background: #ef6e48;
  left: 0;
  transition: all 0.3s ease-in-out;
}
footer .footer--top__left .leftFooter-plan.show .closemap .inner::before {
  top: 50%;
  transform: rotate(45deg);
  transform-origin: center;
}
footer .footer--top__left .leftFooter-plan.show .closemap .inner::after {
  bottom: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
}
footer .footer--top__left .leftFooter-plan.show .closemap .inner label {
  font-size: 10px;
  line-height: 2em;
  text-transform: uppercase;
  color: #f2f9f9;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  background-color: transparent;
  cursor: pointer;
}
footer .footer--top__left .leftFooter-plan.show img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .footer--top__left .leftFooter-plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer--top__left .leftFooter-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer--top__left .leftFooter-media ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  footer .footer--top__left .leftFooter-media ul {
    justify-content: center;
  }
}
footer .footer--top__left .leftFooter-media ul li {
  list-style-type: none;
}
footer .footer--top__left .leftFooter-media ul li a {
  color: #f2f9f9;
  text-decoration: none;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}
footer .footer--top__left .leftFooter-media ul li p {
  text-transform: uppercase;
}
footer .footer--top__center {
  width: 100%;
}
footer .footer--top__center ul {
  width: 100%;
  padding: 1rem 0;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}
footer .footer--top__center ul li {
  list-style-type: none;
}
footer .footer--top__center ul li a {
  color: #f2f9f9;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}
footer .footer--top__center ul li a:hover {
  text-decoration: underline;
}
footer .footer--top__center ul li .current-link {
  color: #ef6e48;
  text-decoration: underline;
}
footer .footer--top__right {
  width: 100%;
}
footer .footer--top__right ul {
  width: 100%;
  padding: 1rem 0;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 600px) {
  footer .footer--top__right ul {
    padding: 0.5rem;
  }
}
footer .footer--top__right ul li {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid #f2f9f9;
}
footer .footer--top__right ul li:nth-last-child(1) {
  border-bottom: none;
}
footer .footer--top__right ul li .jour {
  text-transform: capitalize;
  margin-right: 0.5rem;
  font-weight: 500;
}
footer .footer--top__right ul li .urgence-texte {
  color: #ef6e48;
  margin-right: 0.5rem;
  font-weight: 500;
}
footer .footer--top__right ul li .urgence-tel {
  color: #ef6e48 !important;
}
footer .footer--top__right ul .urgence-group {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .footer--top__right .message {
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  footer .footer--top__right .message {
    padding: 0.5rem;
  }
}
footer .footer--bottom {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (max-width: 600px) {
  footer .footer--bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
footer .footer--bottom__right ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 600px) {
  footer .footer--bottom__right ul {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
}
footer .footer--bottom__right ul li {
  list-style-type: none;
}
footer .footer--bottom__right ul li a {
  color: #f2f9f9;
  cursor: pointer;
  text-decoration: none;
}
footer .footer--bottom__right ul li a:hover {
  text-decoration: underline;
}
footer .footer--bottom__right ul li .current-link {
  color: #ef6e48;
  text-decoration: underline;
}

.banner-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.banner-nav .container-logo {
  width: 200px;
  margin-left: 1rem;
}
@media screen and (max-width: 900px) {
  .banner-nav .container-logo {
    width: 180px;
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .banner-nav .container-logo {
    width: 150px;
    margin-top: 0.5rem;
  }
}
.banner-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateY(0);
  opacity: 1;
  position: relative;
  transition: all 0.6s ease-in;
}
@media screen and (max-width: 1280px) {
  .banner-nav nav {
    opacity: 0;
    position: absolute;
    right: 0;
    transform: translateY(-100vh);
    transition: all 0.6s ease-in;
  }
}
.banner-nav nav ul {
  display: flex;
  align-items: center;
  justify-content: start;
}
.banner-nav nav ul li {
  list-style-type: none;
  margin: 1rem;
  position: relative;
}
.banner-nav nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #192B2E;
  cursor: pointer;
  position: relative;
}
.banner-nav nav ul li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #ef6e48;
  position: absolute;
  transition: all 0.5s ease-in;
  bottom: -8px;
  left: 0;
}
.banner-nav nav ul li a:hover {
  color: #ef6e48;
}
.banner-nav nav ul li a:hover::after {
  width: 100%;
}
.banner-nav nav ul li a.current-page {
  color: #ef6e48;
}
.banner-nav nav ul li a.current-page::after {
  width: 100%;
}
.banner-nav nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f2f9f9;
  padding: 0.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner-nav nav ul li .sub-menu li {
  margin: 0;
  width: 100%;
}
.banner-nav nav ul li .sub-menu li a {
  color: #192B2E;
  display: block;
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.banner-nav nav ul li .sub-menu li a:hover {
  color: #ef6e48;
}
.banner-nav nav ul li .sub-menu li a:hover {
  color: #ef6e48;
}
.banner-nav nav ul li .sub-menu li a:hover::after {
  width: 0%;
}
.banner-nav nav ul li:hover > ul {
  display: block;
}
.banner-nav nav.show {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100vh;
  background: rgb(243, 250, 248);
  background: -moz-linear-gradient(180deg, rgb(243, 250, 248) 0%, rgb(239, 248, 246) 50%, rgb(176, 223, 217) 100%);
  background: -webkit-linear-gradient(180deg, rgb(243, 250, 248) 0%, rgb(239, 248, 246) 50%, rgb(176, 223, 217) 100%);
  background: linear-gradient(180deg, rgb(243, 250, 248) 0%, rgb(239, 248, 246) 50%, rgb(176, 223, 217) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3faf8", endColorstr="#b0dfd9", GradientType=1);
  opacity: 1;
  transform: translate(0);
}
.banner-nav nav.show ul {
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: center;
}
.banner-nav nav.show ul li {
  margin: 1rem;
  text-align: center;
}
.banner-nav nav.show ul li .sub-menu {
  position: relative;
  top: 0;
}
.banner-nav nav.show ul:hover > ul {
  display: block;
}
.banner-nav .container-menu {
  width: 50px;
  height: 50px;
  margin-right: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .banner-nav .container-menu {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .banner-nav .container-menu {
    margin: 0 0.5rem;
  }
}
.banner-nav .container-menu.show {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 6;
}
.banner-nav .container-menu .menu {
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}
.banner-nav .container-menu .menu .line {
  width: 100%;
  height: 1.5px;
  background-color: #192B2E;
  position: relative;
  transition: all 0.2s ease;
}
.banner-nav .container-menu .menu .line::after, .banner-nav .container-menu .menu .line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: #192B2E;
  transition: all 0.3s ease;
}
.banner-nav .container-menu .menu .line::after {
  top: 8px;
}
.banner-nav .container-menu .menu .line::before {
  bottom: 8px;
}
.banner-nav .container-menu .menu .menu-label {
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  position: absolute;
  bottom: -8px;
  opacity: 1;
  transition: all 0.6s ease-in;
}
.banner-nav .container-menu .menu .close-label {
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  position: absolute;
  bottom: -8px;
  opacity: 0;
  transition: all 0.6s ease-in;
}
.banner-nav .container-menu .menu.show .line {
  background-color: transparent;
}
.banner-nav .container-menu .menu.show .line::after {
  top: 0px;
  transform: rotate(45deg);
}
.banner-nav .container-menu .menu.show .line::before {
  bottom: 0px;
  transform: rotate(-45deg);
}
.banner-nav .container-menu .menu.show .menu-label {
  opacity: 0;
}
.banner-nav .container-menu .menu.show .close-label {
  opacity: 1;
}

.form-contact {
  width: 90%;
  background-color: transparent;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .form-contact {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .form-contact {
    padding: 0.5rem;
  }
}

.container--form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.container--form .form--contact {
  width: 80%;
  height: 100%;
  padding: 30px;
}
@media screen and (max-width: 900px) {
  .container--form .form--contact {
    width: 100%;
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact {
    padding: 5px;
  }
}
.container--form .form--contact fieldset {
  border: none;
}
.container--form .form--contact fieldset .bloc--form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.container--form .form--contact fieldset .bloc--form__input {
  width: 100%;
  height: 50px;
  display: flex;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__input {
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__input {
    height: 30px;
  }
}
.container--form .form--contact fieldset .bloc--form__input .icone {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #2e7372;
  color: #f2f9f9;
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__input .icone {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__input .icone {
    width: 30px;
    height: 30px;
  }
}
.container--form .form--contact fieldset .bloc--form__input .icone i {
  font-size: 1rem;
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__input .icone i {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__input .icone i {
    font-size: 0.7rem;
  }
}
.container--form .form--contact fieldset .bloc--form__input input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #3c908d;
  border-radius: 0px;
  background-color: rgb(221, 239, 240);
  color: #192B2E;
}
.container--form .form--contact fieldset .bloc--form__input input::placeholder {
  color: #192B2E;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .container--form .form--contact fieldset .bloc--form__input input::placeholder {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__input input::placeholder {
    font-size: 0.8rem;
  }
}
.container--form .form--contact fieldset .bloc--form__input input:placeholder-shown {
  color: #192B2E;
}
.container--form .form--contact fieldset .bloc--form__input input:focus-visible, .container--form .form--contact fieldset .bloc--form__input input :focus {
  outline: 1px solid #192B2E;
}
.container--form .form--contact fieldset .bloc--form__textarea {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 15px;
}
.container--form .form--contact fieldset .bloc--form__textarea textarea {
  width: 100%;
  border: none;
  color: #192B2E;
  background-color: rgb(221, 239, 240);
  font-weight: 400;
  font-size: 1rem;
  border: 0.5px solid #3c908d;
  border-radius: 5px;
  padding: 0.5rem;
}
@media screen and (max-width: 1280px) {
  .container--form .form--contact fieldset .bloc--form__textarea textarea {
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__textarea textarea {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__textarea textarea {
    font-size: 0.8rem;
  }
}
.container--form .form--contact fieldset .bloc--form__textarea textarea::placeholder {
  color: #192B2E;
  padding: 10px;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (max-width: 1280px) {
  .container--form .form--contact fieldset .bloc--form__textarea textarea::placeholder {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__textarea textarea::placeholder {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__textarea textarea::placeholder {
    font-size: 0.7rem;
    padding: 5px;
  }
}
.container--form .form--contact fieldset .bloc--form__textarea textarea:placeholder-shown {
  color: #192B2E;
}
.container--form .form--contact fieldset .bloc--form__textarea textarea:focus-visible, .container--form .form--contact fieldset .bloc--form__textarea textarea :focus {
  outline: 1px solid #192B2E;
}
.container--form .form--contact fieldset .bloc--form__consent {
  width: 100%;
  height: 100px;
}
.container--form .form--contact fieldset .bloc--form__consent .check--consent {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
  display: flex;
}
.container--form .form--contact fieldset .bloc--form__consent .check--consent__checkbox {
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container--form .form--contact fieldset .bloc--form__consent .check--consent__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  width: 20px;
  height: 20px;
  background: rgb(176, 223, 217);
  border: 1px solid #192B2E;
  border-radius: 5px;
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__consent .check--consent__checkbox input[type=checkbox] {
    width: 15px;
    height: 15px;
  }
}
.container--form .form--contact fieldset .bloc--form__consent .check--consent__checkbox input[type=checkbox]:checked {
  background: #f2f9f9;
  margin: 0px;
  position: relative;
}
.container--form .form--contact fieldset .bloc--form__consent .check--consent__checkbox input[type=checkbox]:checked:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: block;
  color: #8fd68f;
  font-size: 20px;
  position: absolute;
  top: -2px;
}
@media screen and (max-width: 900px) {
  .container--form .form--contact fieldset .bloc--form__consent .check--consent__checkbox input[type=checkbox]:checked:before {
    font-size: 15px;
  }
}
.container--form .form--contact fieldset .bloc--form__consent .check--consent__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
}
@media screen and (max-width: 600px) {
  .container--form .form--contact fieldset .bloc--form__consent .check--consent__text p {
    font-size: 0.7rem;
  }
}
.container--form .form--contact fieldset .bloc--submit {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.container--form .form--contact fieldset .bloc--submit .msgForm {
  width: 100%;
  height: auto;
  text-align: center;
  margin-bottom: 10px;
}
.container--form .form--contact fieldset .bloc--submit .msgForm p {
  width: 100%;
  height: auto;
  padding: 15px;
  background-color: transparent;
  color: #f82d2d;
}

#banner-cookies {
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #192B2E;
  color: #f2f9f9;
  z-index: 5;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  visibility: hidden;
}
@media screen and (max-width: 900px) {
  #banner-cookies {
    padding: 1rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  #banner-cookies {
    padding: 0.5rem;
  }
}
#banner-cookies .btns-cookies {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #banner-cookies .btns-cookies {
    padding: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}
#banner-cookies .btns-cookies a {
  margin: 0.5rem;
  background-color: rgb(221, 239, 240);
  color: #192B2E;
}
#banner-cookies .btns-cookies a:hover {
  background-color: #2e7372;
  color: #ef6e48;
}
#banner-cookies .btns-cookies .btn-text {
  background-color: transparent;
  color: rgb(221, 239, 240);
}
#banner-cookies .btns-cookies .btn-text:hover {
  background-color: transparent;
  color: #ef6e48;
}

.FAQ {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .FAQ {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .FAQ {
    padding: 0.5rem;
  }
}
.FAQ .box-qr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1rem;
}
.FAQ .box-qr .question {
  width: 95%;
  background-color: #2e7372;
  color: #f2f9f9;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.FAQ .box-qr .question .icone-faq {
  margin: 0 0.5rem;
}
.FAQ .box-qr .question.showAnswer .icone-faq {
  transform: rotate(180deg);
}
.FAQ .box-qr .answer {
  width: 95%;
  overflow: hidden;
  max-height: 0;
  background-color: rgb(221, 239, 240);
}
.FAQ .box-qr .answer p {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.FAQ .box-qr .answer.showAnswer {
  max-height: 100%;
}

.section-allFaq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .section-allFaq {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section-allFaq {
    padding: 0.5rem;
    width: 100%;
  }
}
.section-allFaq .selectCategorie-Faq {
  width: 100%;
  padding: 0 0.5rem;
}
.section-allFaq .selectCategorie-Faq .panel-btns {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.section-allFaq .selectCategorie-Faq .panel-btns .category-btn {
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  color: #2e7372;
  background-color: transparent;
}
@media screen and (max-width: 600px) {
  .section-allFaq .selectCategorie-Faq .panel-btns .category-btn {
    margin: 0.5rem;
  }
}
.section-allFaq .selectCategorie-Faq .panel-btns .active {
  transform: scale(1.1);
  font-weight: 900;
  text-decoration: underline;
}
.section-allFaq .box-categorieFaq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-allFaq .box-categorieFaq .boxtitle-categoriefaq {
  margin: 2rem 0;
}
.section-allFaq .box-categorieFaq .boxtitle-categoriefaq h3 {
  width: 100%;
  text-align: center;
  background-color: #2e7372;
  color: #f2f9f9;
  padding: 1rem 0.5rem;
  text-transform: uppercase;
}
.section-allFaq .box-categorieFaq .container-qrCategorie {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1rem;
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr .question {
  width: 95%;
  background-color: #2e7372;
  color: #f2f9f9;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr .question .icone-faq {
  margin: 0 0.5rem;
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr .question.showAnswer .icone-faq {
  transform: rotate(180deg);
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr .answer {
  width: 95%;
  overflow: hidden;
  max-height: 0;
  background-color: rgb(221, 239, 240);
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr .answer p {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.section-allFaq .box-categorieFaq .container-qrCategorie .box-qr .answer.showAnswer {
  max-height: 100%;
}

.article {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1300px;
}
@media screen and (max-width: 900px) {
  .article {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .article {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.article .article--title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(221, 239, 240);
  padding: 1rem;
  position: relative;
  margin-top: 50px;
}
.article .article--title h1 {
  text-transform: uppercase;
  text-align: center;
}
.article .article--title .event--date {
  position: absolute;
  top: -20px;
  left: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.article .article--title .event--date p {
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px solid rgb(176, 223, 217);
  background-color: #3c908d;
  color: #f2f9f9;
}
.article .article--title .event--tag {
  position: absolute;
  top: -15px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.article .article--title .event--tag p {
  text-transform: uppercase;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px solid rgb(176, 223, 217);
  background-color: #3c908d;
  color: #f2f9f9;
}
.article .article--content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem;
}
.article .article--share {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.article .article--share a {
  color: #192B2E;
}
.article .article--share a:hover {
  color: #ef6e48;
}

.row--textImg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1300px;
}
@media screen and (max-width: 900px) {
  .row--textImg {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .row--textImg {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.row--textImg h2 {
  width: 100%;
  text-transform: uppercase;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .row--textImg h2 {
    text-align: center;
  }
}
.row--textImg .container-textImgArticle {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .row--textImg .container-textImgArticle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.row--textImg .container-textImgArticle .img-article {
  float: right;
  max-width: 400px;
  margin: 0 1.5rem;
}
@media screen and (max-width: 900px) {
  .row--textImg .container-textImgArticle .img-article {
    max-width: 290px;
    margin: 0.8rem 1rem;
  }
}

.row--text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1rem;
  padding: 2rem 1rem;
  max-width: 1300px;
}
@media screen and (max-width: 900px) {
  .row--text {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .row--text {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.row--text h2 {
  width: 100%;
  text-transform: uppercase;
  text-align: left;
}
.row--text .container-textArticle {
  width: 100%;
  margin: 0.5rem 0;
}

.row-Imgs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
@media screen and (max-width: 600px) {
  .row-Imgs {
    padding: 0.5rem 0;
  }
}
.row-Imgs .box-img {
  width: 30%;
  aspect-ratio: 16/9;
}
.row--tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
@media screen and (max-width: 600px) {
  .row--tab {
    padding: 0.5rem 0;
  }
}
.row--tab h2 {
  width: 100%;
  text-transform: uppercase;
  text-align: left;
  margin: 0.5rem 0;
}
.row--tab .container-tabArticle {
  margin: 0.5rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.row--tab .container-tabArticle .tabArticle-liste {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid #2e7372;
  margin-bottom: 1rem;
}
.row--tab .container-tabArticle .tabArticle-liste .tab-titre {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  list-style-type: none;
  border-bottom: 1px solid #2e7372;
  padding: 0.5rem;
}
.row--tab .container-tabArticle .tabArticle-liste .tab-cell {
  padding: 0.5rem;
  width: 20%;
  list-style-type: none;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .row--tab .container-tabArticle .tabArticle-liste .tab-cell {
    width: 33%;
  }
}

.h3-article {
  margin: 0.7rem 0.3rem;
}

.h4-article {
  margin: 0.7rem 0.3rem;
  font-weight: 400;
}

.text-article {
  width: 100%;
  text-align: justify;
  margin: 0.2rem 0 0.2rem 0.5rem;
}
.text-article .link-article {
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1.125rem);
  font-weight: 300;
  text-align: justify;
}

.liste-article {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}
.liste-article li {
  width: 100%;
  list-style-type: none;
  font-weight: 300;
}
.liste-article ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.liste-article ul li {
  list-style-type: circle;
  padding: 0.3rem;
}

.card--image {
  position: relative;
  width: 300px;
  height: 380px;
  border-radius: 5px;
  position: relative;
}
.card--image .tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1px 5px;
  background-color: #2e7372;
  color: #f2f9f9;
  border-radius: 5px;
  border: 1px solid rgb(146, 202, 206);
  z-index: 2;
  text-transform: uppercase;
}
.card--image__background {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.card--image__date {
  padding: 4px 8px;
  border-radius: 5px;
  position: absolute;
  top: -15px;
  left: -15px;
  color: #f2f9f9;
  background-color: rgba(59, 117, 127, 0.9);
  border: 1px solid rgb(146, 202, 206);
}
.card--image__boxDdescription {
  width: 90%;
  max-height: 250px;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #f2f9f9;
  background-color: rgba(59, 117, 127, 0.9);
  border: 1px solid rgb(146, 202, 206);
  border-radius: 5px;
}
.card--image__boxDdescription .titre-carte {
  width: 100%;
  max-height: 45px;
  margin-bottom: 4px;
  text-align: center;
  overflow: hidden;
  font-weight: 500;
}
.card--image__boxDdescription .description-carte {
  width: 100%;
  max-height: 155px;
  text-align: left;
  margin-bottom: 4px;
  overflow: hidden;
}
.card--image__boxDdescription .link-carte {
  width: 100%;
  display: block;
  text-align: end;
  color: #f2f9f9;
  margin-bottom: 4px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.card--texte {
  position: relative;
  width: 300px;
  border-radius: 5px;
  background-color: rgb(176, 223, 217);
  border: 1px solid rgb(146, 202, 206);
  padding: 30px 0.5rem 40px 0.5rem;
  text-decoration: none;
  color: #192B2E;
  cursor: pointer;
}
.card--texte__tag {
  position: absolute;
  top: 0;
  right: 10px;
  text-transform: capitalize;
}
.card--texte__titre {
  width: 100%;
  max-height: 50px;
  overflow: hidden;
  text-align: center;
  font-weight: 500;
}
.card--texte__description {
  width: 100%;
  max-height: 175px;
  overflow: hidden;
}
.card--texte__info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2px;
}

.headerHome--section {
  width: 100%;
  height: 100%;
  padding: 150px 15% 150px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-image: url("../assets/background/bckg-home.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .headerHome--section {
    padding: 150px 10% 150px 0;
  }
}
@media screen and (max-width: 900px) {
  .headerHome--section {
    padding: 120px 8% 120px 0;
  }
}
@media screen and (max-width: 600px) {
  .headerHome--section {
    padding: 80px 0;
    align-items: center;
  }
}
.headerHome--section .headerHome--landing {
  background-color: rgba(59, 117, 127, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .headerHome--section .headerHome--landing {
    width: 90%;
  }
}
.headerHome--section .headerHome--landing__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 600px) {
  .headerHome--section .headerHome--landing__title {
    padding: 1rem 0.5rem;
    gap: 1rem;
  }
}
.headerHome--section .headerHome--landing__title .title {
  width: 100%;
  text-transform: uppercase;
  text-wrap: wrap;
  text-align: center;
  color: #f2f9f9;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 150%;
  font-size: clamp(1.25rem, 1.2143rem + 0.1786vw, 1.5rem);
}
.headerHome--section .headerHome--landing__title .sub-title {
  text-align: center;
  color: #f2f9f9;
  font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 1.5px;
}
.headerHome--section .headerHome--landing__title .sub-title .first-letterColor {
  color: #F49E7B;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.375rem);
  letter-spacing: 1.5px;
}
.headerHome--section .headerHome--landing__title .sub-title .formatColor-title {
  text-transform: uppercase;
  color: #F49E7B;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.headerHome--section .headerHome--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.welcome-title {
  width: 100%;
  background: rgb(60, 144, 141);
  background: -moz-linear-gradient(180deg, rgba(60, 144, 141, 0.5466780462) 0%, rgb(46, 115, 114) 100%);
  background: -webkit-linear-gradient(180deg, rgba(60, 144, 141, 0.5466780462) 0%, rgb(46, 115, 114) 100%);
  background: linear-gradient(180deg, rgba(60, 144, 141, 0.5466780462) 0%, rgb(46, 115, 114) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3c908d",endColorstr="#2e7372",GradientType=1);
}
.welcome-title h1 {
  text-align: center;
  padding: 1rem 0.5rem;
  line-height: 150%;
  color: #f2f9f9;
}

.section--welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  padding: 2rem 1rem;
  gap: 2rem;
}
@media screen and (max-width: 1280px) {
  .section--welcome {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--welcome {
    padding: 0.5rem;
  }
}
.section--welcome__img {
  width: 300px;
  height: 450px;
  background-image: url("../assets/background/welcome.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  -moz-box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  box-shadow: 0 0 5px 1px rgb(221, 239, 240);
}
@media screen and (max-width: 600px) {
  .section--welcome__img {
    width: 280px;
    height: 420px;
  }
}
.section--welcome__texte {
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .section--welcome__texte {
    width: 100%;
    padding: 16px;
  }
}
@media screen and (max-width: 600px) {
  .section--welcome__texte {
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
}
.section--welcome__texte h2 {
  align-self: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1280px) {
  .section--welcome__texte h2 {
    margin-bottom: 2rem;
  }
}
.section--welcome__texte .btn-cta {
  align-self: flex-end;
  margin-top: 2rem;
}

.section--prestation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 600px) {
  .section--prestation {
    gap: 0.5rem;
  }
}
.section--prestation__presentation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.section--prestation__presentation .container-prestationImg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 600px) {
  .section--prestation__presentation .container-prestationImg {
    gap: 0.5rem;
    justify-content: space-around;
  }
}
.section--prestation__presentation .container-prestationImg .prestationImg {
  width: 300px;
  height: 300px;
  max-width: 300px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  -moz-box-shadow: 0 0 5px 1px rgb(221, 239, 240);
  box-shadow: 0 0 5px 1px rgb(221, 239, 240);
}
@media screen and (max-width: 600px) {
  .section--prestation__presentation .container-prestationImg .prestationImg {
    width: 143px;
    height: 143px;
  }
}
.section--prestation__presentation .container-prestationImg .prestationImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}
.section--prestation__presentation .prestation-texte {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  gap: 1rem;
  padding: 1rem;
}
.section--prestation__presentation .prestation-texte p {
  margin-bottom: 1rem;
}
.section--prestation__listePrestation {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (max-width: 600px) {
  .section--prestation__listePrestation {
    justify-content: flex-start;
  }
}
.section--prestation__listePrestation .groupe--btnPrestation {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(221, 239, 240);
  border-radius: 5px;
  border: none;
  border-left: 8px solid rgb(146, 202, 206);
  gap: 5px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.section--prestation__listePrestation .groupe--btnPrestation:hover {
  background: rgb(135, 203, 197);
  background: -moz-linear-gradient(90deg, rgb(135, 203, 197) 0%, rgb(157, 214, 208) 48%, rgb(176, 223, 217) 100%);
  background: -webkit-linear-gradient(90deg, rgb(135, 203, 197) 0%, rgb(157, 214, 208) 48%, rgb(176, 223, 217) 100%);
  background: linear-gradient(90deg, rgb(135, 203, 197) 0%, rgb(157, 214, 208) 48%, rgb(176, 223, 217) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87cbc5",endColorstr="#b0dfd9",GradientType=1);
  border-left: 8px solid #2e7372;
  transition: all 0.6s ease-in-out;
}
@media screen and (max-width: 600px) {
  .section--prestation__listePrestation .groupe--btnPrestation {
    width: 100%;
    justify-content: start;
  }
}
.section--prestation__listePrestation .groupe--btnPrestation span {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .section--prestation__listePrestation .groupe--btnPrestation span {
    width: 20px;
    height: 20px;
  }
}
.section--prestation__listePrestation .groupe--btnPrestation p {
  color: #192B2E;
  text-transform: capitalize;
  font-weight: 500;
}
.section--prestation__listePrestation .groupe--btnPrestation .chien {
  background-image: url("../assets/icones/chien.png");
}
.section--prestation__listePrestation .groupe--btnPrestation .nac {
  background-image: url("../assets/icones/nac.png");
}
.section--prestation__listePrestation .groupe--btnPrestation .vaccination {
  background-image: url("../assets/icones/vaccination.png");
}
.section--prestation__listePrestation .groupe--btnPrestation .bio {
  background-image: url("../assets/icones/analyse.png");
}
.section--prestation__listePrestation .groupe--btnPrestation .chirurgie {
  background-image: url("../assets/icones/chirurgie.png");
}
.section--prestation__listePrestation .groupe--btnPrestation .imagerie {
  background-image: url("../assets/icones/imagerie.png");
}
.section--prestation__listePrestation .groupe--btnPrestation .urgences {
  background-image: url("../assets/icones/urgences.png");
}
.section--prestation__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .section--prestation__cta {
    justify-content: center;
  }
}
.section--prestation__photos {
  width: 100%;
  max-width: 1440px;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.section--prestation__photos .box-photo {
  width: 33%;
  aspect-ratio: 1.5/1;
  max-width: 300px;
  border-radius: 5px;
}
.section--prestation__photos .box-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--event {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.section--event__events {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 900px) {
  .section--event__events {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--event__events {
    padding: 0.5rem;
  }
}
.section--event__texte {
  width: 100%;
  max-width: 1440px;
  text-wrap: wrap;
  padding: 1rem;
  text-align: center;
}
.section--event__texte p {
  margin-bottom: 1rem;
}
.section--event__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .section--event__cta {
    justify-content: center;
  }
}

.section--articles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.section--articles__articles {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.section--articles__texte {
  width: 100%;
  max-width: 1440px;
  text-wrap: wrap;
  padding: 1rem;
  text-align: center;
}
.section--articles__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .section--articles__cta {
    justify-content: center;
  }
}

.header--conseils {
  background-image: url("../assets/background/bckg-conseils.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--conseils {
    background-image: url("../assets/background/bckg-conseils-min.webp");
  }
}

.message--conseils {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .message--conseils {
    padding: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .message--conseils {
    padding: 0.5rem;
    text-align: center;
  }
}
.message--conseils p {
  max-width: 1000px;
}

.conseils-articles .articles {
  align-items: stretch;
}
.conseils-articles .articles .card--texte {
  width: calc(32% - 1rem);
}
@media screen and (max-width: 900px) {
  .conseils-articles .articles .card--texte {
    width: calc(40% - 1rem);
  }
}
@media screen and (max-width: 600px) {
  .conseils-articles .articles .card--texte {
    width: 100%;
  }
}
.conseils-articles .articles .card--texte__titre {
  text-align: left;
}

.hidden-section {
  display: none;
}

.header--contact {
  background-image: url("../assets/background/bckg-contact.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--contact {
    background-image: url("../assets/background/bckg-contact-min.webp");
  }
}

.message--contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 0.5rem;
}
@media screen and (max-width: 900px) {
  .message--contact {
    padding: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .message--contact {
    padding: 0.5rem;
    text-align: center;
  }
}

.section--form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section--information {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section--information .container--info {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .section--information .container--info {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--information .container--info {
    width: 100%;
    padding: 0.5rem;
  }
}
.section--information .container--info h3 {
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section--information .container--info .box--info {
  background-color: rgb(221, 239, 240);
  border: 1px solid #3c908d;
  padding: 1rem;
  border-radius: 5px;
  width: calc(100% - 1rem);
  max-width: 800px;
  min-width: 280px;
}
.section--information .container--info .box--info ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.section--information .container--info .box--info ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.section--information .container--info .box--info ul li p {
  width: auto;
  color: #192B2E;
}
.section--information .container--info__coordonnees li {
  list-style-type: none;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.section--information .container--info__coordonnees li .icone {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--information .container--info__horaires ul {
  margin-bottom: 1rem;
}
.section--information .container--info__horaires ul li {
  align-items: center;
  width: 100%;
}
.section--information .container--info__horaires ul li .jour {
  text-transform: capitalize;
  text-wrap: nowrap;
  width: 40%;
  font-weight: 500;
}
.section--information .container--info__horaires ul li .heures {
  text-align: end;
  width: 60%;
}
.section--information .container--info__map .map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.section--information .container--info__map .map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.header--clinique {
  background-image: url("../assets/background/bckg-clinique.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--clinique {
    background-image: url("../assets/background/bckg-clinique-min.webp");
  }
}

.section--clinique {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .section--clinique {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--clinique {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.section--clinique .container--presentation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 0;
}
.section--clinique .container--presentation .box--presentation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
}
@media screen and (max-width: 600px) {
  .section--clinique .container--presentation .box--presentation {
    gap: 1rem;
  }
}
.section--clinique .container--presentation .box--presentation__titre {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  text-transform: uppercase;
  color: #f2f9f9;
  background-color: rgba(59, 117, 127, 0.9);
}
.section--clinique .container--presentation .box--presentation__texte {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.section--clinique .container--presentation .box--presentation__texte h4 {
  margin-top: 0.5rem;
  font-weight: 500;
}
.section--clinique .container--presentation .box--presentation__texte ul li {
  list-style-type: none;
  margin-left: 5px;
}
.section--clinique .container--presentation .box--presentation__img {
  width: 100%;
  min-width: 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0.5rem;
}
.section--clinique .container--presentation .box--presentation__img .box-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--clinique .container--presentation .box--presentation__img .box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section--clinique .container--presentation .box--presentation__img .portrait {
  width: 95%;
  max-width: 300px;
  aspect-ratio: 3/4;
}
.section--clinique .container--presentation .box--presentation__img .paysage {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
}

.section--team {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .section--team {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--team {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.section--team .container--team {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 900px) {
  .section--team .container--team {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--team .container--team {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.section--team .container--team .box--team {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
}
.section--team .container--team .box--team__titre {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  text-transform: uppercase;
  color: #f2f9f9;
  background-color: rgba(59, 117, 127, 0.9);
}
.section--team .container--team .box--team__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.section--team .container--team .box--team__cards .card--team {
  width: 280px;
  height: 340px;
  border-radius: 5px;
  border: 1.5px solid rgb(146, 202, 206);
  position: relative;
  cursor: pointer;
}
.section--team .container--team .box--team__cards .card--team__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--team .container--team .box--team__cards .card--team__titre {
  background-color: rgba(59, 117, 127, 0.9);
  width: 95%;
  padding: 1rem;
  color: #f2f9f9;
  border: 1px solid rgb(146, 202, 206);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.section--team .container--team .box--team__cards .card--team__overlay {
  position: absolute;
  background-color: rgba(59, 117, 127, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  color: #f2f9f9;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section--team .container--team .box--team__cards .card--team__overlay .team-texte {
  text-align: center;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.section--team .container--team .box--team__cards .card--team:hover .card--team__overlay, .section--team .container--team .box--team__cards .card--team:active .card--team__overlay {
  opacity: 1;
}
.section--team .container--team .box--team__cards .card--team:hover .card--team__overlay .team-texte, .section--team .container--team .box--team__cards .card--team:active .card--team__overlay .team-texte {
  opacity: 1;
}

.section--equipements {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .section--equipements {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--equipements {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.section--equipements .container--presentation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 0;
}
.section--equipements .container--presentation .box--presentation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
}
@media screen and (max-width: 600px) {
  .section--equipements .container--presentation .box--presentation {
    gap: 1rem;
  }
}
.section--equipements .container--presentation .box--presentation__titre {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  text-transform: uppercase;
  color: #f2f9f9;
  background-color: rgba(59, 117, 127, 0.9);
}
.section--equipements .container--presentation .box--presentation__texte {
  width: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 600px) {
  .section--equipements .container--presentation .box--presentation__texte {
    width: 100%;
  }
}
.section--equipements .container--presentation .box--presentation__texte h4 {
  margin-top: 0.5rem;
}
.section--equipements .container--presentation .box--presentation__img {
  width: 40%;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .section--equipements .container--presentation .box--presentation__img {
    width: 100%;
  }
}
.section--equipements .container--presentation .box--presentation__img .portrait {
  width: 320px;
  aspect-ratio: 3/4;
  border-radius: 5px;
}
.section--equipements .container--presentation .box--presentation__img .paysage {
  width: 320px;
  aspect-ratio: 4/3;
  border-radius: 5px;
}

.header--prestations {
  background-image: url("../assets/background/bckg-prestations.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--prestations {
    background-image: url("../assets/background/bckg-prestations-min.webp");
  }
}

.section--prestation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .section--prestation {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--prestation {
    padding: 0.5rem;
    width: 100%;
  }
}
.section--prestation .panel-prestation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1440px;
  padding: 0.5rem;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  .section--prestation .panel-prestation {
    padding: 0.5rem 0;
    gap: 0.75rem;
    justify-content: center;
    align-items: stretch;
  }
}
.section--prestation .panel-prestation .btn-panel {
  text-transform: capitalize;
  border: none;
  background-color: rgb(146, 202, 206);
  color: #192B2E;
  padding: 5px 8px;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  .section--prestation .panel-prestation .btn-panel {
    width: 45%;
  }
}
.section--prestation .panel-prestation .btn-panel:hover {
  background-color: #2e7372;
  color: #f2f9f9;
}
.section--prestation .panel-prestation .active {
  background-color: #2e7372;
  color: #f2f9f9;
}

.container--prestations {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .container--prestations {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .container--prestations {
    padding: 0.5rem;
  }
}
.container--prestations .content-prestation {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  background-color: rgb(221, 239, 240);
  border-radius: 5px;
}
.container--prestations .content-prestation h3 {
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  background-color: #2e7372;
  color: #f2f9f9;
  text-transform: uppercase;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.container--prestations .content-prestation p {
  padding: 0px 0.5rem;
}
@media screen and (max-width: 600px) {
  .container--prestations .content-prestation p {
    text-align: left;
  }
}
.container--prestations .content-prestation p:nth-last-child(1) {
  margin-bottom: 0.5rem;
}
.container--prestations .content-prestation ul {
  width: 100%;
}
.container--prestations .content-prestation ul li {
  list-style-type: none;
  padding: 0px 0.5rem;
  margin-left: 0.5rem;
}
.container--prestations .content-prestation .box--prestationImg {
  width: 100%;
  min-width: 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.container--prestations .content-prestation .box--prestationImg .box-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container--prestations .content-prestation .box--prestationImg .box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container--prestations .content-prestation .box--prestationImg .portrait {
  width: 95%;
  max-width: 300px;
  aspect-ratio: 3/4;
}
.container--prestations .content-prestation .box--prestationImg .paysage {
  width: 95%;
  max-width: 600px;
  aspect-ratio: 16/9;
}
.container--prestations .hidden-category {
  display: none;
}

.header--evenement {
  background-image: url("../assets/background/bckg-evenement.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--evenement {
    background-image: url("../assets/background/bckg-evenement-min.webp");
  }
}

.section--events {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .section--events {
    padding: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--events {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
.section--events .container--events {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header--teamVet {
  background-image: url("../assets/background/bckg-equipe-veto.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--teamVet {
    background-image: url("../assets/background/bckg-equipe-veto-min.webp");
  }
}

.header--teamAsv {
  background-image: url("../assets/background/bckg-equipe-asv.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--teamAsv {
    background-image: url("../assets/background/bckg-equipe-asv-min.webp");
  }
}

.section--teamVet {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .section--teamVet {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section--teamVet {
    padding: 0.5rem;
    width: 100%;
  }
}

.container--team {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 900px) {
  .container--team {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .container--team {
    padding: 0.5rem;
  }
}
.container--team .content--team {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  background-color: rgb(221, 239, 240);
  border-radius: 5px;
}
.container--team .content--team__titre {
  width: 100%;
}
.container--team .content--team__titre h3 {
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  background-color: #2e7372;
  color: #f2f9f9;
  text-transform: uppercase;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.container--team .content--team__texte {
  width: 60%;
}
@media screen and (max-width: 900px) {
  .container--team .content--team__texte {
    width: 100%;
  }
}
.container--team .content--team__texte p {
  padding: 0px 0.5rem;
}
@media screen and (max-width: 600px) {
  .container--team .content--team__texte p {
    text-align: justify;
  }
}
.container--team .content--team__texte p:nth-last-child(1) {
  margin-bottom: 0.5rem;
}
.container--team .content--team__texte ul {
  width: 100%;
}
.container--team .content--team__texte ul li {
  list-style-type: none;
  padding: 0px 0.5rem;
  margin-left: 0.5rem;
}
.container--team .content--team__img {
  width: 30%;
  min-width: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.container--team .content--team__img img {
  width: 80%;
  aspect-ratio: 2/3;
  object-fit: contain;
}
.container--team .hidden-category {
  display: none;
}
.container--team__navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.5rem;
}

.content--annexes {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 900px) {
  .content--annexes {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .content--annexes {
    padding: 0.5rem;
  }
}
.content--annexes__titre {
  width: 100%;
  text-align: center;
  margin: 1.5rem 0;
}
.content--annexes__content {
  width: 100%;
  padding: 0.5rem;
  margin: 1.5rem 0;
}
.content--annexes__content .container--subsection {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}
.content--annexes__content .container--subsection h2 {
  background-color: rgb(221, 239, 240);
  width: 100%;
  padding: 0.5rem;
  margin: 1rem 0;
}
.content--annexes__content .container--subsection ul {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  padding-left: 1rem;
  margin: 1rem 0 1rem 1rem;
}
.content--annexes__content .container--subsection ul li {
  list-style-type: decimal;
  margin: 0.5rem 0;
}

.header--referer {
  background-image: url("../assets/background/bckg-referer.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--referer {
    background-image: url("../assets/background/bckg-referer-min.webp");
  }
}

.message--referer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 0.5rem;
}
@media screen and (max-width: 900px) {
  .message--referer {
    padding: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .message--referer {
    padding: 0.5rem;
    text-align: center;
  }
}

#referer-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 2rem 0;
}
#referer-form fieldset {
  width: 100%;
  min-width: 310px;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  color: #192B2E;
  border: 1px solid #3c908d;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  #referer-form fieldset {
    justify-content: center;
  }
}
#referer-form fieldset legend {
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0.5rem;
}
#referer-form fieldset p {
  width: 100%;
  text-align: center;
}
#referer-form fieldset .group-input {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 2rem);
  min-width: 280px;
  gap: 0.5rem;
}
#referer-form fieldset .group-input input {
  flex: 2;
  min-width: 280px;
  border: none;
  border-bottom: 1.5px solid #2e7372;
  background-color: rgb(176, 223, 217);
  cursor: pointer;
  padding: 2px;
}
#referer-form fieldset .group-input input:hover, #referer-form fieldset .group-input input:focus {
  background-color: #FEF3EE;
}
#referer-form fieldset .group-input input:focus-visible, #referer-form fieldset .group-input input :focus {
  outline: 1px solid #192B2E;
}
#referer-form fieldset .group-checkbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
}
#referer-form fieldset .group-checkbox input[type=checkbox] {
  cursor: pointer;
}
#referer-form fieldset .group-radio {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
}
#referer-form fieldset .group-radio label {
  cursor: pointer;
}
#referer-form fieldset .group-radio label:hover {
  color: #ef6e48;
}
#referer-form fieldset .group-radio input[type=radio] {
  cursor: pointer;
}
#referer-form fieldset .group-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
#referer-form fieldset .group-area label {
  width: 100%;
  background-color: rgb(146, 202, 206);
  color: #192B2E;
}
#referer-form fieldset .group-area textarea {
  width: 100%;
  border: none;
  background-color: rgb(176, 223, 217);
  cursor: pointer;
}
#referer-form fieldset .group-area textarea:hover, #referer-form fieldset .group-area textarea:focus {
  background-color: #FEF3EE;
}
#referer-form .group-consent {
  width: 100%;
  height: 40px;
  display: flex;
}
@media screen and (max-width: 900px) {
  #referer-form .group-consent {
    height: 30px;
  }
}
@media screen and (max-width: 600px) {
  #referer-form .group-consent {
    height: 20px;
  }
}
#referer-form .group-consent .icone {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #2e7372;
  color: #f2f9f9;
}
@media screen and (max-width: 900px) {
  #referer-form .group-consent .icone {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 600px) {
  #referer-form .group-consent .icone {
    width: 20px;
    height: 20px;
  }
}
#referer-form .group-consent .icone i {
  font-size: 1rem;
}
@media screen and (max-width: 900px) {
  #referer-form .group-consent .icone i {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  #referer-form .group-consent .icone i {
    font-size: 0.7rem;
  }
}
#referer-form .group-consent input {
  width: 100%;
  height: 40px;
  display: flex;
  margin-bottom: 15px;
  border: none;
  border-bottom: 1.5px solid #2e7372;
  background-color: rgb(176, 223, 217);
  cursor: pointer;
  padding: 2px;
}
#referer-form .group-consent input:hover, #referer-form .group-consent input:focus {
  background-color: #FEF3EE;
}
#referer-form .group-consent input:focus-visible, #referer-form .group-consent input :focus {
  outline: 1px solid #192B2E;
}
@media screen and (max-width: 900px) {
  #referer-form .group-consent input {
    height: 30px;
  }
}
@media screen and (max-width: 600px) {
  #referer-form .group-consent input {
    height: 20px;
  }
}
#referer-form .group-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#referer-form .group-checkbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  background-color: transparent;
}
#referer-form .group-checkbox input[type=checkbox] {
  cursor: pointer;
}

.header--faq {
  background-image: url("../assets/background/bckg-faq.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .header--faq {
    background-image: url("../assets/background/bckg-faq-min.webp");
  }
}

.section--faqPage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

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