.enq-form {
  box-shadow: rgba(110, 115, 119, 0.15) 0px 2px 8px 2px,
    rgba(125, 134, 141, 0.3) 0px 1px 1px 0px;
  background-color: #fff;
  padding-bottom: 10px;
  width: 60%;
  margin: 40px auto;
}
@media only screen and (max-width: 850px) {
  .enq-form {
    width: 95%;
    margin: auto;
  }
}
.enq-form .enq-head {
  display: flex;
  padding: 10px 5%;
  justify-content: space-between;
  align-items: center;
}
.enq-form .enq-head h2 {
  margin: 0;
}
.enq-form .enq-head a {
  font-weight: bold;
}
.enq-form i:hover {
  transform: scale(1.1, 1.1);
}
.enq-form form select {
  color: #666;
}
.enq-form form label {
  margin: 5px 5%;
  font-weight: 700;
  color: #888;
}
.enq-form form input {
  margin: 5px 5%;
  margin-bottom: 10px;
  border: 1px solid rgba(128, 128, 128, 0.37);
  padding: 8px;
  border-radius: 2px;
  width: 90%;
  box-sizing: border-box;
}
.enq-form form select {
  margin: 5px 5%;
  margin-bottom: 10px;
  border: 1px solid rgba(128, 128, 128, 0.37);
  background-color: #fff;
  padding: 8px;
  border-radius: 2px;
  width: 90%;
  box-sizing: border-box;
}
.enq-form form textarea {
  margin: 5px 5%;
  margin-bottom: 10px;
  border: 1px solid rgba(128, 128, 128, 0.37);
  background-color: #fff;
  padding: 8px;
  border-radius: 2px;
  width: 90%;
  height: 100px;
  box-sizing: border-box;
}
.enq-form form input:last-child {
  background-color: #ff4800;
  color: white;
  width: fit-content;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 2px;
}
.popup-enq-form {
  position: fixed;
  display: none;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  box-shadow: rgba(110, 115, 119, 0.15) 0px 2px 8px 2px,
    rgba(125, 134, 141, 0.3) 0px 1px 1px 0px;
  background-color: #fff;
  z-index: 5000;
  max-height: 95vh;
}
.popup-enq-form form {
  overflow-y: auto;
  max-height: 75vh;
}
