section {
  width: 100%;
  min-height: 800px;
  background: url("../images/our-miss.webp") no-repeat center / cover;
  display: flex;
  justify-content: space-evenly;
  padding: 20px;
  flex-wrap: wrap;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
section > div {
  width: 30%;
  min-width: 400px;
  height: 400px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}
section h1 {
  width: 100%;
  height: 100px;
  font-size: clamp(18px, 7vw, 32px);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  color: #737373;
}
section .hand {
  width: 60px;
  height: 60px;
}
section h1 span:last-child {
  color: #ef363b;
}
section p {
  color: #797979;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 400;
}
section .contact-info {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 200px;
  font-size: 16px;
  font-weight: 400;
}

.contact-info span:first-child {
  color: #ef363b;
  margin-right: 10px;
}

form {
  width: 60%;
  height: 700px;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0 0 10px #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow-x: hidden;
  padding: 0 40px;
  min-width: 400px;
}
.progress {
  width: 100%;
  height: 15px;
  background-color: #d9d9d9;
  border-radius: 12px;
}
.progress span {
  height: 100%;
  width: 33%;
  background: linear-gradient(to right, #891f22 0%, #ef363b 100%);
  border-radius: 12px;
  display: inline-block;
  transition: width 300ms linear;
}
.info,
.event,
.Preference {
  width: 100%;
  min-height: 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: transform 2000ms;
}
form input,
form select,
date-label {
  width: 45%;
  min-width: 180px;
  margin-right: 10px;
  height: 50px;
  border: 1px solid #a9a9a9;
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  outline: #ef363b;
  padding-left: 3%;
}

form select {
  appearance: none;
  -moz-appearance: none;
  color: #000;
  font-weight: 700;
}
select option {
  color: #a9a9a9;
}
form textarea {
  width: 100%;
  height: 130px;
  resize: none;
  border: 1px solid #a9a9a9;
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  outline: #ef363b;
  padding: 3%;
}
form h2 {
  width: 100%;
  font-size: clamp(18px, 7vw, 32px);
  font-weight: 400;
}
#phone,
#company,
#email {
  width: 100%;
}
.contact-btns {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
form .contact-btns button,
#submit {
  max-width: 132px;
  min-width: 80px;
  width: 20%;
  height: 72px;
  background-color: #ef363b;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px #e5e5e5;
}

form .contact-btns #back {
  background-color: #aaaaaa;
}
#submit {
  display: none;
}
.Preference > div:first-child {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  min-height: 60px;
  flex-wrap: wrap;
}
.Preference > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 250px;
}
.Preference label {
  width: 140px;
  height: 44px;
  margin: 10px;
}

.Preference span {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: #ebebeb;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}
.contact-options input[type="radio"]:checked + span {
  background-color: #ef363b;
  color: white;
  border-color: #ef363b;
}

.Preference h3 {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}
.Preference label input {
  display: none;
}
.step {
  transform: translateX(110%);
}
.step.current {
  display: flex;
  animation: current 400ms linear forwards;
}
.step.prev {
  display: none;
  animation: prev 400ms linear forwards;
}
@keyframes current {
  0% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes prev {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-110%);
  }
}
@media (max-width: 1050px) {
  section > div,
  form {
    width: 90%;
    min-width: 90%;
  }
  form {
    min-height: 900px;
  }
}
@media (max-width: 555px) {
  form input,
  form select {
    width: 100%;
    padding-left: 10%;
    margin: 20px 0;
  }
}
