/**
 * Section: hero
 */
.section.hero {
  background-image: url('../images/particuliers/hero/bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 10rem 0;
  overflow: hidden;
}

.section.hero .cta {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section.hero .cta {
    margin-bottom: 8rem;
    text-align: center;
  }
  .section.hero .row {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .section.hero .cta,
  .section.hero .hero-phone {
    width: auto!important;
  }
}

.section.hero .btn.primary {
  background-color: var(--color-white);
  margin-left: 1.6rem;
  color: var(--color-primary-2);
  border: 2px transparent solid;
}

.section.hero .btn.primary:hover {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.section.hero h1 {
  font-size: 4rem;
  line-height: 5.2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

.section.hero p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: normal;
  margin: 0 0 5.5rem;
}

.section.hero .iphone {
  width: 100%;
}
.section.hero .hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.hero #legumes,
.section.hero #salades {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, left 1.2s ease-out, right 1.2s ease-out, top 1.2s ease-out, bottom 1.2s ease-out;
  transition-delay: 1.2s;
  will-change: opacity, visibility, left, right, position, top, bottom;
}

.section.hero #legumes {
  width: 14.7rem;
  height: 26.4rem;
  left: 0;
}

.section.hero #salades {
  width: 11.9rem;
  height: 25.8rem;
  right: 0;
}

.section.hero #iphone {
  width: 21rem;
  height: 41.2rem;
  z-index: 10;
}

@media (max-width: 768px) {
  .section.hero .hero-phone {
    position: static;
    width: 0;
    height: 0;
  }
  .section.hero #iphone, .section.hero .iphone {
    display: none;
  }
  .section.hero #legumes {
    left: 50%!important;
    top: -40rem;
    transform: translateX(-50%) rotate(-90deg);
  }

  .section.hero .fade-in-phone.visible #legumes {
    left: 50%!important;
    top: -20rem;
  }

  .section.hero #salades {
    left: 50%!important;
    top: 120%;
    transform: translateX(-50%) rotate(-90deg);
  }

  .section.hero .fade-in-phone.visible #salades {
    left: 50%!important;
    top: 88%;
  }
}

.section.hero .fade-in-phone {
  width: 21rem;
  height: 41.2rem;
  z-index: 10;
}

.section.hero .fade-in-phone.visible #legumes {
  left: -11rem;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) and (max-width: 992px) {
  .section.hero .fade-in-phone.visible #legumes {
    left: -9rem;
  }
}

.section.hero .fade-in-phone.visible #salades {
  right: -10rem;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) and (max-width: 992px) {
  .section.hero .fade-in-phone.visible #salades {
    right: -8rem;
  }
}

.section.hero form {
  display: flex;
  margin-bottom: 0;
}

@media (max-width: 1140px) {
  .section.hero form {
    flex-direction: column;
  }
}

.section.hero form input {
  height: 5rem;
  padding: 1.6rem 3.2rem;
  border: 0.2rem solid var(--color-white);
  border-radius: 3.8rem;
  text-align: center;
  color: var(--color-white);
  transition: transform 2s ease-in-out, border 0.2s ease-in-out;
}

.section.hero form input:focus {
  border-color: var(--color-secondary);
}

.section.hero form input.is-focus.visible {
  animation: scale 0.8s 0.2s forwards ease-in-out;
}

