@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.woff2");
  font-display: swap;
}
@font-face {
  font-family: "Oleo";
  src: url("../fonts/OleoScript.woff2");
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
  overflow-x: hidden;
}

* {
  margin: 0;
}

body {
  line-height: 1.6;
  background-color: #FFF1D7;
  font-family: "Montserrat";
  overflow-x: hidden;
}
body h2, body p {
  font-size: 1.2rem;
  color: rgba(38, 20, 8, 0.5764705882);
}
@media (min-width: 768px) {
  body h2, body p {
    font-size: 1.2rem;
  }
}
body .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(210, 122, 78, 0.5215686275);
  font-size: 1.4rem;
  padding: 0.2rem 0;
  text-align: center;
  color: #F5E6DA;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.8rem;
  text-shadow: 1px 1px 0 #A7CFA7, -1px 1px 0 #A7CFA7, 1px -1px 0 #A7CFA7, -1px -1px 0 #A7CFA7, 0 5px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  body .section-title {
    font-size: 1.6rem;
  }
}

.menu-open .swiper-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
  height: 100vh;
}

.container {
  width: 100%;
  padding: 0 0.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

a {
  text-decoration: none;
  font-family: "Montserrat";
}

.grid {
  display: grid;
}
@media (min-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 1.5rem;
  }
}

p.center {
  text-align: center;
}

.plan_site {
  min-height: 45vh;
}
.plan_site h1 {
  margin-top: 0.8rem;
}
.plan_site .ul_container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.plan_site .ul_container ul {
  height: 100%;
  width: 85%;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-items: center;
}
.plan_site .ul_container ul li {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 1.2rem 0;
  overflow-y: hidden;
}
.plan_site .ul_container ul li:last-child {
  grid-area: 3/1;
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
}
.plan_site .ul_container ul li i {
  color: rgba(210, 122, 78, 0.5215686275);
  margin-right: 0.2rem;
  height: 100%;
}
.plan_site .ul_container ul a {
  display: flex;
  align-items: baseline;
  color: rgba(38, 20, 8, 0.5764705882);
  font-size: 1.2rem;
  overflow-y: hidden;
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  width: 100%;
  min-height: clamp(18rem, 40vh, 28rem);
  padding: 0.01rem 0;
  height: auto;
}
@media screen and (min-width: 767px) {
  header {
    background: linear-gradient(to right, #fed84d 0%, #fed84d 45%, #ff8846 60%, #ff8846 100%);
    justify-content: center;
  }
  header .logo.only-desktop {
    position: absolute;
    left: 10px;
    top: 25%;
  }
  header .logo.only-desktop img {
    width: clamp(140px, 12vw, 220px);
    max-width: none; /* on laisse clamp gérer */
  }
}
@media (max-width: 760px) {
  header {
    justify-content: flex-start;
    gap: 0.75rem;
    padding-top: 0.75rem;
    min-height: clamp(16rem, 35svh, 22rem);
  }
  header .logo.only-mobile {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  header .logo.only-mobile img {
    width: clamp(90px, 28vw, 140px);
  }
  header .logo.only-desktop {
    display: none;
  }
  header .hero-carousel {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 480px) {
  header {
    min-height: clamp(14rem, 30svh, 20rem);
  }
}

.logo {
  z-index: 70;
}
.logo img {
  display: block;
  height: auto;
}
@media screen and (max-width: 767px) {
  .logo {
    left: 10px;
    top: 25%;
  }
  .logo .logo.only-mobile {
    display: none;
  }
}

.logo.only-desktop {
  left: 10px;
  top: 25%;
  transform: none;
}
.logo.only-desktop img {
  width: clamp(140px, 12vw, 220px);
}

#menu_container nav {
  display: none;
}

#menu_container.active nav {
  display: flex;
}
#menu_container.active nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.site-nav li.accueil {
  display: none;
}

