#index > .banners {
  display: none !important;
}

#formTop {
  position: relative;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background-image:url("https://www.francodigitalcontabil.com.br/img_banners/banner-3.jpg");
  background-size: cover;
  background-position: center;
  padding: 64px 0;
}

#formTop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(256deg, #FFFFFF00 0%, #363636 70%);
  opacity: 0.32;
}

.formTop-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.formTop__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  text-align: left;
  width: calc(100% - 580px);
}

.formTop__texts h1 {
  color: #FFFFFF;
  font-family: "Lato", Sans-serif;
  font-size: 64px;
  font-weight: 800;
  text-transform: none;
  line-height: 1.2em;
  text-align: left;
  box-sizing: border-box;
  padding-right: 40px;
}

.formTop__texts p {
  font-size: 24px;
}

.formTop__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 580px;
  padding: 56px 56px 56px 56px;
  box-sizing: border-box;
  background: rgba(0,35,90, 0.6);
  color: #FFF;
  border-radius: 16px;
}

.formTop__form h4 {
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0;
}

.formTop__form p {
  color: #FFF;
  margin-top: 8px;
  margin-bottom: 32px;
}

.formTop__form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.formTop__form form input, .formTop__form form textarea {
  width: 100%;
  height: 48px;
  font-family: Lato;
  font-size: 15px;
  box-sizing: border-box;
  padding: 0 16px;
  border-radius: 4px;
  background: #FFF;
  margin-bottom: 16px;
}

.formTop__form form > span {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.formTop__form form > span input {
  width: 48%;
}

.formTop__form form textarea {
  height: 140px;
  padding: 16px;
  resize: 0;
  margin-bottom: 0;
}

.formTop__form form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-family: Lato;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  background-color: #363636;
  margin-top: 16px;
}

.formTop__form form button:hover {
  opacity: 0.9;
}

.formTop__form form button img {
  width: 16px;
  height: auto;
  margin-left: 8px;
}

#formTop .close {
  display: none !important;
}

#formTop .was-validated {
  margin-top: -16px;
}

@media screen and (max-width: 1100px ){
  #formTop {
    padding: 24px 0;
  }
  .formTop-content { 
    flex-direction: column;
  }
  .formTop__texts {
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px 16px;
  }
  .formTop__texts h1 {
    font-size: 32px;
    line-height: 40px;
    padding: 0;
  }
  .formTop__texts p {
    font-size: 20px;
  }
  .formTop__form {
    width: 100%;
    border-radius: 0;
    padding: 24px 16px;
  }
  .formTop__form h4 {
    font-size: 20px;
  }
}