.contactWrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 968px;
  margin: 0 auto;
}
@media all and (max-width: 640px) {
  .contactWrap {
    gap: 7.008vw;
  }
}
.contactWrap__row.column2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media all and (max-width: 640px) {
  .contactWrap__row.column2 {
    grid-template-columns: 1fr;
    gap: 7.008vw;
  }
}
.contactWrap__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.contactWrap__label {
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contactWrap__label .required {
  margin-left: 0.2em;
  color: #f70000;
}
.contactWrap input[type=text],
.contactWrap input[type=email],
.contactWrap input[type=tel],
.contactWrap textarea,
.contactWrap select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
  padding: 1.5em 1.5em 1.5em 1.5em;
  border: 1px solid #40B620;
  background-color: #fff;
  width: 100%;
  display: block;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media all and (max-width: 640px) {
  .contactWrap input[type=text],
  .contactWrap input[type=email],
  .contactWrap input[type=tel],
  .contactWrap textarea,
  .contactWrap select {
    padding: 1.25em;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.contactWrap select {
  color: #aaa;
  padding: 1.5em 2em 1.5em 1.5em;
}
@media all and (max-width: 640px) {
  .contactWrap select {
    padding: 1.25em;
    padding-right: 2em;
  }
}
.contactWrap select:valid {
  color: #000;
}
.contactWrap textarea {
  height: 11em;
}
.contactWrap select {
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: center right 1.5em;
  background-image: url(../images/sustainable_2025/form_arrow.svg);
}
.contactWrap__ppHeading {
  line-height: 1.6;
  font-weight: 400;
}
.contactWrap__ppWrap {
  font-size: 12px;
  padding: 1.5em 1.5em 1.5em 1.5em;
  border: 1px solid #40B620;
  background-color: #fff;
  width: 100%;
  display: block;
  border-radius: 10px;
  font-weight: bold;
  height: 25em;
  overflow: auto;
}
.contactWrap__ppWrap__in {
  padding: 1.2em 1rem;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto;
}
@media all and (max-width: 640px) {
  .contactWrap__ppWrap__in {
    padding: 0;
  }
}
.contactWrap__ppWrap__in .title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1em;
}
.contactWrap__ppWrap__in .heading {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.4em;
}
.contactWrap__ppWrap__in p {
  margin-bottom: 1.6em;
}
.contactWrap__ppWrap__in p:last-child {
  margin-bottom: 0;
}
.contactWrap__ppWrap__in ul {
  padding-left: 1em;
  list-style-type: decimal;
  margin-bottom: 1.6em;
}
.contactWrap__ppWrap__in ul:last-child {
  margin-bottom: 0;
}
.contactWrap .contactWrap__pp-acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  position: relative;
  font-weight: normal;
  margin-top: 40px;
}
.contactWrap .contactWrap__pp-acceptance input[type=checkbox] {
  display: none;
}
.contactWrap .contactWrap__pp-acceptance .icon {
  width: 18px;
  height: 18px;
  border: 2px solid #40B620;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}
.contactWrap .contactWrap__pp-acceptance input[type=checkbox]:checked + .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 5px;
  height: 10px;
  border: solid #40B620;
  border-width: 0 3px 3px 0;
  scale: 0.6 0.6;
  transform: rotate(45deg);
}
.contactWrap__btWrap {
  display: flex;
  justify-content: center;
  text-align: center;
}

.submitLink {
  all: unset;
  min-height: 3.25em;
  background-color: #fff;
  color: #40B620;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.8em 1em;
  width: 220px;
  border: 1px solid #40B620;
  border-radius: 4em;
  transition: all 0.3s ease 0s;
  font-size: 14px;
}
.submitLink:hover {
  text-decoration: none;
}
.submitLink[disabled] {
  filter: grayscale(1);
  background-color: #e8e8e8;
  border-color: transparent;
}
.submitLink:not([disabled]):hover {
  background-color: #40B620;
  color: #fff;
  border-color: #fff;
}
.submitLink:not([disabled]):hover path {
  stroke: #fff;
}
.submitLink:not([disabled]):hover .submitLink__arrow {
  left: calc(100% - 20px);
  translate: -100% -50%;
}
.submitLink:not([disabled]):hover .submitLink__text {
  right: calc(100% - 20px);
  translate: 100% -50%;
}
.submitLink__arrow {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 50%;
  left: 20px;
  right: auto;
  translate: 0 -50%;
  transition: all 0.3s ease 0s;
  display: block;
}
.submitLink__arrow:hover {
  text-decoration: none;
}
.submitLink__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.submitLink__arrow svg g {
  display: block;
  width: 100%;
  height: 100%;
}
.submitLink__arrow svg path {
  transition: all 0.3s ease 0s;
  display: block;
  width: 100%;
  height: 100%;
}
.submitLink__arrow svg path:hover {
  text-decoration: none;
}
.submitLink__text {
  transition: translate 0.3s ease, right 0.3s ease, left 0.3s ease;
  position: absolute;
  right: 20px;
  max-width: calc(100% - 80px);
  top: 50%;
  translate: 0 -50%;
  text-align: right;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  text-align: center;
  padding-right: 2em;
}
.submitLink--reverse .submitLink__arrow {
  left: auto !important;
  right: 20px;
  rotate: 180deg;
}
.submitLink--reverse .submitLink__text {
  text-align: left;
  right: auto !important;
  left: 20px !important;
}
.submitLink--reverse:hover .submitLink__arrow {
  right: calc(100% - 20px);
  translate: 100% -50%;
}
.submitLink--reverse:hover .submitLink__text {
  left: calc(100% - 20px) !important;
  translate: -100% -50%;
}

.thanksWrap {
  padding: 60px 0;
  background-color: #40B620;
  min-height: 100vh;
}
.thanksWrap form {
  width: 100%;
}
.thanksWrap__content {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #40B620;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.thanksWrap__heading {
  font-weight: bold;
  color: #40B620;
  font-size: 20px;
}
.thanksWrap .prevBTWrap {
  width: 100%;
  display: flex;
  justify-content: center;
}