nav {
  position: absolute;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: -moz-max-content;
  min-height: max-content;
  overflow: hidden;
}
nav ul {
  display: flex;
  font-display: row;
  justify-content: space-evenly;
  background-color: rgba(210, 122, 78, 0.7411764706);
  padding: 3.5rem 1rem 0;
  width: 100%;
  height: 50vh;
}
nav ul li {
  margin: 0.15rem;
  font-size: 1.1rem;
}
nav ul li a, nav ul li .a {
  position: relative;
  text-decoration: none;
  font-weight: 510;
  letter-spacing: 1px;
  color: #F8F5E9;
  text-shadow: 1px 1px 0 #A7CFA7, -1px 1px 0 #A7CFA7, 1px -1px 0 #A7CFA7, -1px -1px 0 #A7CFA7, 0 5px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 769px) {
  nav ul li {
    font-size: 2.4rem;
  }
}

.site-nav a {
  line-height: 1.5rem;
}

.site-nav a:focus-visible {
  outline: 2px dashed #fff;
  outline-offset: 2px;
}

.site-nav .active, .site-nav site-nav a[aria-current=page] {
  border-bottom: 3px solid #A7CFA7;
  padding-bottom: 0.5px;
  font-weight: 800;
  color: #A7CFA7;
  text-shadow: 1px 0 #B85C38, -1px 0 #B85C38, 0 1px #B85C38, 0 -1px #B85C38;
  font-style: oblique;
}

.burger_menu {
  opacity: 0.95;
  background: rgba(210, 122, 78, 0.7411764706);
  border-radius: 0.4rem;
  padding: 0.5rem;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 50px;
  box-shadow: 4px 8px 6px 6px rgba(18, 17, 17, 0.1098039216);
  z-index: 150;
}
.burger_menu span {
  display: block;
  background: #A7CFA7;
  align-self: center;
  height: 0.5rem;
  margin: 0.3rem 0;
  width: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 60;
}

#menu_container.active .burger_menu {
  margin-right: 0.2rem;
  position: absolute;
  left: 85vw;
  top: 2rem;
  z-index: 60;
}
#menu_container.active .burger_menu span {
  position: absolute;
  height: 0.3rem;
}
#menu_container.active .burger_menu span:first-child {
  transform: translateY(12px) rotate(45deg);
}
#menu_container.active .burger_menu span:nth-child(2) {
  opacity: 0;
}
#menu_container.active .burger_menu span:last-child {
  transform: translateY(12px) rotate(-45deg);
}

