.product_hero {
  background-image: url(https://images.unsplash.com/photo-1603573355706-3f15d98cf100?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1029&q=80);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
}
.product_overlay {
  position: absolute;
  left: 0%;
  background-color: #000;
  height: 50vh;
  width: 100%;
  opacity: 0.4;
}
.product_hero h2 {
  position: absolute;
  top: 44%;
  left: 40%;
  transform: translate(-59%, -78%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 65px;
}
.product_border {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translate(-60%, -90%);
  background-color: #fff;
  width: 120px;
  height: 3px;
  border-radius: 8px;
}
.product_bg {
  background-image: url(../Assets/white_painted_textured.jpg);
  background-repeat: repeat;
  background-position: center;
  height: 100%;
  width: 100%;
}
.product_form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem calc((100vw - 1200px) / 2);
}
.product_form h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
}
.product_form p {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
}
.product_form_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 1rem;
}
.product_form_card input, select {
  width: 550px !important;
  padding: 8px 15px !important;
  outline: none;
  border: none;
  border: 0.5px solid lightgray !important;
  border-radius: 8px;
}
.product_form_card textarea {
    width: 550px !important;
    padding: 8px 15px !important;
    outline: none;
    border: none;
    border: 0.5px solid lightgray !important;
    border-radius: 8px;
}
.product_form_card input::placeholder {
  font-size: 15px;
}
.product_form_card label {
  margin-bottom: 10px;
}
.product_form_btn {
  padding: 8px 35px;
  background-color: #144178;
  color: #fff;
  margin-top: 17px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 9px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .product_hero {
    width: 100%;
    height: 30vh;
  }
  .product_overlay {
    height: 30vh;
  }
  .product_hero h2 {
    position: absolute;
    top: 30%;
    left: 70%;
    transform: translate(-59%, -78%);
    font-size: 30px;
    width: 65%;
  }
  .product_border {
    position: absolute;
    top: 28%;
    left: 18%;
    transform: translate(-60%, -90%);
    background-color: #fff;
    width: 100px;
    height: 3px;
    border-radius: 8px;
  }
  .product_form_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 1rem;
  }
    .product_form_card{
        display:flex;
        align-items:flex-start;
        justify-content:flex-start;
        flex-direction:column;
        margin: 0px 10px
    }
        .product_form_card label {
            margin-bottom: 5px;
        }
        .product_form_card input,
        select,
        textarea {
            width: 100% !important;
        }
        .product_form_card textarea {
            width: 100% !important;
        }
  .product_form p {
    font-size: 15px;
    padding: 0px 15px;
    text-align: justify;
  }
  .product_form h3 {
    font-size: 22px;
    padding: 0px 15px;
  }
}
