.form {
  background-image: url('images/bg-form.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.form .form__inner {
  display: flex;
  gap: 130px;
}

.form .form__title {
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: #FFFFFF;
  position: relative;
  z-index: 10;
  margin-bottom: 25px;
}

.form .form__title::before {
  content: '';
  position: absolute;
  width: 117px;
  height: 21px;
  background: #86AC66;
  border-radius: 1px;
  z-index: -1;
  top: 4px;
}

.form .form__subtitle {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 36px;
  line-height: 128%;
  color: #FFFFFF;
  padding-bottom: 35px;
  border-bottom: 1px solid #C4C4C4;
  max-width: 540px;
  width: 100%;
  margin-bottom: 15px;
}

.form .form__text {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #FFFFFF;
  max-width: 570px;
  width: 100%;
}

.form .form__right {
  max-width: 500px;
  width: 100%;
}

.form .form__right--text {
  font-family: 'Manrope';
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.form .form__right--phone {
  margin-bottom: 25px;
}

.form .form__phone--link {
  display: flex;
}

.form .form__phone--icon {
  margin-right: 10px;
}

.form__phone {
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 24px;
  line-height: 142%;
  color: #86AC66;
}

.contact_form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact_form-textarea {
  margin-bottom: 20px;
}

.contact_form-textarea textarea {
  max-width: 100%;
  width: 100%;
  height: 200px;
  border: 1px solid #E1E1E1;
  border-radius: 2px;
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  outline: 0;
  outline-offset: 0;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #C4C4C4;
}

.contact_form-textarea textarea::placeholder {
  color: #C4C4C4;
}

.form__inner--name,
.form__inner--tell {
  max-width: 240px;
  width: 100%;
  height: 48px;
  border: 1px solid #E1E1E1;
  border-radius: 2px;
  padding-left: 30px;
  outline: 0;
  outline-offset: 0;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #C4C4C4;
}

.form__inner--name::placeholder,
.form__inner--tell::placeholder {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C4C4C4;
}

.send_modal {
  max-width: 431px;
  width: 100%;
  height: 64px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.wpcf7-list-item span {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #C4C4C4;
}

.wpcf7-list-item span a {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #C4C4C4;
  text-decoration: underline;
  cursor: pointer;
}

.border {
  width: 110px;
  height: 2px;
  border: 1px dashed #FFA100;
  margin-bottom: 10px;
}

.form .btn_main {
  width: 100%;
  height: 48px;
  background: #86AC66;
  border-radius: 2px;
  border: none;
  font-family: 'Manrope';
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  cursor: pointer;
  margin-bottom: 20px;
}

.form .btn_main::hover {
  background: #8B1803;
}

.wpcf7-spinner {
  display: none;
}

input[type=checkbox]~.wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #C4C4C4;
  background: transparent;
  cursor: pointer;
  left: 0;
  margin-top: 1px;
  border-radius: 1px;
}

input[type=checkbox]:checked~.wpcf7-list-item-label:before {
  background-image: url('images/check.png');
  background-repeat: no-repeat;
  background-position: center;
}

.wpcf7-list-item {
  padding-left: 25px;
} 

.wpcf7-list-item label input {
  display: none;
}

@media (max-width: 970px) {
  .form__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .form .form__inner {
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .contact_form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form__inner--name,
  .form__inner--tell {
    max-width: 540px;
    width: 100%;
  }
}