@charset "utf-8";

.contacts{
  padding: 12.4rem 12.8rem 16rem;
  background-color: #FCFFF6;
}

.contacts.thanks{
  padding-top: 23rem;
}

.contact_head_text{
  width: 61.6rem;
  margin: 0 auto;
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(24em/16);
}

.contact_head_text.thanks{
  margin-top: 7.7rem;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: calc(29em/20);
}

.contact_progress_outer{
  position: relative;
  display: flex;
  width: fit-content;
  margin: 5.8rem auto 0;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}

.contact_progress_outer::before{
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  border-top: solid .1rem var(--moss);
}

.contact_progress_circle{
  position: relative;
  aspect-ratio: 1/1;
  width: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid .1rem var(--moss);
  color: var(--moss);
  background-color: #fff;
  z-index: 1;
}

.contact_progress_circle.active{
  color: #fff;
  background-color: var(--moss);
}

.contact_progress_text{
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1em;
}

.contact_main{
  margin-top: 6.8rem;
  background-color: #F9FFED;
  padding:5rem 3.5rem;
  border-radius: 1rem;
}

.contact_main_inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 4rem;
}

.contact_line{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact_line.textarea{
  align-items: start;
}

.contact_label{
  display: block;
  width: fit-content;
  color: var(--moss);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: calc(24em/16);
}

.contact_line.textarea .contact_label{
  padding-top: 1rem;
}

.contact_form{
  width: 70rem;
  height: 4.4rem;
  padding: 1rem 1.8rem;
  border-radius: .5rem;
  border: solid .1rem var(--moss);
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: calc(24em/16);
  box-shadow: inset 0 .3rem .6rem #0000001A; 
}

.contact_form.confirm{
  background-color: #F9FFED;
}

.contact_form::placeholder{
  color: #9CBFAC;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: calc(24em/16);
}

.contact_line.textarea .contact_form{
  height: 23.6rem;
  resize: none;
}

.privacy_policy_outer{
  margin: 5.5rem auto 0;
  width: 88rem;
}

.privacy_policy_head{
  text-align: center;
  color: var(--moss);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: calc(24em/16);
}

.privacy_policy_main{
  margin-top: 3rem;
  height: 23.6rem;
  padding: 1rem 1.8rem;
  border-radius: .5rem;
  border: solid .1rem var(--moss);
  background-color: #fff;
  box-shadow: inset 0 .3rem .6rem #0000001A;
  overflow-y: scroll;
}

.privacy_policy_inner{
  display: block;
  width: fit-content;
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: calc(24em/16);
}

.privacy_policy_checkboxes {
  margin: 1.5rem auto 0;
  width: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

.privacy_policy_checkboxes label{

}

.wpcf7-list-item{
  display: block;
  margin: 0;
}

.check_icon{
  display: block;
  margin: auto 0;
  aspect-ratio: 1 / 1;
  width: 1.8rem;
  border: var(--black) solid .1rem;
  background-color: white;
  appearance:checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

.check_label{
  color: var(--moss);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: calc(24em/16);
}

.contact_buttons{
  position: relative;
  margin-top: 4.8rem;
  display: flex;
  gap: 4.5rem;
  justify-content: center;
  align-items: center;
}

.contact_button_outer{
  position: relative;
  width: 26.7rem;
  height: 4.4rem;
  background-color: var(--moss);
}

.contact_button_outer.right {
  clip-path: polygon(0 0, 93.6% 0, 100% 100%, 0% 100%);
}

.contact_button_outer.left {
  clip-path: polygon(6.3% 0, 100% 0, 100% 100%, 0 100%);
}

.contact_button_outer.right::after {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.5rem;
  border: solid .1rem white;
}

.contact_button_outer.left::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 1.5rem;
  border: solid .1rem var(--moss);
}

.contact_button{
  position: absolute;
  display: flex;
  justify-content: start;
  align-items: center;
  top: .1rem;
  left: .1rem;
  padding: .8rem 3.3rem;
  width: 26.5rem;
  height: 4.2rem;
  background-color: var(--moss);
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: calc(24em/16);
}
/* 
.contact_button:disabled{
  filter: grayscale(100%);
} */

.contact_button.right{
  text-align:start;
  clip-path: polygon(0 0, 93.6% 0, 100% 100%, 0% 100%);
}

.contact_button.left{
  color: var(--moss);
  background-color: #fff;
  text-align: end;
  clip-path: polygon(6.3% 0, 100% 0, 100% 100%, 0 100%);
}



.wpcf7-spinner{
  display: none;
}

@media screen and (max-width: 699.98px) {
  .contacts {
    padding: 10rem 1.4rem;
  }

  .contact_head_text {
    width: 31.9rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: calc(20em/14);
  }

  .contact_progress_outer {
    margin: 2.9rem auto 0;
    gap: 7.5rem;
  }

  .contact_progress_circle {
    width: 6.6rem;
  }

  .contact_main {
    margin-top: 3.5rem;
    background-color: #F9FFED;
    padding: 3rem 1.4rem;
  }

  .contact_main_inner {
    gap: 2.5rem;
  }

  .contact_line {
    flex-direction: column;
    justify-content:flex-start;
    align-items: start;
    gap: 1.5rem;
  }

  .contact_line.textarea {
    align-items: start;
  }

  .contact_label {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }

  .contact_line.textarea .contact_label {
    padding-top: unset;
  }

  .contact_form {
    width: 100%;
    padding: 1.2rem 1.8rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }

  .contact_form::placeholder {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }

  .privacy_policy_outer {
    margin: 4.2rem auto 0;
    width: 100%;
  }

  .privacy_policy_head {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }

  .privacy_policy_main {
    padding: 1rem 1.4rem;
  }

  .privacy_policy_inner {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }

  .privacy_policy_checkboxes {
    margin: 1.7rem auto 0;
    width: 13.3rem;
  }

  .check_label {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }

  .contact_buttons {
    position: relative;
    margin-top: 4.68rem;
    flex-direction: column;

  }

  .contact_button_outer{    
    width: 23.5rem;
    height: 3.873rem;
  }

  .contact_button {
    position: relative;
    padding: .85rem 3.3rem;
    width: 23.3rem;
    height: 3.673rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: calc(21em/15);
  }


  .contact_button.right::after {
    left: 1.2rem;
    width: 1.2rem;
    border: solid .1rem white;
  }

}