@font-face {
  font-family: "Excon";
  src: url("../les-racines-du-juste/Excon-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Excon";
  src: url("../les-racines-du-juste/Excon-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Excon";
  src: url("../les-racines-du-juste/Excon-bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Default styles */
html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-size: 1rem;
  background-color: #FFFCF5;
}

.body--lock-scroll {
  overflow: hidden;
}

main {
  max-width: 75rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  main {
    padding-inline: 8rem;
  }
}

button {
  margin: 0;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  color: #000;
}

/* Global styles */
.products__item-image, .model__content-image, .project__image {
  width: 100%;
  height: auto;
	border-radius: 1rem 1rem 0 0;
}

.company__title, .products__title, .products__surtitle, .model__item-percentage, .model__title, .model__surtitle, .value__item-title, .value__title, .value__surtitle, .project__content-title, .project__title {
  font-family: "Excon", sans-serif;
  text-align: center;
  font-size: var(--title-font-size, 1.5rem);
  font-weight: var(--title-font-weight, 900);
  line-height: var(--title-line-height, 110%);
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .company__title, .products__title, .products__surtitle, .model__item-percentage, .model__title, .model__surtitle, .value__item-title, .value__title, .value__surtitle, .project__content-title, .project__title {
    --title-font-size: 2.5rem;
  }
}

/* Header */
.header {
  --header-height: 113px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .header {
    padding-inline: 16rem;
    width: auto;
  }
}
.header__logo {
  color: #5C996F;
}
.header__content {
  --header-content-border: 1px solid #000;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-end: var(--header-content-border);
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .header__content {
    border-inline: var(--header-content-border);
    border-radius: 0 0 1rem 1rem;
  }
}
.header__menu-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .header__menu-label {
    display: none;
  }
}
.header__dot {
  align-self: center;
}
@media (min-width: 1024px) {
  .header__dot {
    display: none;
  }
}
.header__links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .header__links {
    font-family: "Excon", sans-serif;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1.875rem;
    margin-block-start: var(--header-height);
    background-color: #FFFCF5;
    position: fixed;
    inset: 0;
    max-height: 100vh;
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  .header__links[inert] {
    transform: translateX(100%);
  }
}
.header__links-wrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .header__links-wrapper {
    justify-content: center;
    flex-direction: column;
    gap: 1.75rem;
  }
}
.header__link {
  text-decoration: none;
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .header__link {
    font-size: 1rem;
  }
}
.header__mobile-button {
  display: grid;
  align-items: center;
  justify-items: center;
}
@media (min-width: 1024px) {
  .header__mobile-button {
    display: none;
  }
}
.header__button-open, .header__button-close {
  grid-area: 1/1;
}
.header__button-open[inert], .header__button-close[inert] {
  opacity: 0;
}

/* Project section */
.project {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project__title-wrapper {
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 50rem;
  align-self: center;
}
@media (min-width: 1024px) {
  .project__title-wrapper {
    padding-block: 7rem;
  }
}
.project__title {
  --title-font-size: 2.5rem;
  --title-line-height: 120%;
}
@media (min-width: 1024px) {
  .project__title {
    --title-font-size: 3.5rem;
  }
}
.project__subtitle {
  text-align: center;
  font-size: 1rem;
  line-height: 110%;
}
@media (min-width: 1024px) {
  .project__subtitle {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .project__image {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}
.project__content-wrapper {
  background-color: #E7A489;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3.5rem 2rem;
  align-items: center;
	border-radius: 0 0 1rem 1rem;
}
@media (min-width: 1024px) {
  .project__content-wrapper {
    padding: 7rem 1.5rem;
  }
}
.project__content-title {
  --title-font-weight: 700;
  max-width: 50rem;
}
.project__content-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  max-width: 50rem;
}
@media (min-width: 1024px) {
  .project__content-subtitle {
    font-size: 1.125rem;
  }
}

/* Value section */
.value {
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .value {
    padding: 7rem 8rem;
    gap: 5rem;
  }
}
.value__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .value__title-wrapper {
    gap: 1rem;
  }
}
.value__surtitle {
  --title-font-size: 0.75rem;
  --title-font-weight: 600;
  --title-line-height: 150%;
  font-family: Roboto, sans-serif;
}
@media (min-width: 1024px) {
  .value__surtitle {
    --title-font-size: 1rem;
  }
}
.value__title-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .value__title-content {
    gap: 1.5rem;
  }
}
.value__title {
  --title-font-weight: 700;
}
.value__subtitle {
  font-size: 0.875rem;
  line-height: 110%;
  text-align: center;
}
@media (min-width: 1024px) {
  .value__subtitle {
    font-size: 1.125rem;
  }
}
.value__list-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 0;
  margin: 0;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .value__list-item {
    gap: 2rem;
  }
}
.value__item {
  padding: 1.5rem 1rem;
  list-style: none;
  border: 1px solid #000;
  align-content: center;
  border-radius: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .value__item {
    padding: 2rem 1.5rem;
  }
}
.value__item-title {
  --title-font-weight: 700;
  --title-line-height: 140%;
  --title-font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .value__item-title {
    --title-font-size: 1.25rem;
  }
}
.value__item-content {
  line-height: 110%;
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .value__item-content {
    font-size: 1rem;
  }
}

