/**
 * Base style
 */

html {
  height: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html,
body {
  position: relative;
  font-family: "Rebond Grotesque", Arial, sans-serif;
  color: #0a3a25;
}
body {
  margin: 0;
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
h1 {
  color: #E36177;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
}
h2 {
  color: #0A3A25;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
}
h1 span, 
h2 span,
h3 span {
  background-color: #48b386;
  padding: 4px 6px 3px 6px;
  color: #fff;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 130%;
  font-weight: 700;
  transform: translateY(-3px);
  display: inline-block;
  width: fit-content;
} 

p {
  font-family: "EB Garamond", serif;
}
::selection {
  background-color: #0a3a25;
  color: #fff;
}
a {
  color: #48b386;
  text-decoration: none;
}
strong {
  color: #48b386;
}
.strong-alternate {
  color: #0a3a25;
  font-weight: 800;
}
@media all and (min-width: 1000px){
  h1, 
  h2 {
    font-size: 2rem;
  }
  h1 {
    text-align: left;
  }

}


/**
 * Grid row
 */

.grid-row {
  padding: 0 1.5rem;
}
@media all and (min-width: 1000px) {
  .grid-row {
    padding: 0;
    width: 80%;
    max-width: 1108px;
    margin: 0 auto;
  }
  .grid-row--10 {
    max-width: 920px;
  }
  .grid-row--8 {
    max-width: 730px;
  }
  .grid-row--6 {
    max-width: 542px;
  }
}


/**
 * Header
 */

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}


/**
 * Hero
 */

.hero {
  position: relative;
  z-index: 1;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.hero__text-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__icon {
  flex-shrink: 0;
}
.hero__text {
  color: #E36177;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 130%;
  font-family: "Rebond Grotesque", sans-serif;
  max-width: 220px;
  margin: 0;
}
.hero__question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin: 1.75rem 0;
  max-width: 376px;
}
.hero__question::before {
  content: '';
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 361px;
  height: 333px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/question-shape.svg');
  z-index: -1;
}
.hero__question-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 130%;
}
.hero__question-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 8px;
}
.hero__question-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.hero__question-item p {
  margin: 0;
}
.hero__question-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 130%;
}
.hero__question-cta {
  background-color: #48b386;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Rebond Grotesque", sans-serif;
  transition: ease all 150ms;
}
.hero__question-cta:hover {
  background-color: #2f5c48;
}
.hero__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 550px;
  margin: 60px auto;
  gap: 2rem;
  padding: 0 43px;
  position: relative;
  z-index: 1;
}
.hero__quote-content {
  color: #48b386;
  font-family: "EB Garamond";
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  position: relative;
}
.hero__quote-content::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -40px;
  width: 38px;
  height: 37px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/quote-shape-1.svg');
  z-index: -1;
}
.hero__quote-content::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -40px;
  width: 38px;
  height: 37px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/quote-shape-2.svg');
  z-index: -1;
}
.hero__quote-author {
  display: flex;
  font-family: "EB Garamond";
  flex-direction: column;
  font-size: 1.125rem;
}
.hero__quote-author span {
  color: #48b386;
  font-family: "Rebond Grotesque", sans-serif;
  font-size: 1rem;
}
@media all and (min-width: 374px ){
  .hero__quote-content::after {
    bottom: -15px;
    right: 50px;
  }
}
@media all and (min-width: 400px){
  .hero__question-cta {
    padding: 1rem 2rem;
  }
}
@media all and (min-width: 450px ){
  .hero__quote-content::after {
    bottom: -15px;
    right: -30px;
  }
}
@media all and (min-width: 1000px){
  .hero__question {
    margin: 3.75rem 0;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -60px;
    width: 208px;
    height: 209px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/hero-shape-1.svg');
    z-index: -1;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: 100px;
    width: 205px;
    height: 270px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/hero-shape-2.svg');
    z-index: -1;
  }
  .hero__wrapper {
    flex-direction: row-reverse;
    justify-content: start;
    margin: 80px 0;
    gap: 24px;
  }
  .hero__question::before {
    content: '';
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 449px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/question-shape--desktop.svg');
    z-index: -1;
  }
  .hero__quote-content {
    font-size: 1.875rem;
  }

}


