@import url("https://fonts.googleapis.com/css2?family=Brush+Script+MT:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins: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");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  scroll-behavior: smooth;
}
.main-app {
  padding: 0 1.09rem;
}

.banner {
  background-color: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.banner__sub-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.45rem 1.09rem 0.3rem 1.09rem;
}
.banner__title-container {
  width: 15.6rem;
  position: relative;
}
.banner__title-container > .banner__title {
  font-size: 1.09rem;
  font-weight: 500;
  color: #282828;
  width: 13.54rem;
  line-height: 1.2rem;
  margin-bottom: 0.64rem;
}

.banner__title-container > .banner__title > span {
  font-family: "Brush Script MT", cursive;
  font-size: 1.45rem;
  font-weight: 400;
  color: #d280a0;
  position: relative;
}

.banner__title-container > .banner__title > span > img {
  width: 1.059rem;
  position: absolute;
  bottom: 0.3rem;
  left: 0.5rem;
}

.banner__title-container > .banner__description {
  font-size: 0.636rem;
  font-weight: 400;
  color: #282828cc;
  line-height: 0.72rem;
  margin-bottom: 1.46rem;
  letter-spacing: -0.02rem;
}
.banner__get-free-consultation-btn {
  width: 8.81rem;
  height: 1.81rem;
  border-radius: 0.18rem;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brandClr);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 600;
}
.banner__scan-machine-container {
  height: 16.5rem;
  width: 19.27rem;
}
.banner__scan-machine-container > img {
  width: 100%;
  height: 100%;
}

.banner__why-choose-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.54rem 0;
}
.banner__why-choose-us > div {
  width: 16.54rem;
  height: 2.9rem;
  padding: 0.9rem 1.09rem;
  background-color: #ffebf3;
  display: flex;
  align-items: center;
}

.banner__why-choose-us > div > img {
  width: 1.09rem;
  height: 1.096rem;
}
.banner__why-choose-us > div > p {
  font-size: 0.72rem;
  font-weight: 500;
  color: #282828;
  margin-left: 0.36rem;
}
@media screen and (min-width: 768px) {
  .banner__sub-container {
    padding: 0 1.88rem;
  }

  .banner__title-container {
    width: 14.75rem;
    margin-top: 1.9rem;
    margin-bottom: 2.5rem;
  }
  .banner__title-container > .banner__title {
    font-size: 1.2rem;
    width: 14.75rem;
    margin-bottom: 0.09rem;
  }
  .banner__title-container > .banner__description {
    font-size: 0.377rem;
    line-height: 0.6rem;
    letter-spacing: 0.01rem;
    margin-bottom: 0.9rem;
  }
  .banner__sub-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .banner__scan-machine-container {
    height: unset;
    width: 16.96rem;
    right: -0.8rem;
    top: -2rem;
    position: absolute;
  }
  .banner__get-free-consultation-btn {
    width: 4.9rem;
    height: 1.13rem;
    border-radius: 0.07rem;
    font-size: 0.377rem;
  }
  .banner__why-choose-us {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 0 0;
  }

  .banner__why-choose-us > div {
    width: 12.07rem;
    height: 2.33rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: solid 1px #dd457d;
  }

  .banner__why-choose-us > div:last-child {
    border-right: none;
  }
  .banner__why-choose-us > div > img {
    width: 0.9rem;
    height: 0.9rem;
  }
  .banner__why-choose-us > div > p {
    font-size: 0.52rem;
    margin-left: 0.22rem;
  }
}

.form-container {
  padding: 1.59rem 1.88rem 1.59rem 1.88rem;
  padding-right: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .form-container {
    flex-direction: column;
    padding: 1.1rem;
  }
}
/* .form-container {
  padding: 3rem;
} */
.form-container > h1 {
  width: 15.5rem;
  font-size: 0.905rem;
  font-weight: 400;
  margin: 2.5rem;
  margin-right: initial;
  color: #c7527f;
  position: relative;
  letter-spacing: -0.02rem;
}

.form-container img {
  position: absolute;
  z-index: -1;
  width: 1.636rem;
  top: -0.4rem;
  left: -0.6rem;
}
.form-container input:focus,
.form-container textarea {
  outline: var(--brandClr) !important;
  border: solid 1px var(--brandClr);
}
.banner__input:focus,
.banner__message:focus {
  outline: var(--brandClr) !important;
  border: solid 1px var(--brandClr);
}
@media screen and (max-width: 768px) {
  .form-container img {
    position: absolute;
    z-index: -1;
    width: 1.636rem;
    top: -0.5rem;
    left: -0.6rem;
  }
  .form-container > h1 {
    margin-top: 2.3em;
    margin-left: 0;
    margin-bottom: initial;
  }
}

