* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
p,
textarea {
  font-family: "Outfit", sans-serif;
}
body {
  max-width: 2000px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

input,
button,
select,
textarea {
  border: none;
  background: transparent;
  font-family: "Outfit", sans-serif;
  outline: none;
}

/* HERO  */

.hero {
  border-radius: 24px;
  background: linear-gradient(180deg, #cbfae1 -6.16%, #fff 17.58%);
  width: 98%;
  margin: 0 auto;
  /* border: 1px solid red; */
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  padding-top: 16px;
}
.hero_left_grad {
  width: 683.96px;
  height: 470.454px;
  background: var(--Brand-Neon-Mint-500, #56ef9f);
  filter: blur(200px);
  position: absolute;
  border: 3px solid red;
  top: 300px;
}
.hero_right_grad {
  width: 683.96px;
  height: 470.454px;
  background: var(--Brand-Neon-Mint-500, #56ef9f);
  filter: blur(200px);
  position: absolute;
  border: 3px solid red;
  top: 300px;
  right: 0;
}
.hero_content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* NAV SECTION  */

nav {
  display: flex;
  border-radius: 100px;
  background: var(--White, #fff);
  display: flex;
  width: 50%;
  margin: 0 auto;
  padding: 12px 14px;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
nav img {
  cursor: pointer;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
nav ul li {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px; /* 150% */
  cursor: pointer;
}

.btn {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid var(--Brand-Azure-Blue-500, #1d72db);
  background: var(--Brand-Azure-Blue-500, #1d72db);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  cursor: pointer;
  width: fit-content;
}
.btn button {
  color: var(--White, #fff);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  cursor: pointer;
}
.btn i {
  color: var(--White, #fff);
  font-size: 20px;
  cursor: pointer;
}
.btn_trans {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid var(--Brand-Azure-Blue-50, #e8f1fb);
  background: var(--Brand-Azure-Blue-50, #e8f1fb);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  cursor: pointer;
}
.btn_trans button {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}
.mobile_menu {
  display: none;
}

/* HERO BODY  */
.hero_body {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 35%;
  margin: 0 auto;
  align-items: center;
}
.hero_toast {
  display: flex;
  padding: 4px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 112px;
  border: 1px solid var(--Brand-Azure-Blue-50, #e8f1fb);
  background: var(--Brand-Azure-Blue-50, #e8f1fb);
  margin: 0 auto;
  width: fit-content;
}
.hero_toast h3 {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  text-align: center;
  font-family: Outfit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}
.hero_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero_text h1 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  text-align: center;
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  width: 90%;
  margin: 0 auto;
}
.hero_text h1 span {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  font-family: "Zilla Slab";
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.96px;
}
.hero_text p {
  color: var(--Gray-500, #667085);
  text-align: center;
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.hero_img {
  /* border: 1px solid red; */
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
  background-image: url("../assets/hero_img.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  width: 70%;
  height: 350px;
}

/* STATS SECTION  */
.stats_div {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 40px 0;
}
.each_stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.each_stat h4 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}
.each_stat p {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

/* CIRCLE FLOW SECTION  */
.circle_flow {
  padding: 64px 80px;
}
.cf_head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cf_head h4 {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  text-align: center;
  font-family: Outfit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: flex;
  padding: 4px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 112px;
  border: 1px solid var(--Brand-Azure-Blue-50, #e8f1fb);
  background: var(--Brand-Azure-Blue-50, #e8f1fb);
  width: fit-content;
  margin-bottom: 24px;
}
.cf_head h2 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  text-align: center;
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
}
.cf_head h2 span {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  font-family: "Zilla Slab";
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.96px;
}
.cf_head p {
  color: var(--Gray-500, #667085);
  text-align: center;
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.cf_body {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 40px 0;
}
.each_cf_card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 40%;
  padding: 28px 28px 24px 28px;
  border-radius: 40px;
  border: 4px solid var(--White, #fff);
  background: var(--Gray-25, #fcfcfd);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.each_cf_card img {
  height: 328px;
  width: 100%;
}
.each_cf_card h4 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
.each_cf_card p {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.mobile_down_cont {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 0;
}
.mobile_down_cont img {
  padding-bottom: 24px;
  cursor: pointer;
}
.mobile_down_cont h3 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  text-align: center;
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
}
.mobile_down_cont h3 span {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  font-family: "Zilla Slab";
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.96px;
}
.mobile_down_cont p {
  color: var(--Gray-500, #667085);
  text-align: center;
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  width: 60%;
  margin: 0 auto;
}
.app_down_btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}
.truncate_p {
  width: 40%;
  margin: 0 auto;
  padding-top: 10px;
}

.test_slider {
  padding: 40px 0;
}
.icon {
  filter: invert(1);
}
.icon_div {
  /* border: 1px solid red; */
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.test_card {
  border-radius: 24px;
  background: var(--White, #fff);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  width: 352px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.test_card p {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.test_card h4 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.none {
  display: none;
}
.flex {
  display: flex;
}
.faq_cont {
  width: 65%;
  margin: 0 auto;
  padding: 40px 0;
  gap: 16px;
}
.each_faq {
  border-radius: 24px;
  background: var(--White, #fff);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.faq_ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 1px solid red; */
  width: 100%;
}
.faq_ques h4 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.each_faq p {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.rep_cont {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 12px;
  border-radius: 24px;
  background: var(--White, #fff);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  margin: 40px auto;
  width: 50%;
}
.input_cont {
  border-radius: 100px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--White, #fff);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 10px 14px 10px 20px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.input_cont input,
.input_cont input::placeholder {
  color: var(--Gray-400, #98a2b3);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
}

.text_cont {
  border-radius: 12px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--White, #fff);
  padding: 12px 16px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.text_cont textarea {
  color: var(--Gray-400, #98a2b3);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  resize: none;
  height: 100px;
  width: 100%;
}

.text_cont textarea::placeholder {
  color: var(--Gray-400, #98a2b3);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.text_area_wc p {
  color: var(--Gray-500, #667085);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}
.upload_div {
  width: 100%;
  padding: 20px 0 0;
}

.upload_div h3 {
  color: var(--Gray-900, #101828);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.upload_div h3 span {
  color: var(--Gray-500, #667085);
}

.upload_div p {
  color: var(--Gray-500, #667085);
  font-family: Outfit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  width: 100%;
}

.upload_file {
  border-radius: 12px;
  border: 1px dashed var(--Brand-Azure-Blue-500, #1d72db);
  background: var(--Brand-Azure-Blue-50, #e8f1fb);
  display: flex;
  padding: 12px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin-top: 12px;
  cursor: pointer;
}

.upload_file h4 {
  color: var(--Gray-900, #101828);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.upload_file h4 span {
  color: var(--Brand-Azure-Blue-500, #1d72db);
}

.upload_file p {
  color: var(--Gray-500, #667085);
  font-family: Outfit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  text-align: center;
}

.uploaded_file {
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  justify-content: space-between;
  border-radius: 12px;
  background: var(--Gray-100, #f2f4f7);
  margin-top: 12px;
}

.uploaded_file_head {
  display: flex;
  gap: 8px;
  align-items: center;
}

.uploaded_file_head p {
  color: #03112c;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.uploaded_file_head img {
  width: 24px;
  height: 24px;
}

.uploaded_file i {
  color: #d92d20;
  cursor: pointer;
}

#uploaded_front_id {
  display: none;
}
.input_div {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.footer_cont {
  background: linear-gradient(0deg, #cbfae1 0%, #fcfcfd 100%);
}
.ready_cont {
  padding: 80px;
}
.water_logo {
  width: 80%;
  margin: 24px auto 0;
  /* border: 1px solid red; */
}
.water_logo img {
  width: 100%;
  opacity: 0.2;
}
footer {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #eaecf0;
  padding: 20px 0;
}
.footer_left h4 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.footer_left p {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px; /* 150% */
  display: flex;
  gap: 5px;
  align-items: center;
}
.footer_left img {
  cursor: pointer;
}
.footer_mid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 25%;
}
.footer_mid p {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px; /* 150% */
  cursor: pointer;
}
.footer_right {
  display: flex;
  gap: 24px;
}
.footer_right img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.copy_right {
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #eaecf0;
  padding: 20px 0 40px;
  display: flex;
  justify-content: center;
}
.copy_right p {
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.get_started {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}
.overlay {
  background: var(--Gray-400, #98a2b3);
  width: 100%;
  height: 100vh;
  z-index: 3;
  position: fixed;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.mobile_menu_div {
  width: 100%;
  /* height: 200px; */
  z-index: 4;
  background: white;
  position: absolute;
  top: 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.mob_menu_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
}
.mob_menu_body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-bottom: 22px;
}
.mob_menu_body p {
  cursor: pointer;
  color: var(--Gray-500, #667085);
  font-family: "Zilla Slab";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

/* TERMS AND CONDITIONS */
.terms_body_cont {
  background: var(--Gray-25, #fcfcfd);
}
.terms_nav {
  padding: 40px 0 56px;
}
.terms_body {
  padding: 60px 0;
  width: 60%;
  margin: 0 auto;
}
.terms_head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.terms_head h2 {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
}
.terms_head h4 {
  color: var(--Brand-Prussian-Blue-500, #0d1c45);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.terms_head p,
.each_terms p {
  color: var(--Gray-500, #667085);
  text-align: justify;
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
}
.terms_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}
.each_terms {
  display: flex;
  flex-direction: column;
}
.each_terms h3 {
  color: var(--Gray-500, #0d1c45);
  text-align: justify;
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
}

/* GET STARTED  */
.auth_cont {
  padding: 40px;
  display: flex;
  height: 100vh;
  /* border: 1px solid red; */
}
.auth_left {
  /* position: relative; */
  width: 50%;
  background-image: url("../assets/auth_img.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh;
}
.auth_right {
  width: 35%;
  /* border: 1px solid green; */
  padding-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* justify-content: center; */
  overflow-y: auto;
}
.auth_right_head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
}
.auth_right_head h2 {
  color: var(--Gray-900, #101828);
  font-family: "Zilla Slab";
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}
.auth_right_head p {
  color: var(--Gray-500, #667085);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.g_card {
  display: flex;
  width: 75%;
  padding: 12px;
  gap: 24px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--Gray-100, #f2f4f7);
  background: var(--Brand-Azure-Blue-25, #f6faff);
}
.g_card_right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.g_card_right h3 {
  color: #000;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.g_card_right p {
  color: #8692a6;
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.g_card_right h4 {
  color: var(--Brand-Azure-Blue-500, #1d72db);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  cursor: pointer;
}

@media (max-width: 800px) {
  /* NAV SECTION  */
  .hero {
    margin-top: 10px;
  }
  nav {
    width: 85%;
  }
  nav ul,
  nav .btn_trans {
    display: none;
  }
  .mobile_menu {
    display: flex;
  }
  .mobile_menu i {
    font-size: 24px;
  }
  .hero_right_grad,
  .hero_left_grad {
    top: 700px;
  }
  .hero_body {
    width: 90%;
  }
  .hero_text h1,
  .hero_text h1 span {
    font-size: 38px;
  }
  .hero_text p {
    font-size: 16px;
    width: 90%;
    margin: 0 auto;
  }
  .hero_img {
    background-image: url("../assets/mobile_hero.svg");
    height: 300px;
  }
  .stats_div {
    width: 80%;
    flex-wrap: wrap;
  }
  .circle_flow {
    padding: 20px 20px;
  }
  .cf_head h2 {
    font-size: 36px;
  }
  .cf_body {
    flex-direction: column;
  }
  .each_cf_card {
    width: 100% !important;
  }
  .each_cf_card img {
    height: 206px;
  }
  .each_cf_card h3 {
    font-size: 20px;
  }
  .each_cf_card p {
    font-size: 16px;
  }
  .mobile_down_cont {
    padding-top: 32px;
    width: 80%;
  }
  .mobile_down_cont:nth-child(1) {
    height: 204px;
  }
  .mobile_down_cont p {
    width: 100%;
  }
  .app_down_btn {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .app_down_btn img {
    width: 152px;
  }
  .truncate_p {
    width: 100%;
  }
  .test_slider {
    padding-bottom: 10px;
  }
  .faq_cont {
    width: 100%;
  }
  .rep_cont {
    width: 100%;
  }
  .input_div {
    flex-direction: column;
  }
  .input_cont {
    width: 100% !important;
  }
  .water_logo {
    width: 100%;
  }
  footer {
    flex-direction: column;
    width: 85%;
    gap: 24px;
  }
  .footer_mid {
    width: 100%;
    gap: 25px;
  }
  .copy_right {
    width: 85%;
  }
  .footer_left {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer_left img {
    width: 132px;
  }
  .terms_body {
    width: 85%;
    padding: 0 0 40px;
  }

  /* GET STARTED  */
  .auth_cont {
    flex-direction: column;
    padding: 0;
  }
  .auth_left {
    border-radius: 0 0 24px 24px;
    background-image: url("../assets/mobile_auth_img.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 37%;
    overflow: hidden;
  }

  .auth_left img {
    right: 15%;
    top: 15%;
    width: 70%;
    height: 90%;
  }
  .auth_right {
    /* border: 2px solid green; */
    width: 100%;
    height: 63%;
    padding: 24px;
    padding-top: 20px;
    display: block;
    /* z-index: 2; */
    overflow: auto;
  }
  .auth_right_head p {
    width: 100%;
  }
  .g_card{
    margin-bottom: 24px;
    width: 100%;
  }
}
