/**
 * Section: hero
 */
.section.hero {
  padding: 12.3rem 0 0;
}

.section.hero .inset-0 {
  z-index: -1;
}

.section.hero .bg .blur-background,
.section.hero .bg .no-blur-background {
  background-repeat: no-repeat;
  background-position: top right;
}
@media (max-width: 1400px) {
  .section.hero .bg .blur-background,
  .section.hero .bg .no-blur-background {
    background-position: top right -10rem;
    background-size: 95%;
  }
}

@media (max-width: 992px) {
  .section.hero .bg .blur-background,
  .section.hero .bg .no-blur-background {
    background: none;
  }
  .section.hero .hero-food-join {
    display: none;
  }
  .section.hero .hero-cta {
    width: 100%;
  }
}

.section.hero h1 {
  margin: 2.4rem 0 0;
  font-style: normal;
  font-weight: bold;
  font-size: 4.0rem;
  line-height: 6.0rem;
  color: var(--color-secondary);
}

.section.hero h1 span {
  color: var(--color-primary-2);
}

.section.hero p {
  margin: 2.4rem 0 0;
  font-style: normal;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 2.9rem;
  color: var(--color-secondary);
}

.section.hero .hero-cta-btns {
  display: flex;
  margin-top: 5.5rem;
}

.section.hero .hero-cta-btns .btn + .btn {
  margin-left: 2.5rem;
}

@media (max-width: 550px) {
  .section.hero .hero-cta-btns {
    display: flex;
    flex-direction: column;
  }

  .section.hero .hero-cta-btns .btn + .btn {
    margin: 2rem 0 0;
  }
}

.section.hero .hero-food {
  position: relative;
}

.section.hero .hero-food .hero-food-join {
  position: absolute;
  right: 16%;
  top: -100%;
}

@media (max-width: 1500px) {
  .section.hero .hero-food .hero-food-join {
    right: 20%;
  }
}
@media (max-width: 1400px) {
  .section.hero .hero-food .hero-food-join {
    top: -90%;
    right: 16%;
  }
}
@media (max-width: 1200px) {
  .section.hero .hero-food .hero-food-join {
    top: -150%;
  }
}

.section.hero .hero-food-list {
  margin: 5.8rem -2.8rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}


@media (max-width: 550px) {
  .section.hero .hero-food-list {
    justify-content: center;
  }
}