.form-container__form {
  height: 11.2rem;
  width: 12.98rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px 0 #bfbfbf;
  flex-shrink: 0;
  border-radius: 0.15rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .form-container__form {
    width: 16.54rem;
    height: 16.95rem;
  }
}

.form-container__form > h3 {
  width: 100%;
  height: 1.622rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.44rem;
  background-color: var(--brandClr);
  color: white;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .form-container__form > h3 {
    font-size: 0.727rem;
    height: 2.2rem;
  }
}

.form-container__form > input {
  height: 1.1rem;
  border: 0;
  background-color: rgb(239, 239, 239);
  margin-top: 0.4rem;
  width: 10.56rem;
  align-self: center;
  padding-left: 0.4rem;
}
@media screen and (max-width: 768px) {
  .form-container__form > input {
    height: 2rem;
    width: 15.09rem;
    background-color: rgb(239, 239, 239, 0.5);
  }
}

.banner__input::placeholder,
.banner__message::placeholder {
  color: #b0b0b0;
}

.form-container__form > textarea {
  height: 3.2rem;
  margin-top: 0.4rem;
  border: 0;
  background-color: rgb(239, 239, 239);
  width: 10.56rem;
  align-self: center;
  padding: 0.4rem;
  padding-top: 0.2rem;
  resize: none;
}
@media screen and (max-width: 768px) {
  .form-container__form > textarea {
    width: 15.09rem;
    height: 5.45rem;
    background-color: rgb(239, 239, 239, 0.5);
    color: #f7f7f7;
  }
}

.form-container__form > button {
  width: 4.47rem;
  height: 1.13rem;
  background-color: var(--brandClr);
  color: white;
  align-self: center;
  margin-top: 1rem;

  border: 0;
  font-weight: 600;
  font-size: 0.377rem;
}
@media screen and (max-width: 768px) {
  .form-container__form > button {
    height: 1.8rem;
    width: 7.18rem;
    font-size: 0.636rem;
    margin-top: 1.5rem;
  }
}

.banner .line {
  height: 0.15rem;
  width: 2rem;
  background-color: #d7638f;
}

.banner__input {
  height: 2.05rem;
  margin-bottom: 0.4rem;
  border: 1px solid #d791ab;
  padding: 0.5rem 0.6rem;
  /* color: grey; */
  border-radius: 0.2rem;
}

.banner__message {
  height: 6rem;
  border: 1px solid #d791ab;
  padding: 0.2rem;
  color: grey;
  border-radius: 0.2rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.6rem;
}

.banner__submit-btn {
  height: 2rem;
  width: 7.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 0.2rem;
  background-color: var(--brandClr);
  color: white;
  border: 0;
  /* border-radius: 0.08rem; */
  align-self: center;
  margin-top: 0.4rem;
}
.cancel-button {
  background-color: transparent;
  border: none;
  outline: none;
  color: #aba7af;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1rem;
}
.error-icon {
  font-size: 1.5rem;
  color: rgb(211, 59, 59);
  margin-bottom: .5rem;
}
.error-popup-head{
  margin-top: 0rem !important;
  padding: 0rem !important;
  margin-bottom: 0rem !important;
  color: rgb(211, 59, 59) !important;
}
@media screen and (min-width: 768px) {
  .cancel-button {
    right: 1rem;
    top: 0.3rem;
    font-size: 0.5rem;
  }
  .banner__input {
    height: 0.97rem;
    margin-bottom: 0.25rem;
    border: 1px solid #d791ab;
    padding: 0.25rem 0.2rem;
    /* color: #B0B0B0; */
    font-size: 0.375rem;
    font-weight: 400;
    border-radius: 0.08rem;
  }

  .banner__message {
    height: 2.5rem;
    margin-bottom: 0.25rem;
    border: 1px solid #d791ab;
    padding: 0.2rem;
    border-radius: 0.08rem;
    font-size: 0.375rem;
    color: #000;
  }

  .banner__submit-btn {
    height: 1rem;
    width: 4.7rem;
    font-size: 0.416rem;
    background-color: var(--brandClr);
    color: white;
    border: 0;
    border-radius: 0.08rem;
    align-self: center;
    margin-top: 0.4rem;
  }
}
.radiation-scan-machine-img-small {
  display: block;
}
.radiation-scan-machine-img-medium {
  display: none;
}
@media screen and (min-width: 768px) {
  .radiation-scan-machine-img-small {
    display: none;
  }
  .radiation-scan-machine-img-medium {
    display: flex;
  }
}
