/***********/

/* CONTACT */

/**********/

.contact {
    padding-bottom: 1rem;
    background: linear-gradient(
      112.1deg,
      rgba(32, 38, 57, 1) 11.4%,
      rgba(63, 76, 119, 1) 70.2%
    );
    background-size: cover;
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
  }
  
  .contact .section-heading {
    margin-top: 10rem;
    color: white;
    opacity: 0.3;
  }
  
  .contact .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .contact-form {
    width: 100%;
  }
  
  form {
    font-size: 1.8rem;
  }
  
  input[type="text"],
  textarea,
  select {
    border-radius: 1rem;
    border: none;
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    font-family: "Inter", sans-serif;
  }
  input[type="text"],
  textarea,
  select:focus {
      outline: none;
  } 
  
  input[type="submit"] {
    border-radius: 1rem;
    border: none;
    width: initial;
    padding: 1rem 2rem;
    font-family: "Inter", sans-serif;
    transition: ease-in-out 0.2s;
    cursor: pointer;
    color: #333;
    font-weight: 800;
  }
  
  input[type="submit"]:hover {
    background-color: #ffb400;
    transition: ease-in-out 0.5s;
  }
  