.contact-form-block {
  padding-top: 81px;
  padding-bottom: 80px;
}

.contact-form-content {
  width: 80%;
  margin: 0 auto;
  background-color: #74a527;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}

.contact-form-img {
  position: relative;
  width: 20%;
  left: 20px;
  margin-top: -10px;
  /* background-image: url(ellipse.png); */
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-form-img img {
  width: 100%;
  left: 57px;
  position: absolute;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.contact-form-right {
  width: 80%;
  padding: 56px 0;
  margin: 0 auto;
}

.contact-form-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffffbf;
}

.contact-form-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 25px;
}

.contact-form-block .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form-block .form-row span {
  width: calc(50% - 15px);
}

.contact-form-block .form-row span input {
  font-family: "manrope", sans-serif;
  width: 100%;
  background: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  line-height: 22px;
  color: #74a527;
  padding: 15px 20px;
  border: 1px solid #ffffff00;
  outline: none;
}

.contact-form-block textarea {
  font-family: "manrope", sans-serif;
  width: 100%;
  resize: none;
  height: 100px;
  padding: 9px 20px;
  border: 1px solid #ffffff00;
  outline: none;
  background: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  line-height: 22px;
  color: #74a527;
  margin-top: 30px;
  margin-bottom: 25px;
}

.contact-form-block p {
  margin: 0;
}

.contact-form-block .wpcf7-submit {
  border: 1px solid #ffffff;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 9px 20px;
  padding-right: 47px;
  background-color: #74a527;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  background-image: url(arrow.svg);
  background-size: 22px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-form-block .wpcf7-submit:hover {
  background-color: #f7bc00;
}

.contact-form-policy {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff80;
  padding-right: 20px;
}

.contact-form-policy a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff80;
}

.contact-form-policy a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1199px) {
  .contact-form-block {
    padding-top: 52px;
  }

  .contact-form-img {
    width: 25%;
  }

  .contact-form-right {
    width: 70%;
    padding: 30px 0;
  }

  .contact-form-img img{
    width: 100%;
    left: 55px;
    position: absolute;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
  }

  .contact-form-title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 15px;
  }

  .contact-form-block .form-row span {
    width: calc(50% - 10px);
  }

  .contact-form-block textarea {
    margin-top: 20px;
  }
}

@media screen and (max-width: 991px) {
  .contact-form-block {
    padding-top: 0;
  }
  .contact-form-content{
    width: 100%;
  }

  .contact-form-right {
    width: 90%;
  }

  .contact-form-img {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  .contact-form-policy,
  .contact-form-policy a {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-form-title {
    font-size: 22px;
  }

  .contact-form-block textarea {
    margin-bottom: 14px;
    padding: 10px 15px;
    margin-top: 15px;
  }

  .contact-form-block {
    padding-bottom: 50px;
  }

  .contact-form-block .form-row span input {
    padding: 10px 15px;
  }

  .contact-form-block .form-row {
    flex-direction: column;
    row-gap: 15px;
  }

  .contact-form-block .form-row br {
    display: none;
  }

  .contact-form-block .form-row span {
    width: 100%;
  }

  .contact-form-policy {
    padding-right: 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .contact-form-right {
    padding-right: 30px;
    padding-left: 30px;
  }
}