:root {
  --white: #eee;
  --black: #111;
  --navbtn: #a5c3a1 linear-gradient(80deg, #a5c3a1 0%, #b2d9ac 14%, #f2fff0 100%);
  --navbtn-active: #609959 linear-gradient(220deg, #33c138 0%, #759370 29%, #00e309 100%);
  --logo: url(../img/logo_dark.svg);
  --logoSmall: url(../img/logo-small-dark.svg);
  --link: #0eb9cc;
  --linkfocus: #00d668;
  --strong-color: #dbecd1;
  --txt-color: var(--white);
  --body-bg: #072508;
  --title-color: #00d668;
  --box-bg: #3a3a3a;
  --box-shadow: none;
  --font-normal: noto_sanslight, sans-serif;
  --font-title: noto_sansregular, sans-serif;
  --font-message: kalamlight, cursive;
}
@font-face {
  font-family: "noto_sanslight";
  src: url("../fonts/notosans-light-webfont.woff2") format("woff2"), url("../fonts/notosans-light-webfont.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "noto_sansregular";
  src: url("../fonts/notosans-regular.woff2") format("woff2"), url("../fonts/notosans-regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "kalamlight";
  src: url("../fonts/kalam_light-webfont.woff2") format("woff2"), url("../fonts/kalam_light-webfont.woff") format("woff");
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  background: var(--body-bg);
  color: var(--txt-color);
  font-family: var(--font-normal);
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  line-height: 1.7;
}
body a, body a:visited, body a strong {
  color: var(--link);
  text-decoration: none;
  font-weight: bold;
}
body a, body a strong {
  transition: font-size 0.2s ease-in-out;
}
body a img, body a strong img {
  transition: transform 0.2s ease-in-out;
  transform: scale(1); /* Ajout d'un transform initial */
}
body a:hover, body a:focus, body a:active, body a:hover strong, body a:focus strong, body a:active strong {
  color: var(--linkfocus);
  text-decoration: underline;
  font-size: 105%;
}
body a:hover img, body a:focus img, body a:active img, body a:hover strong img, body a:focus strong img, body a:active strong img {
  transform: scale(1.05);
}

main ul {
  padding-left: 15px;
  margin-bottom: 0.7em;
}
main ul li {
  margin: 0.4em 0;
}
main ul li::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.6em;
  background: var(--title-color);
  margin-right: 0.7em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--title-color);
  text-wrap: balance;
  font-variant: small-caps;
  line-height: normal;
}

h2, h3, h4 {
  margin: 1em 0 0.5em;
}

h1 {
  font-size: 1.35em;
  letter-spacing: 3px;
}

h2 {
  font-size: 1.25em;
  letter-spacing: 2px;
}

h3 {
  font-size: 1.15em;
  letter-spacing: 2px;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.9em;
  margin: -0.6em 0 0.5em;
}

h6 {
  font-size: 0.7em;
  font-variant: unset;
}
@media (width <= 780px) {
  h6 {
    margin: 1em 0 0;
  }
}

p {
  font-size: 1em;
  margin-bottom: 1em;
}

figcaption {
  font-size: small;
  font-style: italic;
  text-align: center;
  text-wrap: pretty;
}

strong {
  color: var(--strong-color);
  font-family: var(--font-title);
}

svg {
  fill: currentcolor;
}
svg.icon {
  height: 1.25em;
  width: 1.25em;
}

.svgAlign {
  display: inline-flex;
  align-items: flex-end;
}