@media (min-width: 768px) {
  .site-nav li.accueil {
    display: inline-block;
  }
  #menu_container nav {
    display: block;
    position: relative;
  }
  #menu_container nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: auto;
    padding: initial;
  }
  #menu_container nav ul li {
    font-size: 1.5rem;
  }
  .burger_menu {
    display: none;
  }
}
main {
  position: relative;
  z-index: 1;
}
main .paw-container {
  position: absolute;
  top: -4px;
  left: 2px;
  width: 4.5rem;
  height: auto;
  transform: rotateZ(35deg);
  z-index: 2;
}
main .paw-container img {
  width: 100%;
}
main .hero-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 3.5rem 0.9rem 2.5rem;
  align-items: center;
}
main .hero-intro h2 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
main .hero-intro .container.intro {
  text-align: justify;
}
main .hero-intro .container.intro p {
  padding: 0.2rem 0.5rem;
}
@media (min-width: 768px) {
  main .hero-intro .container.intro {
    text-align: start;
    width: 70%;
  }
}
main .hero-intro .about {
  margin: 0.9rem;
  text-align: center;
  background-color: #F5E6DA;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
main .hero-intro .about a {
  color: rgba(38, 20, 8, 0.5764705882);
  font-family: "Oleo";
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  main .hero-intro .about {
    min-height: 1.8rem;
    padding: 0.4rem 0.92rem;
    border-radius: 40px;
  }
  main .hero-intro .about a {
    font-size: 1.5rem;
  }
}
main .services {
  position: relative;
  margin-bottom: 2rem;
}
main .services .title-container {
  z-index: 3;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0.2rem;
  overflow: hidden;
}
main .services .paw-container2 {
  position: absolute;
  top: 30px;
  right: 1px;
  width: 4.5rem;
  height: auto;
  transform: rotateZ(-35deg);
  z-index: 2;
}
main .services .paw-container2 img {
  width: 100%;
}
main .services ul {
  padding: 0.5rem 0.2rem;
}
main .services .services-container {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.625rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: solid 0.063rem #A7CFA7;
  box-shadow: 0 4px 4px #A7CFA7;
  overflow: hidden;
}
@media (min-width: 768px) {
  main .services .services-container {
    min-height: 12rem;
    height: auto;
    margin-bottom: 0;
  }
}
main .services .services-container .card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-size: 1.5rem;
  color: #F5E6DA;
  font-weight: 800;
  text-shadow: 1px 1px 0 #749F74, -1px 1px 0 #749F74, 1px -1px 0 #749F74, -1px -1px 0 #749F74, 0 5px 3px #261408;
  border-radius: 10px;
  border: solid 0.063rem #A7CFA7;
  box-shadow: 0 4px 4px #A7CFA7;
}
main .services .services-container.canine {
  background-image: url("../images/chiens.jpg");
}
main .services .services-container.feline {
  background-image: url("../images/chat.jpg");
}
main .services .services-container.education {
  background-image: url("../images/education.png");
  background-position: center 20%;
}
main .services .services-container.alimentation {
  background-image: url("../images/alimentation.png");
}
main .services .services-container .card-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  background-color: rgba(210, 122, 78, 0.8549019608);
  font-size: 1.2rem;
  color: #F5E6DA;
  text-shadow: 1px 1px 0 #749F74, -1px 1px 0 #749F74, 1px -1px 0 #749F74, -1px -1px 0 #749F74, 0 5px 3px #261408;
  border-radius: 10px;
  border: solid 0.063rem #A7CFA7;
  box-shadow: 0 4px 4px #A7CFA7;
  min-width: clamp(12rem, 18vw, 16rem);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  main .services .services-container .card-title {
    font-size: 1.5rem;
  }
}
main .services .paw-container3 {
  position: absolute;
  top: 265px;
  left: 2px;
  width: 4.5rem;
  height: auto;
  transform: rotateZ(35deg);
  z-index: 1;
}
main .services .paw-container3 img {
  width: 100%;
}
main .services .paw-container4 {
  position: absolute;
  top: 390px;
  right: 1px;
  width: 4.5rem;
  height: auto;
  transform: rotateZ(-35deg);
  z-index: 2;
}
main .services .paw-container4 img {
  width: 100%;
}