@keyframes scale {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.section.hero form input::placeholder {
  color: var(--color-white);
}

.section.hero .submit-btn {
  text-transform: none;
  margin: 0;
  padding: 1.6rem 3.2rem;
  line-height: 0;
  height: 5rem;
  margin: 0 0 0 1.6rem!important;
}

@media (max-width: 1140px) {
  .section.hero .submit-btn {
    margin: 2rem 0 0 0!important;
  }
}
/**
 * Section: market example
 */
.section.market-example {
  padding: 12rem 0 10rem;
  position: relative;
}

.section.market-example .market-example-shape {
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
}

.section.market-example .market-example-shape img {
  width: 100%;
}

@media (max-width: 768px) {
  .section.market-example .market-example-shape {
    display: none;
  }
}

.section.market-example .market-example-shape-2 {
  position: absolute;
  bottom: -5rem;
  z-index: 1;
  left: 0;
  right: 0;
}

.section.market-example .market-example-shape-2 img {
  width: 100%;
}

@media (max-width: 550px) {
  .section.market-example .market-example-shape-2 img {
    height: 10rem;
  }
}

.section.market-example .saved-products {
  max-width: 50rem;
  padding: 3rem 1.5rem;
  background-color: white;
  box-shadow: 0rem 0.4rem 2.5rem rgba(50, 50, 50, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  text-align: center;
  margin-bottom: 4.5rem;
}

.section.market-example .saved-products p {
  margin: 0 0 0.8rem;
  font-style: normal;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 2.9rem;
  text-align: center;
  color: var(--color-secondary);
}


.section.market-example .saved-products h4.market-name {
  display: block;
  font-weight: bold;
  font-size: 4rem;
  color: var(--color-primary-2);
  transition: opacity 0.5s linear;
  will-change: opacity;
}

.section.market-example .saved-products .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section.market-example .saved-products .images img {
  transition: opacity 0.3s linear;
  will-change: opacity;
}

.section.market-example .saved-products .images > div {
  flex: 0 32%;
  width: 32%;
  margin-bottom: 2%; /* (100-32*3)/2 */
}

.section.market-example .explainations {
  text-align: center;
  padding: 5rem 0 5rem 5rem;
}

.section.market-example .explainations h2 {
  font-weight: bold;
  font-size: 4.0rem;
  color: var(--color-secondary);
  text-align: left;
  margin-bottom: 5.2rem;
}

.section.market-example .explainations h2 span {
  display: block;
  color: var(--color-primary-2);
}

.section.market-example .explainations ul {
  list-style: none;
  margin: 0;
}

.section.market-example .explainations ul li.fade-in-step .text {
  margin-top: 1.6rem;
}

.section.market-example .explainations ul li.fade-in-step .step,
.section.market-example .explainations ul li.fade-in-step .text {
  z-index: 10;
  position: relative;
  transform: translateY(10vh);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility, transform;
}

.section.market-example .explainations ul li.fade-in-step.visible .step,
.section.market-example .explainations ul li.fade-in-step.visible .text {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.mask,
.mask-2 {
  position: absolute;
  top: 0;
  left: 0;
}

.mask path {
  stroke: var(--color-background);
  stroke-dasharray: 182;
  stroke-dashoffset: 0;
}

.mask-2 path {
  stroke: var(--color-background);
  stroke-dasharray: 234.3;
  stroke-dashoffset: 0;
}

.section.market-example .explainations ul li .fade-in-line.visible .mask path {
  animation: dash 1s linear reverse forwards 1.2s;
}

.section.market-example .explainations ul li .fade-in-line.visible .mask-2 path {
  animation: dash-2 1s linear reverse forwards 1.2s;
}

@keyframes dash {
  from {
    stroke-dashoffset: -182;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash-2 {
  from {
    stroke-dashoffset: -234.3;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.section.market-example .explainations ul {
  list-style: none;
  margin: 0;
}

.section.market-example .explainations .line-1,
.section.market-example .explainations .line-2 {
  display: none;
}

.section.market-example .explainations ul li .step,
.section.market-example .explainations ul li .text {
  margin: auto;
}

@media (min-width: 992px) {
  .section.market-example .explainations ul li .step,
  .section.market-example .explainations ul li .text {
    margin: 0;
  }

  .section.market-example .explainations ul li:nth-of-type(2) .step,
  .section.market-example .explainations ul li:nth-of-type(2) .text {
    margin: 1.6rem 0 0 auto;
    margin-right: -6rem;
  }

  .section.market-example .explainations ul li:nth-of-type(3) {
    margin-left: 4rem;
    margin-top: 16rem;
  }

  .section.market-example .explainations .line-1 {
    display: block;
    position: absolute;
    top: -13rem;
    right: 11rem;
  }

  .section.market-example .explainations .line-2 {
    display: block;
    position: absolute;
    bottom: -15rem;
    right: 8rem;
  }
}


.section.market-example .explainations ul li:not(:last-child) {
  margin-bottom: 5rem;
}

.section.market-example .explainations .step {
  background: url('../images/particuliers/market-example/step.svg') no-repeat center;
  font-weight: bold;
  font-size: 3.2rem;
  color: white;
  margin-bottom: 1rem;
  width: 60%;
}

.section.market-example .explainations .text {
  font-size: 1.6rem;
  width: 60%;
}

@media (max-width: 992px) {
  .section.market-example .explainations {
    padding: 10px;
  }
  .section.market-example .one-half.column {
    width: 100%;
  }
  .section.market-example .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/**
 * Section: about
 */
.section.about {
  color: white;
  text-align: center;
}

.section.about .container {
  padding: 15rem 0;
}
@media (min-width: 768px) {
  .section.about .container {
    width: 40%;
    margin: auto;
  }
}

.section.about h2 {
  font-size: 4rem;
  line-height: 5.2rem;
  font-weight: bold;
  margin-bottom: 3.2rem;
}

.section.about p {
  font-size: 1.8rem;
  line-height: 150%;
  margin: 0;
}
@media (min-width: 768px) {
  .section.about p {
    line-height: 140%;
  }
}

/**
 * Section: no waste
 */
.section.no-waste {
  position: relative;
  padding-top: 12rem;
}
.section.no-waste .no-waste-data {
  max-width: 96rem;
}

.section.no-waste .no-waste-shape {
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
}

.section.no-waste .no-waste-shape img {
  width: 100%;
}

@media (max-width: 550px) {
  .section.no-waste .no-waste-shape img {
    height: 10rem;
  }
}

.section.no-waste .container {
  padding: 6rem 3.5rem;
  background: url('../images/particuliers/no-waste/bg.svg') no-repeat;
  background-position: top;
  background-size: contain;
  background-color: var(--color-primary);
  box-shadow: 0rem 0.4rem 2.5rem rgba(50, 50, 50, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  max-width: 95%;
}
@media (min-width: 768px) {
  .section.no-waste .container {
    padding: 12rem 10.5rem;
  }
}

.section.no-waste h2 {
  font-family: 'Aileron';
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: normal;
  color: var(--color-white);
  margin-bottom: 5rem;
}
.section.no-waste h2 span.color {
  color: rgba(79, 79, 79, 0.7);
}
.section.no-waste h2 span:not(.color) {
  display: inline-block;
}
@media (min-width: 768px) {
  .section.no-waste h2 {
    width: 80%;
    font-size: 4.2rem;
    line-height: 5rem;
    margin-bottom: 8rem;
  }
}

.section.no-waste .numbers {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  line-height: 2.5rem;
  color: var(--color-white);
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section.no-waste .numbers {
    font-size: 2.4rem;
    line-height: 2.9rem;
  }
}

.section.no-waste .numbers span {
  font-family: 'Gotham';
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 5rem;
  margin-bottom: 1.1rem;
}

/**
 * Section: All together
 */
.section.all-together {
  overflow: hidden;
}

.section.all-together .slog,
.section.all-together .man {
  position: absolute;
}

@media (max-width: 768px) {
  .section.all-together .slog,
  .section.all-together .man {
    display: none;
  }
}

.section.all-together .slog {
  top: -13rem;
  left: -13rem;
}
.section.all-together .man {
  bottom: -18rem;
  right: -14rem;
}

@media (min-width: 1140px) {
  .section.all-together .slog {
    top: -13rem;
    left: -18rem;
  }
  .section.all-together .man {
    bottom: -18rem;
    right: -18rem;
  }
}

.section.all-together:not(.all-together--reverse) {
  padding: 12rem 0 6rem;
}

.section.all-together.all-together--reverse {
  padding: 6rem 0 9.1rem;
}

.section.all-together .row {
  display: flex;
  align-items: center;
}

.section.all-together .image {
  z-index: -1;
}

.section.all-together:not(.all-together--reverse) .image img:not(.fade-in-blop) {
  margin-left: -80%;
}

.section.all-together .image img.fade-in-blop {
  width: 698.4px;
  height: 487.69px;
  position: absolute;
  top: 50%;
  left: -100%;
  z-index: -1;
  transform: translate(0, -50%);
  transition: width, height 1s ease-in-out;
  will-change: width, height;
}

.section.all-together.section.all-together--reverse .image img.fade-in-blop {
  left: 35%;
}

.section.all-together .image img.fade-in-blop.visible {
  width: 873px;
  height: 575px;
}

.section.all-together h3 {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 140%;
  color: var(--color-secondary);
}

.section.all-together p {
  margin: 2.4rem 0 0;
  font-size: 2.2rem;
  line-height: 145%;
  color: var(--color-secondary);
}

.section.all-together a {
  margin-top: 6.5rem;
}

.section.all-together p span {
  color: var(--color-primary-2);
}

.section.all-together.all-together--reverse .image img:not(.fade-in-blop) {
  margin-left: 50%;
}

@media (max-width: 992px) {
  .section.all-together:not(.all-together--reverse) .image img:not(.fade-in-blop) {
    margin-left: -120%!important;
  }
  .section.all-together:not(.all-together--reverse) .image img.fade-in-blop {
    left: -155%!important;
  }
}

@media (max-width: 768px) {
  .section.all-together {
    overflow: visible;
  }

  .section.all-together .one-half.column {
    width: 100%;
    margin-left: 0;
  }

  .section.all-together .image {
    display: none;
  }
}

/**
 * Section: trust
 */

.section.trust h2 {
  font-weight: bold;
  font-size: 4rem;
  line-height: 130%;
  text-align: center;
  margin-bottom: 6.8rem;
  color: var(--color-secondary);
}

.section.trust h2 span {
  color: var(--color-primary-2);
}

.section.trust .image img {
  width: 100%;
  height: 100%;
}

.section.trust .row {
  display: flex;
  align-items: center;
}

.section.trust .text {
  padding-left: 7rem;
}

.section.trust .text .slog {
  position: absolute;
  top: -17rem;
  right: -9rem;
}

@media (max-width: 992px) {
  .section.trust .text .slog { display: none; }
}

.section.trust .image {
  display: flex;
  justify-content: center;
}

.section.trust .image .marchand {
  width: 95%;
  height: 95%;
  display: flex;
}

.section.trust .fade-in-rect {
  width: 95%;
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, left 1.2s ease-out, bottom 1.2s ease-out;
  will-change: left, right, opacity, visibility;
}

.section.trust .fade-in-rect.visible {
  left: -3rem;
  bottom: -3rem;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 972px) {
  .section.trust .image {
    margin-bottom: 4rem;
  }
  .section.trust .image .marchand {
    width: 90%;
    height: 90%;
    display: flex;
  }

  .section.trust .fade-in-rect.visible {
    left: -2rem;
    bottom: -2rem;
  }
}

.section.trust h3 {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 140%;
  color: var(--color-secondary);
}

.section.trust p {
  margin: 2.4rem 0 6.5rem;
  font-size: 2.2rem;
  line-height: 140%;
  color: var(--color-secondary);
}

.section.trust .sellers {
  margin: 8rem -1.25rem 0;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.section.trust .sellers .seller,
.section.trust .sellers .fade-in-seller {
  opacity: 0;
  visibility: hidden;
  width: 8.3rem;
  height: 8.3rem;
  border-radius: 100%;
  position: relative;
  border: 6px solid transparent;
  margin: 2.4rem 1.25rem 0;
  transition: border 0.15s ease-in-out, opacity 0.6s ease-out;
  will-change: opacity, visibility, border;
}

.section.trust .sellers .fade-in-seller.d-1 {
  transition: border 0.15s ease-in-out, opacity 0.6s ease-out 0.3s, transform 1.2s ease-out 0.3s;
}
.section.trust .sellers .fade-in-seller.d-2 {
  transition: border 0.15s ease-in-out, opacity 0.6s ease-out 0.4s, transform 1.2s ease-out 0.4s;
}
.section.trust .sellers .fade-in-seller.d-3 {
  transition: border 0.15s ease-in-out, opacity 0.6s ease-out 0.5s, transform 1.2s ease-out 0.5s;
}
.section.trust .sellers .fade-in-seller.d-4 {
  transition: border 0.15s ease-in-out, opacity 0.6s ease-out 0.6s, transform 1.2s ease-out 0.6s;
}
.section.trust .sellers .fade-in-seller.d-5 {
  transition: border 0.15s ease-in-out, opacity 0.6s ease-out 0.7s, transform 1.2s ease-out 0.7s;
}

.section.trust .sellers .fade-in-seller.visible {
  opacity: 1;
  visibility: visible;
}

.section.trust .sellers .seller:hover {
  border-color: var(--color-primary-3);
  z-index: 10;
}

.section.trust .sellers .seller:hover .seller-info,
.section.trust .sellers .seller:hover {
  opacity: 1;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
}

.section.trust .sellers .seller-info {
  pointer-events: none;
  width: 27rem;
  padding: 2.4rem;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  background: var(--color-primary-3);
  border-radius: 20px;
  border-top-left-radius: 6px;
  z-index: 10;
  transition: opacity 0.15s ease-in-out;
  will-change: opacity;
}

@media (max-width: 992px) {
  .section.trust .sellers .seller-info {
    display: none;
  }
}

.section.trust .sellers .seller-info.reverse {
  pointer-events: none;
  width: 27rem;
  padding: 2.4rem;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: auto;
  right: 50%;
  background: var(--color-primary-3);
  border-radius: 20px;
  border-top-right-radius: 6px;
  z-index: 10;
}

.section.trust .sellers .seller-info p {
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 130.3%;
  color: var(--color-secondary);
  opacity: 0.8;
}

.section.trust .sellers .seller-info span {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--color-primary-2);
  opacity: 0.8;
}

.section.trust .sellers .blur-background,
.section.trust .sellers .no-blur-background,
.section.trust .sellers .circle {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  box-shadow: 0 0 1.0rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .section.trust .row {
    display: flex;
    flex-direction: column;
  }
  .section.trust .one-half.column {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .section.trust .image {
    max-width: 50rem;
  }

  .section.trust .text {
    margin-top: 3rem;
  }
}

/**
 * Section: download
 */
.section.download {
  position: relative;
  margin-top: 14rem;
}

.section.download > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section.download h2 {
  max-width: 450px;
  font-weight: bold;
  font-size: 2.9rem;
  line-height: 130%;
  text-align: center;
  color: var(--color-secondary-2);
}

.section.download h2 span {
  color: var(--color-primary-2);
}

.section.download .cta {
  margin-top: 5.6rem;
  display: flex;
  align-items: center;
}

.section.download .woman {
  position: absolute;
  left: 0;
  top: 2rem;
}

.section.download .cta img {
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-name: translateXReverse;
}

.section.download .cta img:nth-of-type(1) {
  transform: scaleX(-1) translate(0);
  animation-name: translateX;
}

.section.download .cta a {
  margin: 0 8rem;
}

@media (max-width: 992px) {
  .section.download .woman {
    display: none;
  }
}

@media (max-width: 550px) {
  .section.download .cta a {
    margin: 0 2em;
  }
}

/**
 * Animations
 */
@keyframes translateX {
  from {
    transform: scaleX(-1) translate(0);
  }

  to {
    transform: scaleX(-1) translate(-20px);
  }
}

@keyframes translateXReverse {
  from {
    transform: translate(0);
  }

  to {
    transform: translate(-20px);
  }
}