*{
    margin: 0;
    padding: 0;
}

#content{
    min-height: calc(100vh - 280px);
}

#support{
    display: flex;
    justify-content: space-between;
    width: 60%;
    align-items: flex-start;
    margin: auto auto 5rem;
}

section{
    margin: 0;
}


.section-one h1{
  margin-bottom: 20px;
}
/* -------- Section Two ---------- */

.section-two {
    display: block;
    text-align: center;
    width: 40%;
  }

  .section-two form div {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  input,
  textarea {
    font-family: "Galano Medium";
    color: #727272;
    font-size: 16px;
    border: 0.5px solid #727272;
    border-radius: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    margin: 10px 0;
  }
  
  ::placeholder {
    padding-left: 10px;
  }
  
  textarea {
    /*margin-top: 25px;*/
    width: unset;
  }
  
  .section-two form div:nth-of-type(2) .button {
    background: #fce9a9;
    border: 2px solid #fce9a9;
    color: white;
    margin-top: unset;
  }
  
  .section-two form div:nth-of-type(2) .button:hover {
    color: #fce9a9;
    background: white;
    border: 2px solid #fce9a9;
  }
  
  form span {
    text-align: left;
  }


  @media screen and (max-width: 768px) {
    section{
      width: 100% !important;
    }
    p{
      padding-bottom: 15px;
    }
    #support{
      flex-direction: column;
      padding: 1rem 0;
      width: 80%;
    }
    .section-two{
      padding-top: 20px !important;
    }
    .section-one h1{
      margin-bottom: 10px;
    }
  }

  @media screen and (max-width: 1200px) {
    section{
      width: 50%;
    }
  }