@charset "UTF-8";
/* FONTS */
/* COLORS */
/* GRADIENTS */
/* BREAKPOINTS */
.support-form {
  --form-accent-bg-color: #ABD934;
  --form-accent-gradient: linear-gradient(-90deg, #93BF20, #B8E73E);
  --form-accent-txt-color: #ABD934;
  background-color: rgb(240, 240, 240);
  padding: clamp(15px, 3vw, 30px);
  border-radius: 15px;
  max-width: 600px;
  margin-inline: auto;
}
.support-form > *:not(:last-child) {
  margin-bottom: 15px;
}
.support-form__footer > *:not(:last-child) {
  margin-bottom: 10px;
}
.support-form__footer .form-label {
  color: black;
}
.support-form .amount-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 10px;
  text-align: center;
}
.support-form .amount-choice {
  border: 2px solid grey;
  border-radius: 5px;
}
.support-form .amount-choice input {
  appearance: none;
}
.support-form .amount-choice label {
  display: inline-block;
  width: 100%;
  padding: 5px;
  cursor: pointer;
}
.support-form .amount-choice:has(input:checked) {
  color: white;
  border: none;
  background-color: var(--form-accent-bg-color);
}
.support-form .amount-choice:focus-within {
  /* A NE PAS SUPPRIMER - Accessibilité */
  outline: 3px solid lightblue;
}
.support-form .amount-choice--custom {
  padding: 0;
  position: relative;
}
.support-form .amount-choice--custom::before {
  position: absolute;
  content: "€";
  display: block;
  inset: 50% auto auto 0.5rem;
  transform: translateY(-50%);
}
.support-form .amount-choice--custom > input {
  appearance: none;
  border: none;
  text-align: center;
  font-weight: bold;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  color: var(--form-accent-txt-color);
}
.support-form button[type=submit] {
  border: none;
  border-radius: 5px;
  background: var(--form-accent-gradient);
  color: white;
  padding: 0.5em;
}
.support-form .switch {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  background-color: rgb(225, 225, 225);
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  padding: 8px;
}
.support-form .switch-option {
  border-radius: 10px;
  color: var(--form-accent-txt-color);
  font-weight: bold;
  border: none;
  background-color: transparent;
  z-index: 1;
}
.support-form .switch-option > input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.support-form .switch-option > label {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding-block: 8px;
}
.support-form .switch-option:has(input:checked) {
  color: white;
}
.support-form .switch-option:focus-within {
  /* A NE PAS SUPPRIMER - Accessibilité */
  outline: 3px solid lightblue;
}
.support-form .switch::before {
  content: "";
  position: absolute;
  top: 8px;
  right: auto;
  bottom: 8px;
  width: calc(50% - 8px);
  border-radius: 10px;
  background-color: var(--form-accent-bg-color);
  transition: left 250ms, background-color 250ms;
}
.support-form:has(.switch > :first-child > input:checked) {
  --form-accent-bg-color: #ABD934;
  --form-accent-gradient: linear-gradient(-90deg, #93BF20, #B8E73E);
  --form-accent-txt-color: #ABD934;
}
.support-form:has(.switch > :first-child > input:checked) .switch::before {
  left: 8px;
}
.support-form:has(.switch > :first-child > input:checked) #donation-amounts > :last-child {
  display: none;
}
.support-form:has(.switch > :last-child > input:checked) {
  --form-accent-bg-color: #E99F13;
  --form-accent-gradient: linear-gradient(-90deg, #E99F13, #F1DC1C);
  --form-accent-txt-color: #E99F13;
}
.support-form:has(.switch > :last-child > input:checked) .switch::before {
  left: 50%;
}
.support-form:has(.switch > :last-child > input:checked) #donation-amounts > :first-child {
  display: none;
}

.campaign-progress-bar {
  border-radius: 100px;
  height: 20px;
  background-color: #E9E9E9;
}
.campaign-progress-bar__inner {
  position: relative;
  width: 0%;
  height: 100%;
  background: linear-gradient(-90deg, #93BF20, #B8E73E);
  border-radius: 100px;
  animation: 1.2s ease-out 0.7s progressbar-fill forwards;
}
.campaign-progress-bar__icon {
  position: absolute;
  inset: 50% auto auto 100%;
  translate: -50% -50%;
}
.campaign-progress-bar__icon svg {
  fill: #ABD934;
  rotate: 29deg;
  height: 40px;
  width: auto;
  aspect-ratio: 1;
}
.campaign-progress-bar__icon svg path {
  stroke: white;
  stroke-width: 6px;
  stroke-linejoin: round;
}

@keyframes progressbar-fill {
  0% {
    width: 0%;
  }
  100% {
    width: clamp(0%, var(--progress-width, 0%), 100%);
  }
}
@keyframes leafAnim {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 6deg;
  }
}
main > section:nth-of-type(1),
main > section:nth-of-type(2) {
  margin-bottom: 0 !important;
}

/* Start - HERO SECTION*/
.hero {
  text-align: center;
}
.hero__image {
  font-size: clamp(0.75em, 3vw, 1em);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: #6B4909;
}
.hero__image .highlighted {
  font-size: 2.25em;
  text-transform: none;
  font-weight: bold;
}
.hero__images {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: end;
  column-gap: clamp(10px, 3vw, 35px);
}
.hero__images > :first-child .highlighted {
  color: #93BF20;
}
.hero__images > :last-child .highlighted {
  color: #E99F13;
}
.hero__images > :last-child > img {
  max-height: clamp(125px, 35vw, 150px);
}
@media screen and (min-width: 750px) {
  .hero {
    display: grid;
    column-gap: 75px;
    grid-template-columns: 1.25fr 1fr;
    text-align: inherit;
  }
}

.plant {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.plant__stem {
  max-height: clamp(250px, 80vw, 325px);
  max-width: 100%;
}
.plant__left-leaf {
  position: absolute;
  max-width: 115%;
  animation: leafAnim 2500ms alternate infinite ease-in-out;
  z-index: -1;
  inset: 15% 62% auto auto;
  transform-origin: 100% 75%;
}
.plant__right-leaf {
  position: absolute;
  max-width: 115%;
  animation: leafAnim 2500ms alternate infinite ease-in-out;
  z-index: -1;
  inset: 65% auto auto 13%;
  transform-origin: 0% 75%;
}

/* End - HERO SECTION */
/* Start - MEMBERSHIP SECTION */
#support-section {
  padding-block: 50px;
  background-color: #ABD934;
}
#support-section > div {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
#support-section .bg-imgs {
  position: relative;
}
#support-section .bg-imgs > :first-child {
  position: absolute;
  inset: -50px auto auto 0;
  max-width: 50px;
}
#support-section .bg-imgs > :last-child {
  position: absolute;
  inset: -50px 0 auto auto;
  max-width: 50px;
  transform: scaleX(-1);
}
@media screen and (max-width: 750px) {
  #support-section {
    padding-block: 20px;
  }
  #support-section .bg-imgs {
    display: none;
  }
}

/* End - MEMBERSHIP SECTION */
/* Start - PARTNERS SECTION */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.partners > * {
  max-height: clamp(45px, 10vw, 65px);
}

/* End - PARTNERS SECTION */
.campaign-goals {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.campaign-goal {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

/*# sourceMappingURL=support.output.css.map */