/* Model section */
.model {
  padding: 3.5rem 2rem;
  background-color: #F1BA7A;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
	border-radius: 1rem;
}
@media (min-width: 1024px) {
  .model {
    padding: 7rem 7.75rem;
    gap: 5rem;
  }
}
.model__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.model__surtitle {
  --title-font-weight: 600;
  --title-font-size: 0.75rem;
  --title-line-height: 150%;
  font-family: Roboto, sans-serif;
  text-align: start;
}
@media (min-width: 1024px) {
  .model__surtitle {
    font-size: 1rem;
  }
}
.model__title {
  text-align: start;
}
.model__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .model__content {
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.model__content-image {
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.model__list {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1024px) {
  .model__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.model__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  list-style: none;
  border: 1px solid #000;
  align-content: center;
  border-radius: 1rem;
  background-color: white;
}
@media (min-width: 1024px) {
  .model__item {
    padding: 1.5rem;
  }
}
.model__item-percentage {
  text-align: start;
}
.model__item-detail {
  font-size: 0.75rem;
  line-height: 110%;
}
@media (min-width: 1024px) {
  .model__item-detail {
    font-size: 1rem;
  }
}

/* Products section */
.products {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 2rem;
}
@media (min-width: 1024px) {
  .products {
    padding: 7rem 8rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.products__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .products__title-wrapper {
    grid-column: 1/3;
    grid-row: 1;
    gap: 1rem;
  }
}
.products__surtitle {
  --title-font-size: 0.75rem;
  --title-font-weight: 600;
  --title-line-height: 150%;
  font-family: Roboto, sans-serif;
  text-align: start;
}
@media (min-width: 1024px) {
  .products__surtitle {
    --title-font-size: 1rem;
  }
}
.products__title {
  text-align: start;
}
.products__subtitle {
  font-size: 0.875rem;
  line-height: 110%;
}
@media (min-width: 1024px) {
  .products__subtitle {
    font-size: 1.125rem;
  }
}
.products__list {
  gap: 1rem;
  display: grid;
}
@media (min-width: 1024px) {
  .products__list {
    gap: 2rem;
    grid-column: 1/4;
    grid-row: 1/3;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: subgrid;
  }
}
.products__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid #000;
  padding: 1.125rem;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  .products__item {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .products__item:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
  }
  .products__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .products__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .products__item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }
}
.products__item-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.products__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
}
@media (min-width: 1024px) {
  .products__item-title {
    font-size: 1.25rem;
  }
}
.products__item-subtitle {
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .products__item-subtitle {
    font-size: 1rem;
  }
}
.products__item-image {
  aspect-ratio: 1;
  border-radius: 0.75rem;
}

/* Company section */
.company {
  background: #AAE9BF;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3.5rem 2rem;
  align-items: center;
	border-radius: 1rem;
}
@media (min-width: 1024px) {
  .company {
    padding-block: 7rem;
    gap: 1.5rem;
  }
}
.company__title {
  max-width: 50rem;
}
.company__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50rem;
}
.company__link {
  text-decoration: none;
}
.company__link-label {
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .company__link-label {
    font-size: 1rem;
  }
}
.company__quote {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  max-width: 800px;
}
@media (min-width: 1024px) {
  .company__quote {
    font-size: 1.125rem;
  }
}

/* Footer */
.footer {
  display: flex;
  max-width: 75rem;
  justify-self: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer {
    padding-inline: 8rem;
  }
}
.footer__logo {
  color: #5C996F;
}
.footer__content {
  /* background: #FFF; */
  padding: 5rem 8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .footer__content {
    padding: 2.5rem 2rem;
    gap: 2.5rem;
  }
}
.footer__links-wrapper {
  gap: 2rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .footer__links-wrapper {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem;
  }
}
.footer__links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer__links {
    flex-direction: column;
  }
}
.footer__link {
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}
.footer__networks {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer__legals {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__legals {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.footer__legal-label {
  font-size: 0.875rem;
  line-height: 150%;
  text-decoration: none;
}
.footer__legal-label--underline {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .footer__copyright {
    order: 1;
    padding-block-start: 1rem;
  }
}

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