* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  position: relative;
  font-size: 1em;
  overflow-x: hidden;
  height: 100%;
  background-color: var(--main-bg-color);
}

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --main-bg-color: #F7F7F7;
  --color-2: #ABC75A;
  --color-3: #98A56C;
  --navigation-color: #3f3f3f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --white-color: #000000;
    --black-color: #ffffff;
    --main-bg-color: #ddd;
    --color-2: #6b7a36;
    --color-3: #384b04;
    --navigation-color: #deeadd;
  }
}
header {
  display: flex;
  flex-direction: row;
  height: 75px;
  border-bottom: solid 4px var(--color-2);
  padding: 5px 20px;
  justify-content: space-between;
  align-items: center;
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav > a {
  all: unset;
  margin: 0 80px;
  font-size: 28px;
  cursor: pointer;
  position: relative;
  letter-spacing: 2px;
  display: block;
}
header nav > a::after {
  content: "";
  display: block;
  position: absolute;
  left: -3%;
  bottom: -5px;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  transition: all linear 0.2s;
}
header nav > a:hover::after {
  width: 106%;
}
header nav > a.selected {
  color: var(--color-2);
  font-weight: 900;
}
header nav > a.selected::after {
  width: 106%;
  height: 3px;
}

#produits + ul {
  display: none;
  position: absolute;
  list-style-type: none;
  background-color: var(--color-2);
  padding: 10px 30px 10px 15px;
  font-size: 18px;
  width: 13%;
  top: 85px;
  right: 4%;
  z-index: 1;
}
#produits + ul li {
  margin: 10px 0px;
  padding-left: 0;
  transition: all linear 0.15s;
  color: var(--navigation-color);
  cursor: pointer;
}
#produits + ul li:hover {
  padding-left: 5px;
  color: var(--black-color);
}
#produits + ul li a {
  text-decoration: none;
  color: currentColor;
}

h2 {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
}
h2 span {
  display: block;
  font-weight: 700;
  margin-top: 15px;
}
h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  background-color: var(--color-2);
}

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

.container {
  max-width: 1550px;
  width: 95%;
  margin: 70px auto;
}

button, main a {
  all: unset;
  padding: 15px 25px;
  color: var(--color-3);
  font-weight: 700;
  font-size: 20px;
  border: 3px solid var(--color-3);
  border-radius: 3px;
  background-color: unset;
  transition: all linear 0.2s;
  cursor: pointer;
}
button:hover, main a:hover {
  padding: 15px 30px;
}

#hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#hero div {
  margin-right: 100px;
  width: 36%;
  position: relative;
}
#hero div h1 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 40px;
}
#hero div #accroche {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 40px;
}
#hero div::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: calc(100% + 20px);
  left: -50px;
  top: -10px;
  background-color: var(--color-2);
  border-radius: 10px;
}

#presentation {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#presentation div:first-child {
  width: 40%;
}

#allProducts {
  margin: 20px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 3%;
       column-gap: 3%;
}
#allProducts article {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#allProducts article div {
  width: 115px;
  height: 115px;
  background-color: var(--color-2);
  border-radius: 100%;
  margin-bottom: 20px;
}
#allProducts article div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#allProducts article h4 {
  font-size: 22px;
}
#allProducts article .disponibilite {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  font-style: italic;
  font-size: 15px;
}
#allProducts article button, #allProducts article a {
  padding: 10px 15px;
}
#allProducts article button:hover, #allProducts article a:hover {
  padding: 10px 20px;
}

#maps h2 {
  margin: auto;
}
#maps > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 650px;
  border: 3px var(--color-3) solid;
  border-radius: 10px;
  margin-top: 50px;
}
#maps > div > div {
  width: 25%;
  height: 100%;
  overflow-x: auto;
  background-color: rgba(172, 199, 90, 0.3);
  border-radius: 7px;
}
#maps > div > div article {
  padding: 15px 20px;
  cursor: pointer;
}
#maps > div > div article.selected {
  background-color: rgba(156, 195, 154, 0.308);
}
#maps > div > div article:not(.selected):hover {
  background-color: rgba(156, 195, 154, 0.123);
}
#maps > div > div article p {
  margin-bottom: 0;
  font-size: 16px;
}
#maps > div > div article p:first-child {
  font-weight: 900;
  margin-bottom: 10px;
}
#maps > div > div article p:last-child {
  margin-top: 3px;
}
#maps > div iframe {
  width: 75%;
  height: 100%;
  border: unset;
  border-left: 3px var(--color-3) solid;
  border-radius: 0 8px 8px 0;
}

#product {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#product div {
  margin-right: 100px;
  width: 36%;
  position: relative;
}
#product div h1 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 40px;
}
#product div #accroche {
  font-size: 20px;
  margin-bottom: 40px;
}
#product div::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: calc(100% + 20px);
  left: -90px;
  top: -10px;
  background-color: var(--color-2);
  border-radius: 10px;
}

#commander {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-3);
  padding: 20px 30px;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 5px black;
}
#commander input[type=text], #commander input[type=email], #commander input[type=number] {
  background-color: var(--color-3) !important;
  border: 2px solid white;
  border-radius: 0;
  padding: 5px 10px;
  margin: 10px 0;
  color: white;
  font-size: 20px;
}
#commander button {
  color: white;
  border: 3px solid white;
  margin-top: 20px;
}
@media (prefers-color-scheme: dark) {
  #commander {
    color: white;
  }
}/*# sourceMappingURL=style.css.map */