#form-section {
  background: #fff;
  margin: 0;
  border: none;
}

/* #form-section .d-flex {
  flex-direction: row-reverse;
} */

#form-section .col.right-col{
  position: absolute;
  left: 60px;
  width: 60%;
  height: 100%;
  transition: all .5s ease 0s;
  z-index: 0;
}

#form-section .image-section {
  background: transparent;
  min-width: 0;
  /* max-height: 670px; */
  padding: 0;
  background-size: cover;
  background-position: center;
  margin-right: 50px;
  width: calc(100% - 50px);
  height: 100%;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 rgba(0,0,0,0.10);
}



#form-section .form-section-wrapper {
    background: #F9F7F5;
    padding: 32px;
    box-shadow:-2px 4px 40px 0px rgba(0, 0, 0, 0.15);
}


#form-section input:not([type="radio"]):not([type="checkbox"]),
#form-section textarea,
#form-section select {
    background: transparent;
    border: 1px solid #6B6B6B;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  text-transform: uppercase;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  text-transform: uppercase;
}

#form-section .form-section-wrapper .form-row:last-of-type {
  margin-bottom: 0;
}

#form-section .col.left-col{
  width: 50vw;
  max-width: 660px;
  margin: 50px 0;
  position: relative;
  z-index: 9;
  margin-left: auto;
}

#form-section .form-section-wrapper button.btn{
  width: 180px;
}




/* Responsive */
@media (max-width: 1024px) {
  #form-section .form-section-wrapper{
    padding: 20px 15px !important;
  }
  #form-section .col.right-col{
    position: relative;
    left: 0;
    right: 0;
  }
  #form-section .col.left-col{
    margin: 0;
    max-width: unset;
  }
  #form-section .image-section{
    margin: 0;
    width: 100%;
  }

  #form-section .container>.d-flex{
    flex-direction: column-reverse;
  }

  #form-section .col.left-col, #form-section .col.right-col{
    width: 100% !important;
  }

}