header {
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  border-radius: 2px;
  max-width: max(60%, 1200px);
  margin: 20px auto 24px;
}
@media (width <= 1250px) {
  header {
    margin: 16px 4vw 20px;
  }
}
@media (width <= 780px) {
  header {
    height: auto;
  }
}
header .header-box {
  display: grid;
  grid-template-columns: calc(74% + 20px) calc(26% - 20px) 0;
  position: relative;
}
@media (width <= 780px) {
  header .header-box {
    grid-template-columns: 32% 36% 32%;
  }
}
header .header-box .title {
  position: absolute;
  top: 25px;
  left: 15px;
  padding-left: 12px;
}
@media (width <= 780px) {
  header .header-box .title {
    padding-left: 3px;
    top: 48px;
  }
  header .header-box .title h1 {
    display: none;
  }
}
header .header-box nav .burgerBtn {
  display: none;
  position: absolute;
  left: 15px;
  bottom: 30px;
  background: var(--navbtn);
  height: 30px;
  width: 2rem;
  cursor: pointer;
  align-items: center;
  padding-bottom: 3px;
}
@media (width <= 780px) {
  header .header-box nav .burgerBtn {
    display: flex;
  }
}
header .header-box nav .burgerBtn_icon span {
  display: block;
  background: var(--black);
  position: absolute;
  left: 0.3rem;
  height: 3px;
  width: 1.4rem;
  transition: transform 400ms ease-in-out;
  border-radius: 2px;
}
header .header-box nav .burgerBtn_icon span:nth-child(1) {
  content: "";
  margin-top: -7px;
}
header .header-box nav .burgerBtn_icon span:nth-child(3) {
  content: "";
  margin-top: 7px;
}
header .header-box nav .burgerBtn:hover {
  background: var(--navbtn-active);
}
header .header-box nav #burgerBtn-toggle {
  display: none;
}
header .header-box nav #burgerBtn-toggle:checked + .burgerBtn {
  background: var(--navbtn-active);
}
header .header-box nav #burgerBtn-toggle:checked + .burgerBtn span:nth-child(1) {
  margin-top: 0;
  transform: rotate(45deg);
}
header .header-box nav #burgerBtn-toggle:checked + .burgerBtn span:nth-child(2) {
  opacity: 0;
}
header .header-box nav #burgerBtn-toggle:checked + .burgerBtn span:nth-child(3) {
  margin-top: 0;
  transform: rotate(135deg);
}
header .header-box nav .menu {
  display: flex;
  position: absolute;
  left: 10px;
  bottom: -12px;
  padding: 0;
  z-index: 10;
}
header .header-box nav .menu a {
  margin-left: 5px;
  padding: 1px 13px 2px;
  background: var(--navbtn);
  border: none;
  cursor: pointer;
  font-variant: small-caps;
  font-family: var(--font-title);
  font-size: 0.9em;
  font-weight: normal;
  color: var(--black);
}
header .header-box nav .menu a, header .header-box nav .menu a:focus, header .header-box nav .menu a.active, header .header-box nav .menu a:hover {
  text-decoration: none;
}
header .header-box nav .menu a.active, header .header-box nav .menu a:hover {
  background: var(--navbtn-active);
  color: var(--white);
}
@media (width <= 780px) {
  header .header-box nav .menu {
    display: flex;
    flex-direction: column;
    top: calc(100% - 29px);
  }
  header .header-box nav #burgerBtn-toggle ~ .menu a {
    height: 0;
    padding: 0;
    border: 0;
    transition: height 0.4s ease-in-out;
    display: none;
  }
  header .header-box nav #burgerBtn-toggle:checked ~ .menu a {
    height: 40px;
    padding: 5px 14px;
    transition: height 0.4s ease-in-out;
    display: initial;
  }
}
header .header-box .site-logo a {
  display: block;
  margin: 8px;
  height: max(55px, 4.8em);
  background: var(--logo) no-repeat center/contain;
}
@media (width <= 780px) {
  header .header-box .site-logo a {
    margin: 6px;
  }
}

.mainPattern {
  display: grid;
  grid-template-columns: 74% calc(26% - 20px);
  gap: 20px;
}
@media (width <= 780px) {
  .mainPattern {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

main {
  max-width: max(60%, 1200px);
  margin: 20px auto 24px;
}
@media (width <= 1250px) {
  main {
    margin: 16px 4vw 20px;
  }
}
main .box {
  padding: 2em;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  border-radius: 2px;
  margin-bottom: 20px;
}
main .box h2, main .box h3 {
  margin-top: 0;
}
main .box img {
  width: initial;
  max-width: 100%;
}
main .box .navmobile {
  display: none;
}
@media (width <= 830px) {
  main .box .navmobile {
    display: block;
  }
}
@media (width <= 780px) {
  main .box {
    padding: 1.4em;
  }
}
main #sommaire p {
  font-size: smaller;
  line-height: normal;
  padding: 0.2em 0 0;
}
main .btnColor a {
  margin-left: 5px;
  padding: 1px 13px 2px;
  background: var(--navbtn);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-variant: small-caps;
  font-family: var(--font-title);
  font-size: 0.9em;
  font-weight: normal;
  color: var(--black);
}
main .btnColor a, main .btnColor a:focus, main .btnColor a.active, main .btnColor a:hover {
  text-decoration: none;
}
main .btnColor a.active, main .btnColor a:hover {
  background: var(--navbtn-active);
  color: var(--white);
}
main .retrait {
  margin-top: -0.7em;
  padding-left: 1em;
  line-height: normal;
  text-wrap: balance;
}
main .courrier {
  background: var(--white);
  max-width: 60%;
  padding: 60px 30px;
  margin: 0 auto;
  aspect-ratio: 21/29.7;
}
main .courrier p {
  font-family: var(--font-message);
  color: var(--black);
}
@media (width <= 1000px) {
  main .courrier {
    max-width: 80%;
  }
}
@media (width <= 575px) {
  main .courrier {
    max-width: unset;
    padding: 30px 20px;
  }
}

footer {
  max-width: max(60%, 1200px);
  margin: 20px auto 24px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  border-radius: 2px;
  margin-bottom: 30px;
  padding: 0.7em 0;
}
@media (width <= 1250px) {
  footer {
    margin: 16px 4vw 20px;
  }
}
footer .copyright-bar {
  text-align: center;
  font-size: smaller;
  font-variant: small-caps;
  letter-spacing: 1px;
}
footer .copyright-bar a {
  color: currentColor !important;
  font-weight: normal !important;
}/*# sourceMappingURL=index.css.map */