.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}
.drawer.open + .overlay {
  display: block;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 3px 6px #1450a840;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  visibility: hidden;
}
.drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.drawer-content {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}
.close-drawer {
  background: #fff;
  color: #fff;
  padding: 8px;
  border: none;
  cursor: pointer;
}

.get-started-form-wrapper {
  padding: 4rem 0 8rem 0;
}
.get-started-form-wrapper h2{
  font-family: 'work-sans-semibold', 'sans-serif';
  font-size: 4rem;
  width: 90%;
}
.step-wrapper {
  margin: 7rem 0 5rem 0;
}
.step-wrapper h2 {
  margin-bottom: 1rem;
  font-family: 'work-sans-semibold', 'sans-serif';
  font-size: 3.4rem;
}
.step-wrapper p {
  font-size: 18px;
}
.questions-wrapper {
  margin: 8rem 0 10rem 0;
}
.questions-wrapper h3 {
  font-family: 'work-sans-medium', 'sans-serif';
  font-size: 2.8rem;
  margin-bottom: 4rem;
}
.required-field {
  color: red;
  font-size: 3rem;
}
.answers-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.answers {
  background: #F5FBFF;
  height: fit-content;
  padding: 10px 32px;
  border: none;
  border-radius: 38px;
  cursor: pointer;
}
.answers p {
  font-size: 18px;
  color: #004275!important;
  margin: 0;
  font-family: 'work-sans-regular', 'sans-serif';
}
.next-step-button-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.previous-step-button {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 30px;
  width: max-content;
  border: 1px solid #0445d2;
  cursor: pointer;
}
.previous-step-button p {
  margin: 0 !important;
  width: 100%;
  color: #0445d2!important;
  font-size: 16px!important;
}
.next-step-button {
  align-items: center;
  background: #0445d2;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 30px;
  width: max-content; 
  cursor: pointer;
}
.next-step-button p {
  margin: 0 !important;
  width: 100%;
  color: #fff!important;
  font-size: 18px!important;
}
.form-field-outer-wrapper {
  margin-bottom: 7rem;
}
.form-field-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.form-field-wrapper input[type="text"] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #C9E8FF;
  border-radius: 6px;
  color: #4b5b63;
  font-family: 'work-sans-regular', 'sans-serif';
  font-size: 16px;
  height: 50px;
  margin-bottom: 7px;
  outline: none;
  padding-left: 14px;
  resize: vertical;
  width: 80%;
}
.form-field-wrapper label {
  font-family: 'work-sans-regular', 'sans-serif';
  font-size: 16px;
  color: #222c3a!important;
  margin-bottom: 10px;
}
.form-field-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url(https://9471087.fs1.hubspotusercontent-na1.net/hubfs/9471087/header/xenonstack-downarrow.png);
  background-position-x: 98%;
  background-position-y: 18px;
  background-repeat: no-repeat;
  background-size: 20px;
  color: #4b5b63;
  padding-right: 2rem;
  border-radius: 5px;
  font-family: 'work-sans-regular', 'sans-serif';
  font-size: 16px;
  height: 50px;
  padding-left: 14px;
  text-align: left;
  width: 80%;
  border: 1px solid #C9E8FF;
}

