@charset "UTF-8";
:root {
  --black: #000000;
  --gray: #DDE0DB;
  --white: #FFFFFF;
  --midnight: #002512;
  --emerald: #00743D;
  --mint: #72B678;
  --z-loader: 1001;
  --z-navbar: 1000;
  --z-navscreen: 999;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  background: var(--midnight);
  color: var(--white);
  font-family: halyard-text, "halyard-display", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

html {
  margin: 0 !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: auto;
}

body {
  font-size: 1.5rem;
  line-height: 1.25;
}

article, aside, figcaption, figure,
footer, header, hgroup, main,
nav, section {
  display: block;
}

h1, h2, h3,
h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol, li {
  font-size: inherit;
  font-weight: inherit;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  overflow: visible;
  text-transform: none;
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: calc(1rem + 0.325vw);
  font-weight: 100;
  line-height: 1.1;
  border-radius: 10rem;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
}
.btn span {
  position: relative;
  overflow: hidden;
}
.btn svg {
  top: 0;
  height: 0.6em;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
}
.btn svg path {
  fill: currentColor;
}
.btn svg:nth-child(1) {
  position: relative;
}
.btn svg:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 100%;
}
.btn:hover {
  background: var(--white);
  color: var(--midnight);
}
.btn:hover svg:nth-child(1) {
  top: 1em;
}
.btn:hover svg:nth-child(2) {
  top: 0.3em;
}

a {
  color: inherit;
  text-decoration: none;
}

.header__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2vmin 5vw;
  top: 0;
  right: 0;
  left: 0;
  position: fixed;
  z-index: var(--z-navbar);
  transition: 0.5s ease all;
}
.header__backdrop {
  --extension: 4vmin;
  --transition: calc(100% - var(--extension));
  position: absolute;
  z-index: 1;
  inset: 0;
  bottom: calc(-1 * var(--extension));
  -webkit-mask-image: linear-gradient(to bottom, black 0, black 50%, transparent var(--transition));
          mask-image: linear-gradient(to bottom, black 0, black 50%, transparent var(--transition));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.header--open .header__backdrop {
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}
.header__logo {
  display: flex;
  max-width: 60vw;
  z-index: 2;
}
.header__logo img {
  max-width: 100%;
}
.header__trigger {
  display: flex;
  position: relative;
  z-index: 2;
  top: -2px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
}
.header__trigger span {
  display: block;
  position: relative;
  top: 2px;
  height: 1.375rem;
  width: calc(1rem + 2.6vw);
  margin-right: 1rem;
}
.header__trigger span i {
  display: block;
  position: absolute;
  background: var(--mint);
  height: 1px;
  width: 100%;
  left: 8px;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) left, 1s cubic-bezier(0.215, 0.61, 0.355, 1) opacity;
}
.header__trigger span i:nth-child(1) {
  top: 0px;
}
.header__trigger span i:nth-child(2) {
  top: 4px;
}
.header__trigger span i:nth-child(3) {
  top: 8px;
}
.header__trigger span i:nth-child(4) {
  top: 12px;
}
.header__trigger span i:nth-child(5) {
  top: 16px;
}
.header__trigger span i:nth-child(6) {
  top: 20px;
}
.header__trigger:hover i, .header__trigger:focus i, .header__trigger:active i {
  opacity: 1;
  left: 0;
}
.header__trigger:hover i:nth-child(1), .header__trigger:focus i:nth-child(1), .header__trigger:active i:nth-child(1) {
  transition-delay: 0.15s;
}
.header__trigger:hover i:nth-child(2), .header__trigger:focus i:nth-child(2), .header__trigger:active i:nth-child(2) {
  transition-delay: 0.3s;
}
.header__trigger:hover i:nth-child(3), .header__trigger:focus i:nth-child(3), .header__trigger:active i:nth-child(3) {
  transition-delay: 0.45s;
}
.header__trigger:hover i:nth-child(4), .header__trigger:focus i:nth-child(4), .header__trigger:active i:nth-child(4) {
  transition-delay: 0.6s;
}
.header__trigger:hover i:nth-child(5), .header__trigger:focus i:nth-child(5), .header__trigger:active i:nth-child(5) {
  transition-delay: 0.75s;
}
.header__trigger:hover i:nth-child(6), .header__trigger:focus i:nth-child(6), .header__trigger:active i:nth-child(6) {
  transition-delay: 0.9s;
}

