@charset "UTF-8";
body {
  background-color: #fffff4;
}

.heroBanner .content > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.heroBanner .content > div .heading p {
  font-weight: 400;
}
.heroBanner .content > div .heading h1 {
  font-weight: 300;
  font-size: var(--font-66);
  margin-bottom: var(--spaceBelow_heading);
  line-height: 1;
}
.heroBanner .content > div .contacts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.875rem, 0.3125rem + 2.0833vw, 2.8125rem);
  padding-right: calc(clamp(1.875rem, 0.3125rem + 2.0833vw, 2.8125rem) * 2.5);
  background-color: #fff;
}
.heroBanner .content > div .contacts > p {
  font-size: var(--font-24);
  color: var(--primaryBlack);
  text-transform: capitalize;
  font-weight: 400;
}
.heroBanner .content > div .contacts > a {
  font-size: var(--font-20);
  color: var(--tertiaryBlack);
  font-weight: 300;
  text-decoration: none;
  margin: var(--font-14) 0 0;
}
.heroBanner .content > div .contacts div {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: var(--font-14);
}
.heroBanner .content > div .contacts div * {
  font-weight: var(--font-14);
  color: #000000;
  font-weight: 300;
  text-decoration: none;
}
.heroBanner .content > div .contacts div img {
  height: var(--font-20);
  width: var(--font-20);
}

#lead_form {
  padding: var(--paddingY) var(--paddingX);
  background-color: #fff;
}
#lead_form .heading {
  max-width: clamp(50rem, 8.3333rem + 55.5556vw, 75rem);
  margin-bottom: var(--spaceBelow_heading);
}
#lead_form .heading h2 {
  color: var(--blue);
  font-weight: 600;
}
#lead_form .iti {
  margin-top: 15px;
  width: 100%;
}
#lead_form form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
}
#lead_form label {
  font-size: var(--font-14);
}
#lead_form input,
#lead_form select,
#lead_form textarea {
  width: 100%;
  border: none;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px;
  margin-top: 15px;
  font-size: var(--font-14);
}
#lead_form #phone, #lead_form #whatsapp_number {
  padding-left: 55px;
}
#lead_form input[type=checkbox] {
  all: unset;
  position: relative;
  height: 15px !important;
  width: 15px !important;
  margin-top: -5px !important;
}
#lead_form input[type=checkbox]::after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  height: 15px;
  width: 15px;
  top: 1px;
  border-radius: 5px;
  border: 1px solid #b8b8b8;
}
#lead_form input[type=checkbox]:checked::after {
  content: "";
  background-color: #a2c617;
  border: 1px solid #a2c617;
}
#lead_form input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  height: 25px;
  width: 25px;
  z-index: 1;
  top: -2px;
  left: 19%;
  font-weight: 1000;
  font-size: 14px;
}
#lead_form .whatsapp_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#lead_form .whatsapp_container .checkbox_container {
  display: flex;
  align-items: center;
  margin-left: 10px;
  gap: 5px;
}
#lead_form .whatsapp_container .checkbox_container label {
  font-size: 12px;
}
#lead_form .whatsapp_container .checkbox_container #whatsapp_checkbox {
  width: auto;
  margin: 0;
  padding: 0;
}
#lead_form .policy_container,
#lead_form .e_com_btc {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
#lead_form .policy_container input,
#lead_form .e_com_btc input {
  width: auto;
  margin: 0;
}
#lead_form .textareaDiv {
  grid-area: 2/3/4/4;
}
#lead_form .btn_container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-direction: column;
  align-items: flex-end;
}
#lead_form .btn_container .lead_form_error {
  display: none;
  color: #ff0000;
  text-align: right;
}

#virtual_factory_experience {
  padding: calc(var(--paddingY) / 2) var(--paddingX);
  background-color: white;
}
#virtual_factory_experience .heading {
  text-align: center;
}
#virtual_factory_experience .virtual_container {
  position: relative;
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
}
#virtual_factory_experience .virtual_container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* Only iframe is non-clickable initially */
}
#virtual_factory_experience .map_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 2;
}
#virtual_factory_experience .close_btn {
  background: none rgb(68, 68, 68);
  border: 0px;
  margin: 10px;
  padding: 0px;
  text-transform: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 2px;
  height: 40px;
  width: 40px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  overflow: hidden;
  top: 0px;
  right: 45px;
  display: none;
  z-index: 9999999;
}
#virtual_factory_experience .close_btn img {
  width: 100%;
  height: 100%;
  padding: 8px;
  opacity: 0.8;
  filter: invert(1);
}

@media screen and (max-width: 1024px) {
  #lead_form form {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  #lead_form form input,
  #lead_form form select,
  #lead_form form textarea {
    margin-top: 10px;
  }
  #lead_form .textareaDiv {
    grid-area: auto;
  }
  #lead_form .whatsapp_input {
    grid-area: 3/1/4/2;
  }
  #lead_form .policy_container,
  #lead_form .e_com_btc {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner > .content > div {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spaceBelow_heading);
  }
  #virtual_factory_experience .virtual_container {
    aspect-ratio: 9/16;
    max-height: 600px;
  }
  #lead_form form {
    grid-template-columns: 1fr;
  }
  #lead_form .whatsapp_input {
    grid-area: 5/1/6/2;
  }
}
@media screen and (max-width: 500px) {
  .heroBanner > .content > div {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spaceBelow_heading);
  }
  .heroBanner > .content > div .contacts {
    width: 100%;
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */