@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  width: 100%;
  height: auto;
  font-family: "Urbanist";
}
main {
  background: url(../images/bg.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;

  position: relative;
  margin: 50px 0;
}

.main-heading {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.main-heading span {
  font-size: 24px;
  color: rgb(255, 255, 255);
}
.main-heading h1 {
  font-size: 53px;
  color: rgb(24, 21, 21);
  font-weight: 900;
}
.showfield {
  font-size: 29px;
  font-weight: 700;
  color: rgb(24, 21, 21);
  text-align: start;
  margin-top: 130px;
  margin-bottom: 25px;
}
.selectRadio {
  width: 100%;
  height: 280px;
  position: relative;
  display: grid;
  place-content: center;
  padding: 25px 50px;
  overflow: hidden;
  margin-bottom: 20px;
}
.selectRadio input {
  position: absolute;
  top: 0;
  left: 0;

  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.selectRadio input::before {
  content: "\f058";
  font-size: 35px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgb(96, 200, 221);
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  transform: translateY(-200px);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.selectRadio input:hover::before {
  opacity: 1;
  transform: translateY(0px);
}
.selectRadio img,
.selectRadio label {
  position: relative;
  z-index: 1000;
  pointer-events: none;
  margin: 0 auto;
}
.selectRadio img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.selectRadio label {
  font-size: 24px;
  color: rgb(24, 21, 21);
  font-weight: 900;
  text-align: center;
  line-height: 1.583;
  margin-top: 20px;
}
.selectDesc {
  font-size: 20px;
  color: rgb(24, 21, 21);
  font-weight: 700;
  text-align: center;
  max-width: 61%;
  margin: 0 auto;
  margin-top: 50px;
}
.parent-wrap {
  --button-height: 90px;
  width: 100%;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0.08);
  min-height: 300px;
  padding: 100px 85px 50px 85px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--button-height) + 30px);
}

.main-heading span {
  font-size: 24px;
  color: rgb(24, 21, 21);
  font-weight: 500;
  display: block;
  text-align: center;
  margin-bottom: 25px;
}
.label-heading {
  font-size: 20px;
  color: rgb(24, 21, 21);
  position: relative;
  margin-bottom: 15px;
  font-weight: 900;
}
.field-text {
  margin-left: 40px;
  margin-right: 40px;
  font-size: 16px;
  font-family: "Roboto";
  margin-top: 10px !important;
  color: rgb(98, 98, 98);
}
.form-field {
  position: relative;
}
.form-field select,
.form-field input {
  border: 0;
  border-radius: 50px;
  background-color: rgb(237, 237, 237);
  width: 100%;
  margin-top: 0;
  outline: solid 2px transparent;
  transition: 0.5s all ease;
  height: 75px;
  font-size: 15px;
  font-family: "Roboto";
  color: rgb(98, 98, 98);
  padding-left: 40px;
}
.form-field select {
  -webkit-appearance: none;
  cursor: pointer;
  z-index: 1;
}
.form-field select + span:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f063";
  color: rgb(24, 21, 21);
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 45px;
  height: 45px;
  line-height: 45px;
  pointer-events: none;
  font-size: 15px;
  top: 20%;
  cursor: pointer;
  right: calc(0px + 20px);
  z-index: 0;
}
.single-field {
  margin: 30px 0;
}
#sub {
  background-color: rgb(8, 174, 118);
  box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: var(--button-height);
  border: 0;
  font-size: 20px;
  color: rgb(255, 255, 255);
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
}

.thankyou-page {
  background-image: url(../images/thankyou-bg.jpg);
  background-size: cover;
  text-align: center;
  min-height: 100vh;
  position: absolute;
  width: 100%;
  overflow: hidden;
  /*display: none;*/
  top: 0;
}
.show-thankyou {
  display: block !important;
}
.thankyou-page .parent-wrap {
  padding-top: 150px;
}
.check-img {
  position: relative;
}
.thankyou-page img {
  width: 200px;
  filter: invert(51%) sepia(60%) saturate(1301%) hue-rotate(62deg)
    brightness(92%) contrast(101%);
}
.thankyou-page h1 {
  font-size: 70px;
  color: rgb(28, 26, 26);
  font-weight: bold;
  margin-top: 50px;
}

.thankyou-page p {
  font-size: 18px;
  font-family: "Roboto";
  color: rgb(63, 63, 63);
  margin-top: 30px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.contact-info {
  margin-top: 100px;
}
.contact-info h5 {
  font-size: 20px;
  color: rgb(24, 21, 21);
  font-weight: bold;
  margin-bottom: 20px;
}
.social-btn a {
  border-radius: 50%;
  background-color: rgb(237, 237, 237);
  width: 55px;
  height: 55px;
  color: #fff;
  line-height: 55px;
  display: inline-block;
  border: 0;
  margin: 0 3px;
}
.social-btn .facebook {
  background-color: rgb(64, 100, 172);
}
.social-btn .twitter {
  background-color: rgb(30, 155, 235);
}
.social-btn .linkedin {
  background-color: rgb(14, 114, 163);
}
.social-btn .youtube {
  background-color: rgb(247, 0, 0);
}
.social-btn button i {
  font-size: 15px;
  color: rgb(255, 255, 255);
}

#sub img {
  width: 60px;
}

.highlight {
  border-top: solid 3px var(--primary-color) !important;
  border-bottom: solid 3px var(--primary-color) !important;
}

#error {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
}

.invalid {
  border: solid 2px #ff4444 !important;
  position: relative;
}