.nav {
  position: fixed;
  display: grid;
  align-items: center;
  z-index: var(--z-navscreen);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  padding: 15vmin 5vw 20vmin 5vw;
  background: var(--midnight);
  overflow-y: scroll;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: translate3d(5vw, 0, 0);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
  will-change: clip-path, transform;
  pointer-events: none;
}
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--midnight) url(../images/background-navigation@2x.jpg) no-repeat center center;
  background-size: cover;
}
.header--open .nav {
  pointer-events: all;
  transform: translate3d(0, 0, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.nav__list {
  font-weight: 100;
}
.nav__list li {
  position: relative;
  z-index: 10;
  left: 5vw;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1) all;
  transition-delay: calc(var(--d) * 0.1s);
}
.nav__list li:not(:last-child) {
  margin-bottom: 1.5vmin;
}
.header--open .nav__list li {
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.nav__list a {
  display: flex;
  align-items: baseline;
  font-size: calc(1rem + 1.95vw);
  line-height: 1.25;
}
.nav__counter {
  margin-right: 1rem;
  color: var(--mint);
  text-align: right;
  font-size: 55%;
  width: 2.75em;
}
.nav__counter--empty::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  bottom: 0.5em;
  background: var(--mint);
}
.nav__trigger {
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 11;
  height: 70px;
  width: 70px;
  right: 5vw;
  bottom: 5vw;
  border: 1px solid var(--white);
  border-radius: 50%;
  transform-origin: center center;
  transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1) all;
  color: var(--white);
  font-weight: 100;
}
.nav__trigger i {
  position: absolute;
  width: 50%;
  height: 1px;
  background: var(--white);
}
.nav__trigger i:nth-child(1) {
  transform: rotate(45deg);
}
.nav__trigger i:nth-child(2) {
  transform: rotate(-45deg);
}
.nav__trigger:hover, .nav__trigger:focus, .nav__trigger:active {
  transform: rotate(270deg);
  background: var(--white);
}
.nav__trigger:hover i, .nav__trigger:focus i, .nav__trigger:active i {
  background: var(--midnight);
}

.main {
  --shadow-color: 149deg 100% 5%;
  --shadow-elevation-high:
  0px 0.4px 0.5px hsl(var(--shadow-color) / 0.34),
  0px 2.6px 2.9px -0.4px hsl(var(--shadow-color) / 0.34),
  0px 4.8px 5.4px -0.7px hsl(var(--shadow-color) / 0.34),
  0px 7.9px 8.9px -1.1px hsl(var(--shadow-color) / 0.34),
  -0.1px 12.6px 14.2px -1.4px hsl(var(--shadow-color) / 0.34),
  -0.1px 19.8px 22.3px -1.8px hsl(var(--shadow-color) / 0.34),
  -0.1px 30px 33.8px -2.1px hsl(var(--shadow-color) / 0.34),
  -0.2px 44.3px 49.8px -2.5px hsl(var(--shadow-color) / 0.34);
  position: relative;
  z-index: 10;
  background: var(--midnight);
  padding-bottom: 20vmin;
}

