@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Urbanist";
  width: 100%;
  height: auto;
}
main {
  background: url(../../../images/bg1.jpg);
  background-size: 100% 100%;
  width: 100%;
  min-height: 100vh;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 55px 50px;
}
.logo {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 18px;
}
.wirzaBtn {
  color: var(--heading-color);
  font-size: 27px;
  font-weight: 800;
  background-color: transparent;
  border: 0;
}
.wirzaBtn span {
  border-bottom: solid 4px rgb(247, 147, 58);
  border-radius: 2px;
}
.mainHeading {
  font-size: 73px;
  color: var(--heading-color);
  font-weight: 800;
}
.sideImg {
  aspect-ratio: 1 /1;
  margin-top: 60px;
}
form {
  padding: 80px 50px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
}
.inputField,
.select {
  border: solid 2px rgb(0, 0, 0);
  background-color: transparent;
  width: 100%;
  height: 85px;
  border-radius: 40px;
  position: relative;
  padding: 0 54px;
  margin-bottom: 40px;
  transition: var(--transitions);
}
.inputField input,
.select select,
.message textarea {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  border-radius: inherit;
}
input::placeholder,
select::placeholder,
.message textarea {
  font-size: 15px;
  font-weight: 400;
  color: rgb(159, 159, 159);
}
.inputField label {
  border: solid 2px rgb(0, 0, 0);
  position: absolute;
  top: -25%;
  width: 105px;
  left: 25px;
  background-color: rgb(255, 255, 255);
  height: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 17px;
  gap: 3px;
  border-radius: 15px;
  transition: var(--transitions);
}

.select select {
  -webkit-appearance: none;
  font-size: 15px;
  font-weight: 400;
  color: rgb(159, 159, 159);
  cursor: pointer;
  padding: 0 0px 0 50px;
}
.select,
.message {
  padding: 0;
}
.select select + span {
  display: grid;
  place-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f2f2f2;
  right: 20px;
  pointer-events: none;
}
.select select + span::before {
  content: "\f175";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgb(0, 0, 0);
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.message {
  height: auto;
}
.message label {
  top: -10%;
}
.message textarea {
  border-radius: 40px;
  height: 190px;
  padding: 40px 0 0 40px;
}
.stepBtn {
  background-color: var(--primary-color);
  width: 100%;
  height: 73px;
  border-radius: 37px;
  border: 0;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;

  justify-content: center;
  gap: 9px;
  color: var(--heading-color);
}
.inputField input:focus,
.select select:focus,
.message textarea:focus {
  outline: none;
}
.inputField:focus-within {
  border-color: var(--primary-color);
}

.inputField:focus-within label {
  border-color: var(--primary-color);
}
.stepBtn i {
  transition: var(--transitions);
}
.stepBtn:hover i {
  transform: translateX(10px);
}
.formHeading {
  font-size: 30px;
  font-weight: 800;
  color: var(--heading-color);
  text-align: center;
}
.label {
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.radioField {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.radio2 {
  display: grid;
  justify-content: end;
}
.radioField label {
  font-size: 23px;
  font-weight: 800;
  color: var(--heading-color);
}
.radioField input {
  -webkit-appearance: none;
  cursor: pointer;
  width: 30px;
  transition: var(--transitions);
  height: 30px;
  border-radius: 50%;
  border: solid 2px rgb(184, 183, 180);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}
.radioField input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  padding: 0;
  background-color: rgb(222, 222, 221);
}

.thankyou {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  --secondary-color: rgb(0 0 0);
}
.thankyouPage {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankyou h1 {
  font-size: 100px;
  color: #000;
  font-weight: 900;
}
.thankyou p {
  font-size: 40px;
  color: #000;
  font-weight: 900;
  width: 60%;
  margin: 0 auto;
  margin: 20px auto;
}
.thankyou span {
  font-size: 20px;
  font-weight: 900;
  display: block;
  margin-top: 50px;
}
.thankyouIcons {
  gap: 10px;
  margin-top: 20px;
}
.thankyouIcons a {
  text-decoration: none;
}
.thankyouIcons i {
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  font-size: 24px;
  color: rgb(255, 255, 255);
  border-radius: 50%;
}
.thankyouIcons i.fa-youtube {
  background-color: #ef0c0c;
}
.thankyouIcons i.fa-facebook {
  background-color: #1037fd;
}
.thankyouIcons i.fa-twitter {
  background-color: #181717;
}
.thankyouIcons i.fa-instagram {
  background-color: #c20de9;
}

.helpLine {
  display: flex;
  align-items: center;
  gap: 20px;
}
.helpLine article {
  font-size: 17px;
  color: rgb(0, 0, 0);
  text-transform: capitalize;
}
.helpLine i {
  font-size: 38px;
  color: rgb(0, 0, 0);
}
.socialIcons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.socialIcons a {
  font-size: 18px;
  color: rgb(47, 49, 70);
  text-decoration: none;
  border: solid 1px rgb(0, 0, 0);
  border-radius: 50%;
  background-color: transparent;
  width: 49px;
  height: 49px;
  display: grid;
  place-content: center;
  transition: var(--transitions);
}
.socialIcons a:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}
.logo {
  font-size: 40px;
  font-family: "Poppins";
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}
.logo img {
  width: 18px;
  margin-right: 10px;
  vertical-align: middle;
}
.logo span {
  color: var(--primary-color);
}
