@media all and (max-width: 1024px) {
  .contact_section .contact_container span {
    font-size: 50px;
  }

  .contact_section .contact_container .contact_form input {
    width: 80%;
  }

  .contact_section .contact_container .contact_form textarea {
    width: 80%;
    height: 200px;
  }
}

@media all and (max-width: 768px) {
  .contact_section .contact_container span {
    font-size: 40px;
  }

  .contact_section .contact_container .contact_form input {
    width: 90%;
  }

  .contact_section .contact_container .contact_form textarea {
    width: 90%;
  }
}

@media all and (max-width: 480px) {
  header {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: -400px;
  }

  .contact_section .contact_container span {
    font-size: 30px;
    margin-top: 60px;
  }

  .contact_section .contact_container .contact_form input {
    width: 100%;
  }

  .contact_section .contact_container .contact_form textarea {
    width: 100%;
  }
}