.footer {
  position: sticky;
  bottom: 0;
  padding: 0 10px 0 10px;
}
@media (min-width: 570px) {
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
.footer__copyright {
  display: flex;
  align-items: baseline;
  font-size: 21vw;
  line-height: 1;
  overflow: hidden;
}
.footer__copyright span {
  position: relative;
  top: 0.165em;
  font-size: 1.35em;
  margin-right: 0.1em;
}
.footer__links {
  display: flex;
  flex-direction: column;
  position: relative;
  top: -2vw;
}
.footer__links li {
  text-align: right;
}
.footer__links a {
  font-size: calc(1rem + 0.65vw);
  font-weight: 100;
}

.section-block {
  --line-color: var(--mint);
}
.section-block:not(.section-block--quotes) {
  overflow: hidden;
}
.section-block--light {
  --pledge-content-color: var(--midnight);
  --commitments-title-color: var(--white);
  --commitments-list-color: var(--midnight);
  --line-color: var(--midnight);
  background: var(--mint);
}

.introduction__aim p, .introduction__comment h2 {
  font-size: calc(1rem + 0.65vw);
  font-weight: 200;
}

.introduction {
  padding: calc(3vmin + 4rem) 0 0 0;
  margin-bottom: calc(5rem + 6.5vw);
}
.introduction__title {
  font-weight: 100;
  font-size: clamp(2rem, 4.75vw, 8rem);
  line-height: 1;
  text-align: justify;
  margin-bottom: 7.8vmin;
  padding: 0 10px;
}
.js .introduction__title .line {
  position: relative;
  overflow: hidden;
  margin: -0.125em 0 -0.25em 0;
}
.js .introduction__title .line:not(:last-child) {
  display: flex !important;
  justify-content: space-between;
}
.js .introduction__title .word {
  position: relative;
  transform: translate3d(0, 100%, 0);
  line-height: 1.25;
}
.introduction__content {
  position: relative;
  padding: 5.2vw 0;
  margin: 0 10vw 0 35vw;
}
.introduction__content::before {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 100%;
  margin-right: calc(10vw + 40px);
  width: calc(50vw - 80px);
  border: 1px solid var(--mint);
  border-radius: 100vw;
  box-shadow: 0 0 0 7px var(--midnight), 0 0 0 8px var(--mint), 0 0 0 15px var(--midnight), 0 0 0 16px var(--mint), 0 0 0 23px var(--midnight), 0 0 0 24px var(--mint), 0 0 0 31px var(--midnight), 0 0 0 32px var(--mint), 0 0 0 39px var(--midnight), 0 0 0 40px var(--mint);
}
@media (min-width: 570px) {
  .introduction__content::before {
    margin-right: calc(5vw + 40px);
    width: calc(35vw - 80px);
  }
}
@media (min-width: 570px) {
  .introduction__content {
    margin-left: 45vw;
  }
}
.js .introduction__content {
  opacity: 0;
  transform: translate3d(0, 5vw, 0);
}
.introduction__comment {
  margin-bottom: calc(1.5rem + 1.3vw);
}
.introduction__scroll {
  margin-bottom: calc(3.5rem + 10.7vmin);
}
.introduction__aim {
  margin-bottom: calc(1.5rem + 1.3vw);
}
.introduction__aim p:not(:last-child) {
  margin-bottom: 0.75em;
}
.introduction__list {
  counter-reset: section;
}
.introduction__list li {
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: calc(1rem + 0.325vw);
  font-weight: 200;
  counter-increment: section;
  margin-bottom: 1em;
}
@media (min-width: 570px) {
  .introduction__list li {
    flex-direction: row;
    gap: 0.65vw;
    margin-bottom: 0.25em;
  }
}
.introduction__list li::before {
  content: "0" counter(section) "/06";
  color: var(--mint);
  width: 3em;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.introduction__list a {
  display: flex;
  align-items: center;
}
.introduction__list svg {
  position: absolute;
  left: 100%;
  top: 0.4em;
  height: 0.5em;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
}
.introduction__list a:hover svg, .introduction__list a:focus svg, .introduction__list a:active svg {
  opacity: 1;
  margin-left: 1rem;
}

.quotes {
  display: flex;
  font-weight: 100;
  position: relative;
  margin-bottom: calc(8rem + 10.4vw);
}
.quotes__offset {
  position: absolute;
  top: -100px;
}
.quotes blockquote {
  padding-top: calc(1.5rem + 5.2vw);
  padding-bottom: calc(1.5rem + 5.2vw);
  padding-right: 10vw;
  padding-left: 5vw;
}
.quotes blockquote:first-child {
  padding-top: 0;
}
@media (min-width: 570px) {
  .quotes blockquote {
    padding-left: 15vw;
  }
}
.quotes blockquote p {
  font-size: calc(1rem + 1.95vw);
  margin-bottom: 1rem;
}
.quotes blockquote footer {
  display: flex;
  font-size: calc(1rem + 0.65vw);
}
.quotes blockquote footer::before {
  content: "— ";
  color: var(--mint);
  margin-right: 0.5em;
}
.quotes__indicator {
  position: relative;
  z-index: 1;
  order: 2;
}
.quotes__dots {
  position: sticky;
  top: calc(2.5rem + 1.3vw);
  width: 12.5vw;
  overflow: hidden;
}
.quotes__dot {
  display: block;
  height: 25vw;
  width: 25vw;
  border: 1px solid var(--mint);
  border-radius: 50%;
  transition: 0.3s ease all;
}
.quotes__dot:not(:last-child) {
  margin-bottom: -10vw;
}

.pledge {
  --padding-large: 20vw;
  --padding-small: 5vw;
  position: relative;
  overflow: hidden;
}
@media (min-width: 760px) {
  .pledge {
    --padding-large: 20vw;
    --padding-small: 10vw;
  }
}
@media (min-width: 990px) {
  .pledge {
    --padding-large: 25vw;
  }
}
.pledge--right {
  padding-right: var(--padding-small);
  padding-left: var(--padding-large);
}
.pledge--left {
  padding-right: var(--padding-large);
  padding-left: var(--padding-small);
}
.pledge__number {
  color: var(--pledge-content-color, var(--white));
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}
.pledge__title {
  font-size: calc(1rem + 6.5vw);
  line-height: 1;
  margin-bottom: calc(1.5rem + 1.3vw);
}
.js .pledge__title .line {
  position: relative;
  overflow: hidden;
  margin-bottom: -0.2em;
}
.js .pledge__title .word {
  position: relative;
  transform: translate3d(0, 100%, 0);
  line-height: 1.25;
}
.pledge__content {
  color: var(--pledge-content-color, var(--white));
  margin-bottom: calc(2rem + 1.3vw);
}
.pledge__content p {
  font-size: calc(1.5rem + 0.65vw);
  font-weight: 100;
}
.pledge__content p + p {
  margin-top: calc(0.75rem + 0.65vw);
}
.pledge--01 {
  padding-bottom: calc(10rem + 13vw);
}
.pledge--02 {
  padding-bottom: calc(5rem + 6.5vw);
}
.pledge--03 {
  padding-top: calc(6rem + 7.8vw);
  padding-bottom: calc(5rem + 6.5vw);
}
.pledge--04 {
  padding-bottom: calc(5rem + 6.5vw);
}
.pledge--05 {
  padding-top: calc(6rem + 7.8vw);
  padding-bottom: calc(10rem + 13vw);
}
.pledge--06 {
  padding-bottom: calc(6rem + 7.8vw);
  margin-bottom: calc(2rem + 3.9vw);
}

.decoration {
  --square-side: 55px;
  --round-side: 80px;
  --straight-side: 21px;
  --start-offset: 20px;
  --default-offset: 2.5vw;
  position: absolute;
}
@media (min-width: 570px) {
  .decoration {
    --square-side: 110px;
    --round-side: 160px;
    --straight-side: 42px;
    --start-offset: 70px;
    --default-offset: 5vw;
  }
}
@media (min-width: 760px) {
  .decoration {
    --start-offset: 40px;
  }
}
.decoration svg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  transform-origin: center center;
}
.decoration svg * {
  fill: none;
  stroke: var(--line-color);
  stroke-width: 2px;
}
@media (min-width: 570px) {
  .decoration svg * {
    stroke-width: 1px;
  }
}
.pledge--01 .decoration--1 {
  top: 0;
  right: calc(var(--start-offset) * -1);
  height: var(--square-side);
  width: var(--square-side);
}
.pledge--01 .decoration--2 {
  top: var(--square-side);
  right: calc(var(--square-side) - var(--straight-side) - var(--start-offset));
  bottom: calc(var(--round-side) - var(--straight-side) + var(--round-side));
  width: var(--straight-side);
}
.pledge--01 .decoration--3 {
  right: calc(var(--square-side) - var(--straight-side) - var(--start-offset));
  bottom: calc(var(--round-side) - var(--straight-side));
  height: var(--round-side);
  width: var(--round-side);
}
.pledge--01 .decoration--4 {
  right: calc(var(--square-side) - var(--straight-side) + var(--round-side) - var(--start-offset));
  left: calc(var(--default-offset) + var(--round-side));
  bottom: calc(var(--round-side) - var(--straight-side));
  height: var(--straight-side);
}
.pledge--01 .decoration--5 {
  left: var(--default-offset);
  bottom: 0;
  height: var(--round-side);
  width: var(--round-side);
}
.pledge--02 .decoration--1 {
  top: 0;
  left: var(--default-offset);
  bottom: 0;
  width: var(--straight-side);
}
.pledge--03 .decoration--1 {
  top: 0;
  left: var(--default-offset);
  height: var(--square-side);
  width: var(--square-side);
}
.pledge--03 .decoration--2 {
  top: calc(var(--square-side) - var(--straight-side));
  right: calc(var(--default-offset) + var(--round-side) - 1px);
  left: calc(var(--default-offset) + var(--square-side) - 1px);
  height: var(--straight-side);
}
.pledge--03 .decoration--3 {
  top: calc(var(--square-side) - var(--straight-side));
  right: var(--default-offset);
  height: var(--round-side);
  width: var(--round-side);
}
.pledge--03 .decoration--4 {
  top: calc(var(--square-side) + var(--round-side) - var(--straight-side));
  right: var(--default-offset);
  bottom: 0;
  width: var(--straight-side);
}
.pledge--04 .decoration--1 {
  top: 0;
  right: var(--default-offset);
  bottom: 0;
  width: var(--straight-side);
}
.pledge--05 .decoration--1 {
  top: 0;
  right: var(--default-offset);
  height: var(--square-side);
  width: var(--square-side);
}
.pledge--05 .decoration--2 {
  top: calc(var(--square-side) - var(--straight-side));
  right: calc(var(--default-offset) + var(--square-side) - 1px);
  left: calc(var(--default-offset) + var(--round-side) - 1px);
  height: var(--straight-side);
}
.pledge--05 .decoration--3 {
  top: calc(var(--square-side) - var(--straight-side));
  left: var(--default-offset);
  height: var(--round-side);
  width: var(--round-side);
}
.pledge--05 .decoration--4 {
  top: calc(var(--square-side) + var(--round-side) - var(--straight-side));
  left: var(--default-offset);
  bottom: calc(var(--round-side) + var(--round-side) - var(--straight-side));
  width: var(--straight-side);
}
.pledge--05 .decoration--5 {
  left: var(--default-offset);
  bottom: calc(var(--round-side) - var(--straight-side));
  height: var(--round-side);
  width: var(--round-side);
}
.pledge--05 .decoration--6 {
  bottom: calc(var(--round-side) - var(--straight-side));
  right: calc(var(--default-offset) + var(--round-side) - 1px);
  left: calc(var(--default-offset) + var(--round-side) - 1px);
  height: var(--straight-side);
}
.pledge--05 .decoration--7 {
  right: var(--default-offset);
  bottom: 0;
  height: var(--round-side);
  width: var(--round-side);
}
.pledge--06 .decoration--1 {
  top: 0;
  right: var(--default-offset);
  bottom: 0;
  width: var(--straight-side);
}
.pledge--06 .decoration--1::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, var(--midnight) 0, transparent 100%);
}