footer {
  color: rgba(38, 20, 8, 0.5764705882);
  position: relative;
  background: rgba(38, 20, 8, 0.1411764706);
  padding: 0.2rem;
  width: 100%;
  margin: 0;
  border-top: solid 0.1rem #A7CFA7;
  z-index: 4;
  overflow: visible;
}
footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(80px, 8vw, 92px);
  aspect-ratio: 1/1;
  background: url("../images/paw.png") no-repeat center/contain;
  transform: translate(-50%, -65%);
  z-index: 4;
  pointer-events: none;
}
footer h4, footer a, footer i {
  color: rgba(38, 20, 8, 0.5764705882);
}
footer .footer-container {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-items: center;
  align-items: start;
}
footer .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .phones {
  display: flex;
}
footer .phones i {
  margin-left: 1rem;
  font-size: 1.1rem;
  overflow: hidden;
}
footer .follow {
  display: flex;
  flex-direction: column;
  min-height: -moz-max-content;
  min-height: max-content;
}
footer .follow h4 {
  margin-bottom: 0.5rem;
}
footer .follow .social {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}
footer .follow .social a {
  display: flex;
  align-items: center;
  height: -moz-max-content;
  height: max-content;
}
footer .follow .social i {
  height: 100%;
  width: auto;
  font-size: 1.25rem;
  padding: 0.125rem 0.2rem;
}
@media (min-width: 768px) {
  footer .follow .social i {
    font-size: 1.5rem;
  }
}
footer .locate {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-area: 2/1/3/3;
  width: 100%;
  padding: 0 2rem;
  max-height: 450px;
}
footer .locate iframe {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  border: solid 0.3px rgba(38, 20, 8, 0.5764705882);
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  footer .locate iframe {
    aspect-ratio: 16/9;
    max-height: 18.75rem;
  }
}
footer .footer-down {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  text-align: center;
}
footer .footer-down .legal-notice {
  grid-column: 1/-1;
  position: relative;
}
footer .footer-down .legal-notice a {
  color: #261408;
}
footer .footer-down .copyright {
  position: relative;
  display: inline-flex;
  justify-content: center;
  grid-column: 1/-1;
  grid-row: 2;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  padding-top: 0.2rem;
}
footer .footer-down .copyright i {
  padding-left: 0.2rem;
  color: #749F74;
}
footer .footer-down .copyright::before {
  position: absolute;
  top: 0;
  content: "";
  height: 1px;
  width: 80%;
  background-color: rgba(38, 20, 8, 0.5764705882);
  z-index: 5;
}
footer .footer-down .al-css {
  display: flex;
  justify-content: center;
  grid-column: 1/-1;
  grid-row: 3;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
}
footer .footer-down .al-css i {
  color: red;
  font-size: 0.6rem;
}
footer .footer-down .al-css a {
  color: rgba(38, 20, 8, 0.5764705882);
}

@media (min-width: 768px) {
  .title-footer {
    font-size: 1.2rem;
  }
  .copyright br {
    display: none;
  }
}
@media (max-width: 767px) {
  footer .footer-top {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: stretch;
    text-align: center;
  }
  footer .footer-top i {
    margin-left: 0.5rem;
  }
  footer .footer-phones {
    padding: 0;
    font-size: 0.85rem;
  }
  footer .footer-phones a {
    white-space: nowrap;
  }
  footer .contact,
  footer .follow {
    align-items: center;
  }
  footer .locate {
    grid-area: auto;
    padding: 0 1rem;
  }
}
.pension-intro-container {
  margin: 2.5rem 0.9rem 1.5rem;
}
.pension-intro-container .intro-lead {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 16px;
}
.pension-intro-container .intro-reasons {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  max-width: 70ch;
  color: rgba(210, 122, 78, 0.8549019608);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}
@media (max-width: 768px) {
  .pension-intro-container .intro-reasons li:nth-child(n+4) {
    display: none;
  }
  .pension-intro-container .intro-reasons::after {
    content: "… et d’autres situations possibles";
    display: block;
    margin-top: 8px;
    font-style: italic;
    opacity: 0.8;
  }
}
.pension-intro-container .intro-reasons li::before {
  content: "• ";
}
.pension-intro-container p {
  text-align: justify;
}
.pension-intro-container .links {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .pension-intro-container .links {
    display: none;
  }
}
.pension-intro-container .links a {
  text-decoration: none;
  font-weight: 600;
  color: #261408;
}
@media (min-width: 768px) {
  .pension-intro-container {
    margin: 2.5rem 2rem 1.5rem;
  }
  .pension-intro-container p {
    text-align: center;
  }
}

.kennel .title-container, .cattery .title-container {
  overflow: visible;
}

#dog, #cat {
  position: relative;
  overflow: visible;
}
#dog::after, #cat::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 4.2rem;
  transform: rotateZ(35deg);
  aspect-ratio: 1/1;
  background: url("../images/paw.png") no-repeat center/contain;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

