* {
  padding: 0;
  margin: 0;
}

.container-provaider {
  background: linear-gradient(180deg, #f2f9ff 0%, rgba(242, 249, 255, 0) 100%);
}

p{
  margin-bottom: 15px;
}

/* --------- Section One --------- */

.section-one {
  width: 85%;
  margin-right: 0;
}

.section-one div:nth-of-type(1){
  margin-right: 5%;
}

.section-one div {
  width: 50%;
}

.section-one h1 {
  margin-bottom: 40px;
  color: #3b063b;
}

.section-one img{
  float: right;
}
/* -------- Section Two ---------- */

.section-two {
  display: block;
  text-align: center;
  padding-bottom: 140px;
  width: 70%;
  padding-top: 100px;
}

.section-two form {
  display: flex;
  justify-content: space-between;
}

.section-two form div {
  display: flex;
  flex-direction: column;
  width: 40%;
}

input,
textarea {
  font-family: "Galano Medium";
  color: #727272;
  font-size: 16px;
  border: 0.5px solid #727272;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  margin: 10px 0;
}

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;
}

/* ------- RESPONSIVE --------*/

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 30px;
  }
  p {
    font-size: 14px;
    line-height: 16px;
  }
  .section-one{
    padding-top: 180px  !important;
  }
  .section-one div:nth-of-type(2) img {
    display: none;
  }
  .section-one div:nth-of-type(1){
    margin-right: 0;
  }
  .section-one {
    width: 80%;
    margin: auto;
  }
  .section-one div {
    width: 100%;
  }
  .section-one h1{
    margin-bottom: 20px;
  }
  .section-two{
    width: 80%;
    padding-top: 20px !important;
  }
  .section-two form{
    flex-direction: column;
  }
  .section-two form div{
    width: 100%;
  }
  input, textarea{
    padding: unset;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  textarea{
    margin-top: 10px !important;
  }
  ::placeholder{
    padding-left: 10px;
  }
}