/**
 * Description
 */

.description-product {
  background-color: #FFE8EC;
  padding: 50px 0 100px 0;
}
.description-product__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.description-product__content {
  max-width: 476px;
}
.description-product__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.description-product__image::before {
  content: '';
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 353px;
  height: 355px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/description-shape.svg');
  z-index: -1;
}
.description-product__image picture {
  flex-shrink: 0;
}
.description-product__image-description {
  max-width: 195px;
  font-family: "EB Garamond", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
}
.description-product__list {
  font-family: "Rebond Grotesque", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.description-product__texts p:first-child {
  font-style: italic;
  font-family: "EB Garamond", serif;
  font-size: 1.125rem;
  line-height: 24px;
}
.description-product__texts p:last-child {
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: 400;
}
.description-product__texts a {
  font-family: "Rebond Grotesque", sans-serif;
}
@media all and (min-width: 1000px){
  .description-product {
    padding: 100px 0;
  }
  .description-product__wrapper {
    flex-direction: row;
    justify-content: end;
    margin: 80px 0;
    gap: 24px;
  }
  .description-product__content {
    padding: 0 40px;
  }
  .description-product__image::before {
    width: 445px;
    height: 447px;
    top: 55%;
  }
  .description-product__image-description,
  .description-product__list,
  .description-product__texts p:first-child  {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1200px){
  .description-product__image::before {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
  }
  .description-product__image {
  
    flex-direction: row;
    gap: 20px;
  }
}


/**
 * Other products
 */

.other-products {
  padding: 95px 0;
}
.other-products__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.other-products__text {
  position: relative;
  z-index: 1;
  max-width: 300px;
  text-align: center;
  font-weight: 600;
  line-height: 130%;
  font-size: 1.75rem;
  margin: 40px 0 80px 0;
}
.other-products__text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/sites/default/files/images/landing-page/Créer%20Landing%20page/other-product-shape.svg');
  z-index: -1;
}
.other-products__item {
  z-index: 1;
  max-width: 265px;
}
.other-products__cta {
  background-color: #48b386;
  color: #fff;
  padding: 8px 12px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 0.75rem;
  font-family: "Rebond Grotesque",  sans-serif;
  transition: ease all 150ms;
}
.other-products__cta:hover {
  background-color: #2f5c48;
}
@media all and (min-width: 1000px){
  .other-products__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }
  .other-products__text {
    text-align: left;
    max-width: 260px;
    margin-top: 85px;
  }
  .other-products__text::before {
    top: 60%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 398px;
    height: 426px;
  }
  .other-products__item {
    max-width: unset;
  }
}

/**
 * Form block
 */

.form-block {
  background-color: #F0F8F0;
}
.form-block__wrapper {
  padding: 60px 0;
  max-width: 518px;
  margin: auto;
}
.form-block__wrapper #edit-processed-text-03 p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 130%;
  font-family: "Rebond Grotesque", sans-serif;
  margin: 0;
} 
.form-block__wrapper #edit-processed-text-03 p:last-child {
  color: #48B386;
  font-family: "EB Garamond", serif;
  font-size: 1.875rem;
  margin: 8px 0 0 0;
}
.form-block .form-type-textfield {
  margin-top: 1rem;
}
.form-block .form-type-textfield label {
  margin-bottom: 8px;
  font-family: "EB Garamond", serif;
}
.form-block .form-type-textfield input {
  height: 45px;
}
.form-block #edit-processed-text-02 {
  max-width: 349px;
}
.form-block .webform-button--submit {
  background-color: #48b386;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Rebond Grotesque", sans-serif;
  transition: ease all 150ms;
  cursor: pointer;
}
.form-block .webform-button--submit:hover {
  background-color: #2f5c48;
}
.form-block .form-type-webform-terms-of-service {
  margin-top: 1rem;
}
@media all and (min-width: 1000px){
  .form-block__wrapper #edit-processed-text-03 p:first-child {
    font-size: 1.875rem;
  } 
}