@font-face {
  font-family: parisienne;
  src: url("/assets/styles/fonts/Parisienne-Regular.ttf");
}
@font-face {
  font-family: roboto;
  src: url("/assets/styles/fonts/roboto.ttf");
  font-display: swap;
}
@font-face {
  font-family: passionsConflict;
  src: url("/assets/styles/fonts/PassionsConflict-Regular.ttf");
  font-display: swap;
}
@keyframes opacityKey {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacityKeyPara {
  from {
    opacity: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes bounceGrow {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  75% {
    transform: scale(1.1) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
head {
  padding-top: 1dvh;
}

*, *::before, *::after {
  line-height: 1.5;
  box-sizing: border-box;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  background-color: #F7D1C9;
  font-family: "roboto", sans-serif;
  color: #707070;
}
*:visited, *::before:visited, *::after:visited {
  color: #8E3348;
}

html {
  box-sizing: border-box;
  max-width: 100dvw;
  overflow-x: hidden;
}

body {
  max-width: 100dvw;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  flex-grow: 1;
}

.clair {
  background: rgba(237, 232, 232, 0.305) !important;
  padding: min(0.2em, 5%);
  align-self: center;
}

.citation {
  font-family: "magneta", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
  text-align: justify;
}

.auteur {
  font-family: "roboto", sans-serif;
  text-align: end;
  margin-top: 0.8rem;
}

.burgundy {
  color: #8E3348;
}

.italique {
  font-style: italic;
}

.mentions {
  margin: 5rem 0 2.5rem;
}
.mentions h1 {
  text-align: center;
  font-family: "parisienne";
}
.mentions .bloc {
  margin: 1rem;
}
.mentions .bloc h2, .mentions .bloc h1 {
  font-family: "parisienne";
}
.mentions .bloc li {
  list-style: none;
}

.header_container {
  box-sizing: border-box;
  position: fixed;
  margin-bottom: 2px;
  padding-top: 2dvh;
  top: 0;
  width: 100%;
  background-color: #F7D1C9;
  display: grid;
  grid-template-columns: 10% 90%;
  justify-content: center;
  z-index: 500;
}
.header_container .menu_container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
  padding-left: 2.5em;
}
.header_container .menu_container .burger_icon {
  position: absolute;
  z-index: 20 !important;
  opacity: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5%;
  width: 50px;
  height: 50px;
  transition: transform 0.8s ease-out, opacity 0.1s ease-out;
  transform: translateX(-5%);
  border-radius: 5px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}
.header_container .menu_container .burger_icon .l1, .header_container .menu_container .burger_icon .l2, .header_container .menu_container .burger_icon .l3 {
  position: absolute;
  display: block;
  width: 80%;
  height: 3px;
  background: #707070;
}
.header_container .menu_container .burger_icon .l1 {
  transform: translateY(-10px);
}
.header_container .menu_container .burger_icon .l3 {
  transform: translateY(10px);
}
.header_container .menu_container .burger_icon.active {
  transform: translateX(250px);
}
.header_container .menu_container .burger_icon.active .l1 {
  transform: translateY(0px) rotate(135deg);
}
.header_container .menu_container .burger_icon.active .l2 {
  opacity: 0;
}
.header_container .menu_container .burger_icon.active .l3 {
  transform: translateY(0px) rotate(-135deg);
}
.header_container .menu_container .menu {
  position: fixed;
  height: 100vh;
  width: 320px;
  max-width: 90vw;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 4px 0px 13px 5px rgba(128, 128, 128, 0.39);
  padding: min(50px, 20vw);
  transform: translateX(calc(-100% - 20px));
  transition: transform 0.8s ease-out, opacity 0.1s ease-out;
  z-index: -1;
}
.header_container .menu_container .menu li {
  padding: 20px 0;
  margin: 10px 0;
  list-style: none;
}
.header_container .menu_container .menu li a {
  text-decoration: none;
  color: #707070;
}
.header_container .menu_container .menu.active {
  transform: translate(0);
  z-index: 15;
}
.header_container .page_title {
  position: absolute;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
  width: 95%;
}
.header_container .page_title h1 {
  text-align: center;
  color: #8E3348;
  font-family: "parisienne";
  font-size: clamp(1.1rem, 3vh + 1rem, 2.5rem);
  font-weight: 600;
}

@media screen and (max-width: 409px) {
  .header_container {
    grid-template-columns: 1fr;
  }
  .menu_container {
    padding-left: 0.9rem !important;
  }
  .menu_container .burger_icon {
    width: 50px !important;
    height: 25%;
  }
  .page_title {
    white-space: normal;
    margin-left: 12px;
  }
  .page_title h1 {
    font-weight: 400;
    font-size: 10vw !important;
    white-space: normal;
    text-align: center;
  }
}
.main {
  display: grid;
  grid-template-rows: 1fr 0.5fr 0.5fr;
  margin: 3vh auto 1.5rem;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  color: #707070;
  width: 80%;
  flex: 1;
  margin: 8dvh auto 1vh;
}
@media screen and (min-width: 1024px) {
  .main {
    width: 90%;
    margin: 8vh 1rem;
  }
}
.main .logo img {
  width: 100%;
  height: auto;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  animation-name: homeanimation;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.main .statuts h1 {
  font-size: 2.5rem;
  font-family: "parisienne";
  text-align: center;
  z-index: 5;
  margin: 1.5rem 0;
}
.main .statuts h2 {
  font-size: 1.2rem;
  font-family: "roboto";
  text-align: center;
}
.main .citation_container {
  overflow: visible;
  transform: translateX(-100vw);
  opacity: 0;
  animation-name: citationanimation;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  margin: 2.5rem 0 1rem;
  padding: 0 1rem;
}
.main .citation {
  font-size: 1.1rem;
  font-weight: 400;
}

@keyframes homeanimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes citationanimation {
  0% {
    transform: translateX(-100wv);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 100;
  }
}
.qui_suis_je {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  align-items: center;
  justify-content: space-around;
}
.qui_suis_je .presentation {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 0;
}
.qui_suis_je .presentation .exploratrice_container {
  display: grid;
  grid-template-columns: 30% 70%;
  justify-content: space-evenly;
  height: auto;
}
.qui_suis_je .presentation .exploratrice_container .portrait {
  display: inline-flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: auto;
  border-radius: 50%;
  animation-name: portrait;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.qui_suis_je .presentation .exploratrice_container .portrait img {
  display: inline;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.qui_suis_je .presentation .exploratrice_container .exploratrice {
  align-self: center;
  padding-right: 1.5rem;
  margin-left: -1rem;
  background: transparent;
  animation-name: exploratrice;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.qui_suis_je .presentation .exploratrice_container .exploratrice p {
  color: #8E3348;
  font-family: "Magneta", serif;
  font-style: oblique;
  font-weight: 600;
}
.qui_suis_je .presentation .parcours_container {
  margin: 0.5rem 0;
  text-align: center;
}
.qui_suis_je .presentation .parcours_container .genese p {
  opacity: 0;
  will-change: opacity;
  animation: opacityKey 1.8s ease-out forwards;
  animation-delay: 2s;
  padding: min(0.2rem, 3%);
}
.qui_suis_je .clair {
  animation-name: depuis;
}
.qui_suis_je .clair p {
  background: none;
}
.qui_suis_je .depuis_objectif_container h2 {
  opacity: 0;
  text-align: center;
  font-family: "la-parisienne-serif-inline", sans-serif;
  font-weight: 400;
  font-style: none;
  color: #8E3348;
  background: none;
}
.qui_suis_je .depuis_objectif_container p {
  background: none;
}
.qui_suis_je .depuis_objectif_container .depuis, .qui_suis_je .depuis_objectif_container .objectif {
  margin: 1rem 0;
  padding: 0.8rem 0.5rem;
  text-align: center;
}
.qui_suis_je .depuis_objectif_container .depuis h2 {
  opacity: 0;
  will-change: opacity;
  animation: opacityKey 1s ease-out forwards;
  animation-delay: 3s;
}
.qui_suis_je .depuis_objectif_container .depuis p {
  opacity: 0;
  will-change: opacity, filter;
  animation: opacityKeyPara 1s ease-out forwards;
  animation-delay: 4s;
}
.qui_suis_je .depuis_objectif_container .accroche1 {
  text-align: center;
  padding: 0 4.5rem;
  font-size: 1.1rem;
  opacity: 0;
  will-change: opacity;
  animation: opacityKey 1s ease-out forwards;
  animation-delay: 5.5s;
}
.qui_suis_je .depuis_objectif_container .objectif h2 {
  opacity: 0;
  will-change: opacity;
  animation: opacityKey 1s ease-out forwards;
  animation-delay: 7s;
}
.qui_suis_je .depuis_objectif_container .accroche2 {
  opacity: 0;
  will-change: opacity, filter;
  animation: opacityKeyPara 1s ease-out forwards;
  animation-delay: 7.5s;
}
.qui_suis_je .action {
  padding: 1rem 4.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.qui_suis_je .action .accroche {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  opacity: 0;
  display: inline-block;
  font-size: 16px;
  padding: 5px 10px;
  text-align: center;
  background-color: #8E3348;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  animation: bounceGrow 5s ease-in-out 2 forwards;
  animation-delay: 8.5s;
}
.qui_suis_je .action h3 {
  font-family: "la-parisienne-serif-inline", sans-serif;
  font-weight: 200;
  font-style: none;
  color: #8E3348;
  background: none;
  margin-bottom: 0.9rem;
}
.qui_suis_je .action p {
  opacity: 0;
  will-change: opacity, filter;
  animation: opacityKeyPara 1s ease-out forwards;
  animation-delay: 10s;
}

@keyframes portrait {
  0% {
    transform: translateX(-250px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes exploratrice {
  0% {
    transform: translateX(750px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (min-width: 900px) {
  body {
    max-width: 100vw;
  }
  .qui_suis_je {
    max-width: 100vw;
  }
  .presentation {
    margin: 2rem 0;
  }
  .presentation .exploratrice_container {
    min-width: 100%;
    margin: 0;
    align-self: flex-end;
  }
  .presentation .exploratrice_container .portrait {
    max-width: 50%;
    margin: 0.5rem auto 0;
  }
  .presentation .exploratrice_container .portrait img {
    margin-top: 0.2rem;
    width: 100%;
    padding: 0;
  }
  .presentation .exploratrice_container .exploratrice p {
    font-size: 1.5rem;
    padding-right: 10vw;
    text-align: center;
  }
  .presentation .parcours_container {
    padding: 1.5rem 2rem;
  }
  .presentation .parcours_container .genese {
    font-size: 1.2rem;
  }
  .depuis_objectif_container {
    display: grid;
    grid-template-columns: 50% 45%;
    gap: 5%;
    grid-template-rows: max-content;
    grid-template-areas: "depuis manifeste" "objectif manifeste";
    margin: 1rem 2.5rem;
    align-content: center;
  }
  .depuis_objectif_container .depuis {
    grid-area: depuis;
  }
  .depuis_objectif_container .objectif {
    grid-area: objectif objectif;
  }
  .depuis_objectif_container .accorche1_container {
    grid-area: manifeste;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .depuis_objectif_container .accorche1_container .accroche1 {
    text-align: center;
  }
  .clair {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.form_container {
  margin: 4.2vh auto 0;
  padding: 1rem 0 0;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}
.form_container .mail_envoye {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 2rem 0;
  padding: 1rem 0;
  width: 100%;
  height: 70vh;
  border-radius: 30px;
  color: #8E3348;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}
.form_container .mail_envoye p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8E3348;
}
.form_container .erreur {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #8E3348;
  border-radius: 10px;
  justify-content: center;
  padding: 6px;
  box-shadow: #8E3348 5px 6px 12px;
  margin-bottom: 25px;
}
.form_container .erreur p, .form_container .erreur li {
  display: flex;
  padding: 2px;
  flex-direction: column;
  color: rgb(253, 78, 78);
  text-align: center;
}
.form_container label {
  color: #8E3348;
}
.form_container .coordonees {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 80px;
  padding: 0.5rem 0;
}
.form_container .coordonees .input_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem;
  max-width: 100%;
}
.form_container .coordonees .input_container label {
  position: static;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}
.form_container .coordonees .input_container input {
  position: static;
  width: 100%;
  height: 2.5rem;
  border-radius: 30px;
  padding: 0.5rem;
  color: #8E3348;
  border: 1px solid #8E3348;
}
.form_container .coordonees .input_container input:focus, .form_container .coordonees .input_container input:valid, .form_container .coordonees .input_container input:invalid {
  background-color: rgba(237, 232, 232, 0.305) !important;
  box-shadow: none !important;
  outline: none !important;
}
.form_container .coordonees .input_container input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F9C8C1 inset !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(237, 232, 232, 0.305) inset !important;
  -webkit-text-fill-color: #8E3348 !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}
.form_container .coordonees .input_container input:-webkit-autofill:focus,
.form_container .coordonees .input_container input:-webkit-autofill:hover,
.form_container .coordonees .input_container input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px #F9C8C1 inset !important;
  -webkit-text-fill-color: #8E3348 !important;
}
.form_container .checkbox {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.form_container .checkbox p {
  text-align: center;
  margin: 0.8rem;
}
.form_container .checkbox .choix {
  display: flex;
  justify-content: space-evenly;
}
.form_container .message {
  display: flex;
  flex-direction: column;
  padding: 0 4%;
  text-align: center;
  color: #8E3348;
}
.form_container .message textarea {
  border-radius: 1rem;
  padding: 0.5rem 0.4rem;
  width: 100%;
  max-width: 500px;
  margin-bottom: 1.5rem;
  border: 1px solid #8E3348;
  outline: none;
}
.form_container .rgpd {
  padding: 0 3%;
  text-align: justify;
  font-size: 0.8rem;
}
.form_container .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_container .btn input[type=submit] {
  margin: 1rem;
  font-family: "parisienne";
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0 0.8rem;
  color: #8E3348;
  border-radius: 30px;
  border: 1px solid #8E3348;
}
.form_container .btn input[type=submit]:hover {
  transform: scale3d(1.5, 1.5, 1.5);
  transition: all 0.2s ease-in-out;
  background: #8E3348;
  color: #F7D1C9;
  border-color: #F7D1C9;
}

.prestations {
  margin: 5rem 0 2.5rem;
  display: grid;
}
.prestations section {
  margin-bottom: 50px;
}
.prestations section p {
  margin: 0 1rem;
  text-align: center;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1.1rem;
}
.prestations .liens {
  text-align: center;
  margin-bottom: 1rem;
}
.prestations .liens a {
  text-decoration: none;
}
.prestations .liens a h3 {
  color: #8E3348;
  font-size: 1.1rem;
  margin: 1rem 0;
}
.prestations .citation_container {
  padding: 0.5rem 0;
  margin: 1.5rem;
  position: relative;
}
.prestations .citation_container::before {
  position: absolute;
  content: "****";
  font-size: 2rem;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.prestations .citation_container::after {
  position: absolute;
  content: "****";
  font-size: 2rem;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30;
}
.prestations .citation {
  font-weight: 600;
  font-size: 1.3rem;
}
.prestations .citation p {
  color: #8E3348;
  padding: 1.4rem 0 0;
}
.prestations .auteur {
  text-align: end;
  justify-self: end;
  margin: -0.5rem 0 0;
  font-size: 1.2rem;
}
.prestations .auteur p {
  font-size: 1.1rem;
  color: #8E3348;
}
.prestations img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.prestations .clair {
  margin: 1em 0;
}
.prestations .action {
  z-index: 20;
  text-align: center;
  font-size: 1.2rem;
}
.prestations .action h4 {
  color: #8E3348;
  text-decoration: underline;
}
.prestations .image {
  display: flex;
  width: 100%;
}
.prestations .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.prestations h2 {
  color: #8E3348;
  text-align: center;
  font-size: 2.5rem;
  font-family: "la-parisienne-serif-inline", sans-serif;
  font-weight: 100;
  padding: 0.6rem;
}
.prestations .coaching {
  margin: -1rem 0 0;
  padding: 1rem 0;
}

@media screen and (min-width: 800px) {
  .bilan_container, .coaching_container {
    height: 100%;
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    grid-template-areas: "title title" "gauche droite" "contact contact";
  }
  .bilan_container h2, .coaching_container h2 {
    grid-area: title;
  }
  .bilan_container .action, .coaching_container .action {
    grid-area: contact;
    margin-bottom: 5vh;
  }
  .bilan_container .clair, .coaching_container .clair {
    margin: auto 1rem;
    border-radius: 45px;
    box-shadow: 7px 4px 10px #707070;
  }
  .bilan_container .image_bilan {
    grid-area: gauche;
  }
  .bilan_container .clair {
    grid-area: droite;
  }
  .coaching_container {
    height: auto;
    margin: 90px 0;
  }
  .coaching_container .image {
    grid-area: droite;
    width: 100%;
  }
  .coaching_container .clair {
    grid-area: gauche;
  }
}
@font-face {
  font-family: parisienne;
  src: url("/assets/styles/fonts/Parisienne-Regular.ttf");
}
@font-face {
  font-family: roboto;
  src: url("/assets/styles/fonts/roboto.ttf");
  font-display: swap;
}
@font-face {
  font-family: passionsConflict;
  src: url("/assets/styles/fonts/PassionsConflict-Regular.ttf");
  font-display: swap;
}
@keyframes opacityKey {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacityKeyPara {
  from {
    opacity: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes bounceGrow {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  75% {
    transform: scale(1.1) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
head {
  padding-top: 1dvh;
}

*, *::before, *::after {
  line-height: 1.5;
  box-sizing: border-box;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  background-color: #F7D1C9;
  font-family: "roboto", sans-serif;
  color: #707070;
}

*:visited, *::before:visited, *::after:visited {
  color: #8E3348;
}

html {
  box-sizing: border-box;
  max-width: 100dvw;
  overflow-x: hidden;
}

body {
  max-width: 100dvw;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  flex-grow: 1;
}

.clair {
  background: rgba(237, 232, 232, 0.305) !important;
  padding: min(0.2em, 5%);
  align-self: center;
}

.citation {
  font-family: "magneta", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
  text-align: justify;
}

.auteur {
  font-family: "roboto", sans-serif;
  text-align: end;
  margin-top: 0.8rem;
}

.burgundy {
  color: #8E3348;
}

.italique {
  font-style: italic;
}

.mentions {
  margin: 5rem 0 2.5rem;
}

.mentions h1 {
  text-align: center;
  font-family: "parisienne";
}

.mentions .bloc {
  margin: 1rem;
}

.mentions .bloc h2, .mentions .bloc h1 {
  font-family: "parisienne";
}

.mentions .bloc li {
  list-style: none;
}

footer {
  display: flex;
  margin: 1vh 0 0;
  border-top: 0.1rem solid #8E3348;
  width: 100vw;
}
footer a {
  text-decoration: none;
}
footer .footer_container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1rem 0;
  margin: 0 auto;
  width: 90vw;
}
@media (max-width: 450px) {
  footer .footer_container {
    padding: 0.5rem 0 0.1rem;
  }
}
footer .footer_container .grid_footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 0.2fr;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  grid-template-areas: "coordonnees mentions-contact" "copyright copyright";
}
footer .footer_container .coordonnes {
  grid-area: coordonnees;
}
footer .footer_container .nom_commercial {
  font-family: "parisienne";
}
footer .footer_container .nom_commercial p {
  font-size: 1.5rem;
}
@media (max-width: 350px) {
  footer .footer_container .nom_commercial p {
    font-size: 1rem;
  }
}
footer .footer_container .mentions_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-size: 0.9rem;
  padding-left: 0.2rem;
  grid-area: mentions-contact;
}
footer .footer_container .mentions_container .mentions::before {
  content: ">";
  display: inline;
  width: 0.1rem;
  height: 0.5rem;
  padding-right: 0.7rem;
  color: #8E3348;
}
@media (max-width: 350px) {
  footer .footer_container .mentions_container {
    font-size: 0.7rem;
  }
}
@media (max-width: 450px) {
  footer .footer_container .mentions_container {
    flex-direction: column;
  }
}

.tel, .mail {
  display: flex;
  padding-right: 0.5rem;
}
.tel p, .mail p {
  font-size: 0.9rem;
  margin-left: 0.1rem;
}
@media (max-width: 350px) {
  .tel p, .mail p {
    font-size: 0.7rem;
  }
}

img {
  width: 1rem;
}

.copyright {
  margin-top: 0.1rem;
  padding: 0.5vh;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  grid-area: copyright;
}
.copyright p, .copyright a {
  font-size: 0.8rem;
}
@media (max-width: 350px) {
  .copyright p, .copyright a {
    font-size: 0.6rem;
  }
}
@media (max-width: 350px) {
  .copyright img {
    width: 0.5rem;
  }
}/*# sourceMappingURL=index.css.map */