.commitments__title, .commitments__list {
  font-size: calc(1rem + 0.65vw);
}
.commitments__title {
  color: var(--commitments-title-color, var(--mint));
  margin-bottom: 0.5rem;
}
.commitments__list {
  font-weight: 200;
  color: var(--commitments-list-color, var(--white));
}
.commitments__list li {
  display: flex;
  margin-bottom: 0.5rem;
}
.commitments__list li::before {
  content: "—";
  display: inline-flex;
  margin-right: clamp(0.5rem, 1.3vw, 1rem);
  color: var(--commitments-title-color, var(--mint));
}

.petitioners {
  position: relative;
}
.petitioners__offset {
  position: absolute;
  top: -100px;
}
.petitioners__title {
  padding: 0 5vw 2rem 5vw;
  text-align: center;
}
.petitioners__title p {
  font-weight: 100;
  font-size: clamp(2rem, 4.75vw, 8rem);
  line-height: 1;
}
.petitioners__title p:not(:last-child) {
  margin-bottom: 0.5em;
}
.petitioners__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.petitioners__list li {
  margin: 2.5vw;
}
.petitioners__list a {
  display: flex;
  flex-direction: column;
  padding: 2.5vmax 5vw;
  font-size: 1rem;
  text-align: center;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 20px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
}
.petitioners__list a span:nth-child(1) {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 200px;
}
.petitioners__list a span:nth-child(1) img {
  width: 100%;
}
.petitioners__list a span:nth-child(2) {
  position: relative;
  opacity: 0;
  margin-top: 1rem;
  transform: translate3d(0, 1rem, 0);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
}
.petitioners__list a span:nth-child(2) svg {
  color: var(--mint);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) all;
}
.petitioners__list a:hover, .petitioners__list a:focus, .petitioners__list a:active {
  background: rgba(114, 182, 120, 0.1);
}
.petitioners__list a:hover span, .petitioners__list a:focus span, .petitioners__list a:active span {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.petitioners__list a:hover span svg, .petitioners__list a:focus span svg, .petitioners__list a:active span svg {
  margin-left: 0.5rem;
  opacity: 1;
}

html.lenis {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.loader {
  position: fixed;
  display: grid;
  place-items: center;
  z-index: var(--z-loader);
  inset: 0;
  background: var(--white);
  animation: loader-appear 0.5s forwards 1;
}
.loader i {
  display: block;
  position: absolute;
  inset: 0;
  right: 100%;
  background: var(--midnight);
}
.nojs .loader {
  animation: loader-appear 0.5s forwards 1, loader-disappear 2s forwards cubic-bezier(0, 0, 0.58, 1) 3s 1, loader-destroy 0.1s forwards 5s 1;
}
.nojs .loader i {
  animation: loader-transition 3s forwards cubic-bezier(0.25, 0.1, 0.15, 1) 0.5s 1;
}

@keyframes loader-appear {
  to {
    background: var(--mint);
  }
}
@keyframes loader-transition {
  to {
    right: 0;
  }
}
@keyframes loader-disappear {
  100% {
    opacity: 0;
  }
}
@keyframes loader-destroy {
  to {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
.sr-only {
  display: none;
}/*# sourceMappingURL=style.css.map */