.section.hero .hero-food-list .hero-food-list-item {
  position: relative;
  margin: 2rem 2.8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.section.hero .hero-food-list-item--orange .hero-food-list-item-img {
  background: var(--color-lightOrange);
}
.section.hero .hero-food-list-item--green .hero-food-list-item-img {
  background: var(--color-lightGreen);
}
.section.hero .hero-food-list-item--yellow .hero-food-list-item-img {
  background: var(--color-lightYellow);
}
.section.hero .hero-food-list-item--purple .hero-food-list-item-img {
  background: var(--color-lightPurple);
}
.section.hero .hero-food-list-item--blue .hero-food-list-item-img {
  background: var(--color-lightBlue);
}
.section.hero .hero-food-list-item--red .hero-food-list-item-img {
  background: var(--color-lightRed);
}

.section.hero .hero-food-list .hero-food-list-item .hero-food-list-item-img {
  width: 6.309rem;
  height: 6.309rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 100%;
  transition: all 0.15s ease-in-out;
}

.section.hero .hero-food-list .hero-food-list-item span {
  font-family: 'Amatic';
  font-style: normal;
  font-weight: bold;
  font-size: 2.377rem;
  line-height: 3.0rem;
  text-align: center;
  color: var(--color-secondary-3);
}


@media (min-width: 992px) {
  .section.hero .hero-food-list .hero-food-list-item:hover {
    z-index: 0;
  }

  .section.hero .hero-food-list .hero-food-list-item:hover .hero-food-list-item-info {
    opacity: 1;
    pointer-events: all;
  }
  .section.hero .hero-food-list .hero-food-list-item:hover .hero-food-list-item-img {
    background: rgba(255, 255, 255, 0.50);
  }
  .section.hero .hero-food-list .hero-food-list-item:hover + .hero-food-list-item,
  .section.hero .hero-food-list .hero-food-list-item:hover + .hero-food-list-item + .hero-food-list-item {
    opacity: 0.3;
  }
}

.section.hero .hero-food-list .hero-food-list-item-info {
  pointer-events: none;
  position: absolute;
  top: -2.4rem;
  left: -2.4rem;
  opacity: 0;
  width: 29rem;
  height: auto;
  padding: 2.4rem;
  box-shadow: 0rem 0.2rem 4rem rgba(0, 0, 0, 0.15);
  border-radius: 2rem;
  transition: opacity 0.15s ease-in-out;
  z-index: -1;
}

@media (max-width: 992px) {
  .section.hero .hero-food-list .hero-food-list-item-info {
    display: none;
  }
}

.section.hero .hero-food-list-item--orange .hero-food-list-item-info {
  background: var(--color-lightOrange);
}
.section.hero .hero-food-list-item--green .hero-food-list-item-info {
  background: var(--color-lightGreen);
}
.section.hero .hero-food-list-item--yellow .hero-food-list-item-info {
  background: var(--color-lightYellow);
}
.section.hero .hero-food-list-item--purple .hero-food-list-item-info {
  background: var(--color-lightPurple);
}
.section.hero .hero-food-list-item--blue .hero-food-list-item-info {
  background: var(--color-lightBlue);
}
.section.hero .hero-food-list-item--red .hero-food-list-item-info {
  background: var(--color-lightRed);
}

.section.hero .hero-food-list .hero-food-list-item-info span {
  margin-top: 7.4rem;
  display: block;
  font-style: normal;
  font-weight: bold;
  font-size: 2.377rem;
  line-height: 3rem;

  text-align: left;
}

.section.hero .hero-food-list .hero-food-list-item-info p {
  margin-top: 11.5rem;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 130.3%;
  opacity: 0.8;
}

.section.hero .hero-food-list .hero-food-list-item-info a {
  margin-top: 2.6rem;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  padding: 0.85rem 3.2rem;
  background: var(--color-white);
  border-color: transparent;
}

@media (min-width: 992px) {
  .section.hero .hero-food-list-item--orange:hover span,
  .section.hero .hero-food-list-item--orange .hero-food-list-item-info p,
  .section.hero .hero-food-list-item--orange .hero-food-list-item-info a {
    color: var(--color-darkOrange);
  }
  .section.hero .hero-food-list-item--green:hover span,
  .section.hero .hero-food-list-item--green .hero-food-list-item-info p,
  .section.hero .hero-food-list-item--green .hero-food-list-item-info a {
    color: var(--color-darkGreen);
  }
  .section.hero .hero-food-list-item--yellow:hover span,
  .section.hero .hero-food-list-item--yellow .hero-food-list-item-info p,
  .section.hero .hero-food-list-item--yellow .hero-food-list-item-info a {
    color: var(--color-darkYellow);
  }
  .section.hero .hero-food-list-item--purple:hover span,
  .section.hero .hero-food-list-item--purple .hero-food-list-item-info p,
  .section.hero .hero-food-list-item--purple .hero-food-list-item-info a {
    color: var(--color-darkPurple);
  }
  .section.hero .hero-food-list-item--blue:hover span,
  .section.hero .hero-food-list-item--blue .hero-food-list-item-info p,
  .section.hero .hero-food-list-item--blue .hero-food-list-item-info a {
    color: var(--color-darkBlue);
  }
  .section.hero .hero-food-list-item--red:hover span,
  .section.hero .hero-food-list-item--red .hero-food-list-item-info p,
  .section.hero .hero-food-list-item--red .hero-food-list-item-info a {
    color: var(--color-darkRed);
  }
}

/**
 * Section: service
 */

.section.service {
  padding: 15.3rem 0 46rem 0;
  margin-top: 2.1rem;
  background-size: cover;
  background-image: url('../images/professionnels/service/bg.svg');
  background-repeat: no-repeat;
}

.section.service .service-container h2 {
  margin: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 4.0rem;
  line-height: 5.2rem;
  color: var(--color-secondary);
}

.section.service .service-container h2 span {
  display: block;
  color: var(--color-primary-2);
}

.section.service .service-container-row {
  margin-top: 5.6rem;
}

.section.service .service-container h4 {
  margin: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: var(--color-primary-2);
}

.section.service .service-container p {
  margin: 1.6rem 0 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 150%;
  color: var(--color-secondary);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .section.service .service-container-row .service-container-row-col {
    width: 100%;
  }
  .section.service .service-container-row .service-container-row-col + .service-container-row-col {
    margin: 2rem 0 0;
  }
}
@media (max-width: 550px) {
  .section.service {
    padding: 15.3rem 0 36rem 0;
  }
}

/**
 * Section: no waste
 */

.section.no-waste {
  margin-top: -42.6rem;
}

.section.no-waste .no-waste-data {
  max-width: 96rem;
}

.section.no-waste .no-waste-condition {
  position: absolute;
  bottom: 3.2rem;
  right: 3.2rem;
  font-style: normal;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 130.3%;
  color: var(--color-white);
  line-height: 0;
}

.section.no-waste .container {
  margin-top: 12.4rem;
  padding: 6rem 3.5rem;
  background: url('../images/professionnels/service/bg-waste.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: how
 */

.section.how {
  margin-top: 12rem;
}

.section.how .steps {
  position: relative;
  background-color:rgba(59, 235, 133, 0.1);
  padding: 3.2rem 7.2rem;
  border-radius: 1.6rem;
}

.section.how .steps h2 {
  margin: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 4rem;
  line-height: 5.2rem;
  color: var(--color-secondary);
}

.section.how .steps h2 span {
  display: block;
  color: var(--color-primary-2);
}

.section.how .steps h4 {
  display: flex;
  margin: 4rem 0 1.6rem;
  align-items: center;
  font-style: normal;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 140%;
  color: var(--color-primary-2);
}

.section.how .steps h4 img {
  margin-right: 1.6rem;
}

.section.how .steps p {
  font-style: normal;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: var(--color-secondary);
  opacity: 0.8;
}

.section.how .steps .time {
  position: absolute;
  top: 5%;
  right: -45%;
}

.section.how .steps .girl {
  position: absolute;
  top: 40%;
  right: -55%;
}

.section.how .steps .download {
  display: flex;
  padding: 3.2rem 5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -9.0rem;
  right: -28rem;
  background: white;
  box-shadow: 0px 4px 25px rgba(50, 50, 50, 0.1);
  border-radius: 2rem;
}

.section.how .steps .download span {
  font-style: normal;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 140%;
  text-align: center;
  color: var(--color-secondary);
}

.section.how .steps .download .btn {
  margin-top: 3.2rem;
}

@media (max-width: 768px) {
  .section.how .steps .girl, .section.how .steps .time {
    display: none;
  }
  .eight.columns {
    width: 100%;
  }
  .section.how .download {
    top: 105%;
    bottom: auto!important;
    left: 0;
    right: 0!important;
  }
}

@media (max-width: 550px) {
  .section.how {
    margin-top: 8rem;
  }

  .section.how .steps {
    padding: 3.2rem 1.6rem;
  }

  .section.how .steps h2 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .section.how .steps h4 {
    font-size: 1.89rem;
  }

  .section.how .steps p {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  .section.how .steps .download {
    padding: 3.2rem 1.6rem;
  }
}

/**
* Section: trust
*/
.section.trust {
  margin-top: 18.8rem;
}

@media (max-width: 768px) {
  .section.trust {
    margin-top: 33rem;
  }
}

.section.trust .container.content {
  max-width: 95%;
}

.section.trust h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 4rem;
  line-height: 5.2rem;
  text-align: center;
  color: var(--color-secondary-2);
}

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

.section.trust .five.columns img {
  width: 100%;
}

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

.section.trust h4 {
  padding-right: 9rem;
  display: flex;
  justify-content: flex-end;
  font-family: 'Amatic';
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 148.44%;
  color: var(--color-secondary-3);
}

.section.trust .man {
  width: 95%;
  height: 95%;
  display: flex;
  justify-content: center;
}

.section.trust .man img.fade-in-blop {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: width, height 1s ease-in-out;
  will-change: width, height;
}

.section.trust .man img.fade-in-blop.visible {
  width: 115%;
  height: 115%;
}

.section.trust .quote {
  padding: 4.8rem 7.4rem 3.2rem;
  background: var(--color-primary-3);
  border-radius: 20px;
}

.section.trust .quote p {
  margin: 0;
  position: relative;
  font-style: normal;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 140%;
  color: var(--color-secondary);
  opacity: 0.8;
}

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

.section.trust .quote p img {
  position: absolute;
  left: -5rem;
  top: -1.6rem;
}


.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 .five.columns,
  .section.trust .seven.columns {
    width: 100%;
  }

  .section.trust .row {
    flex-direction: column;
  }

  .section.trust .five.columns {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section.trust .five.columns .man {
    margin-top: 4rem;
  }

  .section.trust h4 {
    margin-top: 6rem;
    padding: 0;
    justify-content: start;
  }
}

@media (max-width: 550px) {
  .section.trust h2 {
    text-align: left;
  }
  .section.trust h2 br {
    display: none;
  }
  .section.trust .quote {
    padding: 2.4rem 3.7rem 1.6rem;
  }

  .section.trust .quote p {
    font-size: 1.6rem;
  }
  .section.trust .quote p img {
    left: -3.0rem;
    top: -0.5rem;
    width: 2rem;
  }
  .section.trust .quote span {
    font-size: 1.2rem;
  }
}

/**
* Section: meet
*/

.section.meet {
  margin-top: 12rem;
}

.section.meet .row {
  max-width: 96rem;
  margin: auto;
}

.section.meet h4 {
  font-style: normal;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 140%;
  color: var(--color-secondary-2);
}

.section.meet h4 span {
  color: var(--color-primary-2);
}

.section.meet p {
  margin: 0 0 3rem;
  font-style: normal;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: var(--color-secondary);
}

@media (max-width: 550px) {
  .section.meet {
    margin-top: 8rem;
  }
}

/**
* Section: advice
*/

.section.advice {
  margin-top: 12rem;
}

.section.advice .girl {
  position: absolute;
  right: 1rem;
  bottom: 0;
}

.section.advice .container {
  position: relative;
  padding: 4rem 0;
  background: white;
  box-shadow: 0px 4px 25px rgba(50, 50, 50, 0.1);
  border-radius: 2rem;
}

.section.advice .container .row {
  display: flex;
  justify-content: center;
}

.section.advice h2 {
  margin: 0 0 1.6rem;
  font-style: normal;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 140%;
  text-align: center;
  color: var(--color-secondary);
}

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

.section.advice p {
  margin: 0 0 4.5rem;
  font-style: normal;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 3.2rem;
  text-align: center;
  color: var(--color-secondary);
  padding: 0 1.6rem;
}

.section.advice .cta {
  text-align: center;
}

@media (max-width: 992px) {
  .section.advice .six.columns {
    width: 100%;
  }
  .section.advice .girl {
    bottom: -6rem;
  }
  .section.advice .container {
    overflow: hidden;
  }
}

@media (max-width: 550px) {
  .section.advice {
    margin-top: 8rem;
    padding: 0 20px;
  }
  .section.advice .girl {
    display: none;
  }
}

/*
* Contact
*/

.section.contact {
  margin-top: 12rem;
}

@media (max-width: 768px) {
  .section.contact {
    margin-top: 8rem;
  }
}

@media (max-width: 768px) {
  .section.contact .contact-col {
    margin-left: 0;
    width: 100%;
  }

  .section.contact .contact-col + .contact-col {
    margin-top: 4rem;
  }
}

.section.contact h2 {
  margin: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 4.0rem;
  line-height: 5.2rem;
  color: var(--color-secondary);
}

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

.section.contact p {
  margin: 1.6rem 0 0;
  font-style: normal;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: var(--color-secondary);
}