.answers.selected {
  background-color: #005597;
}
.answers.selected p{
  color: #fff!important;
}
.error-message {
  color: red;
  margin-top: 12px;
  font-size: 14px!important;
  font-family: 'work-sans-regular', 'sans-serif';
}
.successful-meeting-wrapper {
  text-align: center;
  margin: 15rem 0 10rem 0;
}
.successful-meeting-wrapper h2 {
  text-align: center;
  margin: 0 auto 2rem auto;
}
.successful-meeting-wrapper p {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.successful-meeting-wrapper img {
  margin-bottom: 30px;
}
@media(min-width: 1024px) and (max-width: 1540px) {
  .get-started-form-wrapper h2 {
    font-size: 3.6rem!important;
  }
  .step-wrapper h2 {
    font-size: 3rem!important;
  }
  .step-wrapper p {
    font-size: 16px!important;
  }
  .form-field-wrapper label {
    font-size: 14px!important;
  }
  .form-field-wrapper input[type=text] {
    font-size: 14px!important;
    height: 44px!important;
  }
  .form-field-wrapper select {
    font-size: 14px!important;
  }
  .questions-wrapper h3 {
    font-size: 16px!important;
  }
  .answers p {
    font-size: 14px!important;
  }
  .answers {
    padding: 6px 24px!important;
  }
  .next-step-button p {
    font-size: 16px !important;
  }
  .step-wrapper{
    margin: 6rem 0 5rem 0;
  }
  .get-started-form-wrapper {
    padding: 0 0 8rem;
  }
  .close-drawer img {
    width: 28px;
    height: 28px;
  }
  .captach-heading-wrapper canvas {
    height: 50px;
  }
  .questions-wrapper{
    margin: 8rem 0;
  }
}
@media(max-width: 1023px) {
  .form-field-wrapper label, .form-field-wrapper select{
    font-size: 14px;
  }
  .get-started-form-wrapper h2 {
    font-size: 4rem;
  }
  .step-wrapper h2 {
    font-size: 3.4rem;
  }
  .step-wrapper p {
    font-size: 15px!important;
  }
  .drawer {
    width: 100%;
  }
  .form-field-wrapper select {
    width: 100%;
    font-size: 14px;
  }
  .form-field-wrapper input[type=text] {
    width: 100%;
    font-size: 14px;
  }
  .answers p {
    font-size: 13px;
  }
  .next-step-button p{
    font-size: 16px !important;
  }
}
.others-textbox-wrapper {
  margin-top: 24px;
}
.others-textbox {
  width: 80%;
  padding: 10px;
  -webkit-appearance: none;
  border: unset;
  border-bottom: 1px solid #005597;
  border-radius: 6px;
  font-family: 'work-sans-regular', 'sans-serif';
  font-size: 14px;
  outline: none;
}
.captcha-wrapper-xenonstack {
  display: flex;
}
.captach-heading-wrapper p {
  font-size: 2.4rem;
  padding-bottom: 1rem;
}
.captach-heading-wrapper,
.captach-heading-wrapper div:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.captach-heading-wrapper canvas {
  width: 200px;
  height: 70px;
}
.captcha-wrapper-xenonstack input {
  border: none;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #1450a8;
  border-radius: 5px;
  text-align: left;
  height: 55px;
  width: 100%;
  padding-left: 10px;
  font-size: 2.4rem;
  font-family: 'work-sans-regular',sans-serif;
  color: #222c3a;
}
.captcha-wrapper-xenonstack div:nth-of-type(1) {
  width: 100%;
}
.captach-heading-wrapper .refreshButton {
  border: none;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #1450a826;
  border: 1px solid #e6ecf4;
  border-radius: 5px;
  text-align: left;
  height: 40px;
  width: 10%;
  font-size: 2.4rem;
  font-family: 'work-sans-regular',sans-serif;
  color: #222c3a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.captach-heading-wrapper {
  margin-bottom: 20px;
}
.captach-heading-wrapper h3 {
  margin-bottom: 0;
}
.errorMsgCaptcha {
  color: red;
  margin-top: 10px;
  font-size: 2rem;
  font-family: 'work-sans-regular',sans-serif;
}
@media(max-width: 1024px){
  .captach-heading-wrapper{
    margin-bottom: 10px;
  }
  .captach-heading-wrapper canvas{
    height: 45px;
    width: 170px;
  }
}
@media (max-width: 500px) {
  .captach-heading-wrapper {
    row-gap : 2rem;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
  .captach-heading-wrapper .refreshButton {
    margin-bottom: 30px;
  }
}
@media (max-width: 356px) {
  .captach-heading-wrapper canvas {
    margin-left: -20px;
  }
}
@media(max-width:1023px){
  .form-field.flexDiv {
    flex-direction: column;
    gap: 0
  }
  .flexDiv div {
    width: 100%;
  }
  .get-started-form-wrapper{
    padding: 0 0 10rem 0;
  }
  .captach-heading-wrapper canvas {
    height: 40px;
    width: 150px;
  }
  .error-message{
    margin-top: 2px;
  }
}
@media(max-width:767px) {
  .errormessage-comment {
    font-size: 2rem
  }
  .get-started-form-wrapper h2 {
    font-size: 4.4rem;
  }
  .step-wrapper h2 {
    font-size: 3.3rem !important;
  }
  .form-field-wrapper input[type="text"]{
    margin-bottom: 2px;
  }
  .next-step-button p,
  .previous-step-button p{
    font-size: 14px !important;
  }