#kennel-img, #cattery-img {
  position: relative;
}
#kennel-img::after, #cattery-img::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 8px;
  width: 4.2rem;
  transform: rotateZ(-35deg);
  aspect-ratio: 1/1;
  background: url("../images/paw.png") no-repeat center/contain;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.kennel-container, .cattery-container {
  display: flex;
  flex-direction: column;
  text-align: justify;
  padding: 1rem 0.5rem;
  overflow: visible;
  height: auto;
  min-height: 0;
}
.kennel-container .kennel-image, .kennel-container .cattery-image, .cattery-container .kennel-image, .cattery-container .cattery-image {
  display: flex;
  margin: 1rem auto;
  width: 80%;
  overflow: visible;
}
.kennel-container .kennel-image img, .kennel-container .cattery-image img, .cattery-container .kennel-image img, .cattery-container .cattery-image img {
  border-radius: 75%;
  width: 100%;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.price-title {
  font-size: 1.4rem;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(254, 169, 15, 0.8), -1px 1px 0 rgba(254, 169, 15, 0.8), 1px -1px 0 rgba(254, 169, 15, 0.8), -1px -1px 0 rgba(254, 169, 15, 0.8), 0 5px 4px rgba(0, 0, 0, 0.5);
}

.additional-costs {
  display: grid;
  margin-top: 0.4rem;
  padding-top: 0.2rem;
  position: relative;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 0.25rem 0.2rem;
}
.additional-costs p {
  color: #261408;
}
.additional-costs .span2 {
  grid-column: 1/-1;
  text-align: center;
  justify-self: center;
}
.additional-costs ::before {
  position: absolute;
  content: "";
  top: 0;
  height: 1px;
  width: 80%;
  background-color: rgba(254, 169, 15, 0.8);
}
@media screen and (max-width: 1109px) {
  .additional-costs p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 340px) {
  .additional-costs p {
    font-size: 0.8rem;
  }
}

.general-condition, .booking-form {
  margin: 0.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.general-condition a, .general-condition i, .booking-form a, .booking-form i {
  color: #261408;
}
.general-condition a, .booking-form a {
  font-weight: 600;
}

.cattery {
  margin-bottom: 2rem;
  height: 100%;
}
.cattery p {
  color: #261408;
}

.cattery-container {
  display: flex;
  flex-direction: column;
  min-height: 450px;
}
.cattery-container p {
  color: rgba(38, 20, 8, 0.5764705882);
}
.cattery-container .price-container p {
  color: #261408;
}

@media (min-width: 1025px) {
  .pensions-container {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .cattery.container {
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pensions-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .kennel, .cattery {
    width: 48%;
  }
}
.intro-educ {
  text-align: justify;
}
@media (min-width: 768px) {
  .intro-educ {
    text-align: center;
  }
}
.intro-educ a {
  color: rgba(210, 122, 78, 0.8549019608);
}

.education-school .services-school {
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .education-school .services-school {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .education-school .services-school {
    margin-inline: auto;
    max-width: 877px;
    justify-items: start;
  }
}
.education-school .services-school li {
  min-width: 0;
  padding: 0.5rem 0;
  display: block;
}
.education-school .services-school a {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #261408;
  text-align: left;
  white-space: normal;
  overflow: visible;
}
.education-school .services-school a i {
  flex: 0 0 auto;
  display: inline-flex;
  color: rgba(210, 122, 78, 0.5215686275);
  margin-right: 0.2rem;
  transform-origin: center;
}
.education-school .education-container {
  display: flex;
  flex-direction: column;
  padding: 1rem auto;
  margin-bottom: 1rem;
}
.education-school .education-container h4 {
  position: relative;
  padding: 0.8rem 0;
  text-align: center;
  margin: 1.1rem auto;
  text-shadow: 1px 1px 0 rgba(254, 169, 15, 0.8), -1px 1px 0 rgba(254, 169, 15, 0.8), 1px -1px 0 rgba(254, 169, 15, 0.8), -1px -1px 0 rgba(254, 169, 15, 0.8), 0 5px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .education-school .education-container h4 {
    font-size: 1.3rem;
  }
}
.education-school .education-container h4::before {
  position: absolute;
  content: "";
  top: 0;
  left: 2px;
  height: 1px;
  width: 100%;
  background-color: rgba(210, 122, 78, 0.5215686275);
}
.education-school .stage {
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: justify;
  font-family: "Montserrat";
  overflow-x: hidden;
}
.education-school .stage li {
  overflow-x: hidden;
  height: auto;
  max-width: 100%;
  margin-bottom: 1rem;
}
.education-school .stage i {
  color: rgba(210, 122, 78, 0.5215686275);
  display: inline;
  padding-right: 0.5rem;
}

.food-container {
  margin: 1rem 0 2rem;
}

.food-intro {
  text-align: center;
}

.card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 750px) {
  .card-container {
    display: flex;
    flex-direction: column;
  }
}

.food-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.5rem;
  gap: 0.8rem;
  margin: 0.5rem;
  border: 2px solid rgba(210, 122, 78, 0.5215686275);
  background-color: rgba(210, 122, 78, 0.5215686275);
  border-radius: 25px;
}
@media screen and (max-width: 750px) {
  .food-card {
    padding: 0.5rem 0.3rem;
  }
}
.food-card .title-card {
  text-shadow: 1px 1px 0 rgba(254, 169, 15, 0.8), -1px 1px 0 rgba(254, 169, 15, 0.8), 1px -1px 0 rgba(254, 169, 15, 0.8), -1px -1px 0 rgba(254, 169, 15, 0.8), 0 5px 4px rgba(0, 0, 0, 0.5);
  padding: 0.2rem 0;
  text-align: center;
}
.food-card .title-card h4 {
  font-size: 1.1rem;
}
.food-card .item-food-container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0.5rem;
  width: 100%;
  justify-content: space-evenly;
}
.food-card .item-food-container.is-cat .item-food:last-child {
  grid-column: 1/-1;
  justify-self: center;
}
.food-card .food-image {
  display: flex;
  width: auto;
  height: 10rem;
}
@media screen and (max-width: 350px) {
  .food-card .food-image {
    height: 8rem;
  }
}

.friandises {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .friandises .food-image {
    height: 6rem;
  }
}
@media screen and (max-width: 350px) {
  .friandises .food-image {
    height: 5rem;
  }
}

.item-food {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.2rem;
  border-radius: 25px;
  background: linear-gradient(45deg, rgba(253, 211, 189, 0.6901960784), rgba(212, 177, 159, 0.1294117647));
  box-shadow: 5px -3px 10px rgba(201, 167, 150, 0.3294117647), -5px 3px 10px rgba(255, 227, 204, 0.631372549);
  width: 100%;
  height: auto;
  padding: 0.5rem;
}
.item-food h5 {
  font-size: 1.1rem;
  color: rgba(210, 122, 78, 0.8549019608);
}

.only-mobile {
  display: flex;
}

.only-desktop {
  display: none;
}

@media (min-width: 768px) {
  .only-desktop {
    display: flex;
  }
  .only-mobile {
    display: none;
  }
  .site-header .carousel {
    display: block;
  }
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.1rem 1rem;
}

.topbar .logo {
  display: inline-flex;
}

.topbar .btn-home {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1068px) {
  .page header h1 {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    position: relative;
  }
  .topbar .logo {
    display: inline-flex;
  }
  .topbar .btn-home {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.swiper.hero {
  display: flex;
  width: 100%;
  max-height: 35rem;
  margin: 0.5px auto;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .swiper.hero {
    height: clamp(12rem, 30svh, 18rem);
  }
}

.swiper.hero,
.swiper-slide {
  overflow: hidden;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swiper.hero video,
.swiper-slide video {
  max-width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .swiper.hero video,
  .swiper-slide video {
    max-width: 100%;
  }
}

.form-container {
  margin: 2rem auto 3rem;
  display: flex;
  flex-direction: column;
  min-height: 80%;
  width: -moz-max-content;
  width: max-content;
}
.form-container form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem auto 2.5rem;
}
.form-container form .info-applicants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-container form .info-applicants .left-grid,
.form-container form .info-applicants .right-grid {
  margin: 0.5rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-container form .info-applicants label {
  text-align: center;
}
.form-container form .info-applicants input {
  height: 1.875rem;
  border-radius: 20px;
  border: 0.02rem solid rgba(254, 169, 15, 0.8);
  min-width: 15rem;
  align-self: center;
  padding: 0.1rem 0.6rem;
}
@media (max-width: 428px) {
  .form-container form .info-applicants input {
    width: 100%;
    min-width: initial;
  }
}
.form-container form .message {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-width: 30rem;
  margin-bottom: 1rem;
}
.form-container form .message label {
  text-align: center;
}
.form-container form .message textarea {
  border-radius: 20px;
  border: 0.02rem solid rgba(254, 169, 15, 0.8);
  padding: 0.5rem 1rem;
}
@media (max-width: 428px) {
  .form-container form .message {
    min-width: initial;
    width: 100%;
  }
}
.form-container form button {
  display: block;
  z-index: 10;
  align-self: center;
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(210, 122, 78, 0.8549019608);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  border-radius: 20px;
  text-shadow: 1px 1px 0 rgba(254, 169, 15, 0.8), -1px 1px 0 rgba(254, 169, 15, 0.8), 1px -1px 0 rgba(254, 169, 15, 0.8), -1px -1px 0 rgba(254, 169, 15, 0.8), 0 5px 4px rgba(0, 0, 0, 0.5);
  color: rgba(38, 20, 8, 0.5764705882);
  box-shadow: 1px 1px 1px rgba(254, 169, 15, 0.8);
}
@media (max-width: 426px) {
  .form-container {
    margin: 0 0.2rem;
    width: 100%;
  }
}
.form-container textarea {
  resize: none;
}
.form-container .hp {
  position: absolute;
  left: -9999px;
}

.modal {
  display: none;
  position: relative;
}

.active-modal {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

a.close {
  position: absolute;
  top: 10px;
  left: 90%;
  z-index: 2000;
  color: #D27A4E !important;
  font-size: 4rem !important;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  a.close {
    left: 95%;
  }
}
@media screen and (min-width: 1440px) {
  a.close {
    left: 78%;
  }
}

.modal-content-container {
  background-color: #FFF1D7;
  display: flex;
  align-self: center;
  justify-self: center;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  margin: 0.5rem auto;
  justify-items: center;
  border-radius: 1.5rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .modal-content-container {
    width: 90%;
  }
}
.modal-content-container .modal-content {
  overflow-y: auto;
  padding: 0.2rem 1.5rem;
  text-align: justify;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}
.modal-content-container .modal-content h3 {
  text-align: center;
  font-family: "Oleo";
  font-size: 2rem;
  color: rgba(210, 122, 78, 0.8549019608);
}
.modal-content-container .modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content-container .modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.modal-content-container .modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}
.modal-content-container .modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
  background-clip: content-box;
}
.modal-content-container .title-piliers {
  text-align: center;
  margin-bottom: 0.8rem;
}
.modal-content-container .piliers {
  color: #D27A4E;
  font-weight: 600;
}

.last-texte {
  text-align: center;
  padding-bottom: 0.8rem;
}

.legale-notice {
  margin: 1rem 0 1.2rem;
}
.legale-notice h1, .legale-notice h2 {
  color: #F5E6DA;
  font-family: "Oleo";
  text-shadow: 1px 1px 0 #749F74, -1px 1px 0 #749F74, 1px -1px 0 #749F74, -1px -1px 0 #749F74, 0 5px 3px #261408;
}
.legale-notice h1 {
  text-align: center;
  font-size: 2.5rem;
}
.legale-notice h2 {
  font-size: 1.8rem;
  text-align: left;
  padding-left: 0.2rem;
}
.legale-notice section {
  text-align: justify;
  padding: 1.2rem 0.5rem;
}
.legale-notice section span {
  color: #D27A4E;
  font-weight: 600;
}
.legale-notice section h3 {
  color: #D27A4E;
}
.legale-notice section .mailto-link {
  color: #D27A4E;
}
@media screen and (max-width: 768px) {
  .legale-notice .onlymobile {
    display: none;
  }
}/*# sourceMappingURL=indexV120226.css.map */