*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}
/* 
html {
  height: -webkit-fill-available;
  scroll-behavior: smooth;
} */

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* height: -webkit-fill-available; */
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

main {
  flex: 1;
  display: flex;
  background-color: #f7f7ef;
}

section {
  flex: 1;
  position: relative;
  background-color: #f7f7ef;
  background-size: 50% 100%;
  background-repeat: no-repeat;
  transition: background-position 0.5s ease;
}

header {
  padding: 20px 0;
  padding-left: 40px;
  background-color: #f7f7ef;
}

header > img {
  height: 74px;
  object-fit: scale-down;
}
.gap-20 {
  gap: 20px !important;
}

.align-items-center {
  align-items: center;
}

.animated-img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
}

.question-box-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  /* margin: 0 0 0 auto;
  max-width: 750px;
  width: 100%; */
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(120, 76, 0, 0.12);
  transition: right 0.5s ease-in-out;
  top: 0%;
}

.question-box-container > p {
  height: 32px;
  background: #f29c07;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.question-box-container > div {
  flex: 1;
  padding: 5%;
}

.question-text {
  color: rgba(0, 0, 0, 0.8);
  font-family: "karbon-medium";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 30px;
}

.question-options {
  display: flex;
  margin: 20px 0;
  color: rgba(0, 0, 0, 0.6);
  font-family: karbon-semibold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  gap: 16px;
}

/* test  */
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  display: block;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  padding: 5px 10px;
  color: rgba(0, 0, 0, 0.7);
  background-color: transparent;
  font-family: karbon-medium;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1px;
  padding: 8px;
  border-radius: 4px;
  line-height: 28px;
  cursor: pointer;
}

input[type="radio"]:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type="radio"] + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.7);
  vertical-align: middle;
  text-align: center;
  line-height: 24px;
  background-color: transparent;
}

input[type="radio"]:checked + label::before {
  background-color: transparent;
  border: 1px solid #f29c07;
  /* margin-right: 30px; */
}

/* input[type="radio"]:checked + label::before, */
input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #f29c07;
  border: 1px solid #f29c07;
  border-radius: 50%;
  left: 13px;
}

input[type="radio"]:disabled + label::after {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  border: none;
  outline: none;
}

/* test  */

.question-options > div > input {
  margin-right: 20px;
}

.btn-group {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 20px;
}

.btn-group > div {
  display: flex;
  margin-right: auto;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.btn-group > div > .activeDiv {
  width: 50px;
  height: 8px;
  border-radius: 10px;
  background: #f29c07;
}

.btn-group > div > .inactiveDiv {
  width: 50px;
  height: 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.btn {
  border-radius: 4px;
  border: 1px solid #f29c07;
  padding: 12px 24px;
  color: #f29c07;
  background: #ffffff;
  font-family: karbon-semibold;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.btn-next {
  background: #f29c07;
  color: #ffffff;
}

.secondary-question {
  width: 220px;
  display: flex;
  color: rgba(0, 0, 0, 0.8);
  font-family: karbon-medium;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.container {
  margin-top: 20px;
}

.question-container {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  margin-bottom: 20px;
}

.secondary-question-options {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.options {
  color: rgba(0, 0, 0, 0.7);
  font-family: "karbon-medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.d-none {
  display: none;
}

.final-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.final-summary > p {
  /* color: #4a4a47;  */
  color: #838383;
  text-align: center;
  font-family: karbon-semibold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* font-family: "karbon-semibold"; */
}

.primary-btn,
.secondary-btn {
  background-color: #f29c07;
  color: #ffffff;
  min-width: max-content;
  max-width: 300px;
  width: 100%;
  border-radius: 4px;
  font-family: "karbon-semibold";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border: 1px solid #f29c07;
  padding: 12px 24px;
  cursor: pointer;
}

.secondary-btn {
  background-color: #ffffff;
  color: #000000;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black background with opacity */
}

/* Modal Content/Box */
.modal-content {
  max-width: 80vw;
  width: 100%;
  background-color: #fefefe;
  margin: 0 auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.close-btn-container {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  border: 0;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
}

.horizontal-line {
  display: flex;
  align-items: center;
}

.horizontal-line:before,
.horizontal-line:after {
  content: "";
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #fff;
  flex-grow: 1;
  height: 1px;
  margin: 0 10px;
  /* Adjust the margin to control the line length */
}

/* Centered Text */
.centered-text {
  color: #000;
  text-align: center;
  font-family: "karbon-semibold";
  font-size: 30px;
  font-style: normal;
  line-height: 38px;
  margin: 0 10px;
}

.question-answer-container-modal {
  display: flex;
  gap: 20px;
}

.question-answer-container-modal > .question-section-modal {
  max-width: 200px;
  width: 100%;
}

.question-section-modal > label,
.answer-section-modal > label {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 5px 10px;
  background-color: #f29c07;
  color: #fff;
  font-family: "karbon-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1px;
  padding: 8px;
}

.question-section-modal > p,
.answer-section-modal > div {
  max-width: 100%;
  width: 100%;
  background: #f7f7ef;
  color: var(--Black-80, rgba(0, 0, 0, 0.8));
  font-family: "karbon-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 137.5% */
  letter-spacing: 0.1px;
}

.question-section-modal > p {
  padding: 10px 8px;
}

.answer-section-modal > div {
  padding: 10px 20px;
}

.question-answer-container-modal > .answer-section-modal {
  flex: 1;
}

.answer-section-modal > p > span {
  color: rgba(0, 0, 0, 0.8);
  font-family: "karbon-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.5px;
}

.d-flex {
  display: flex;
  gap: 10px;
}

.justify-content-between {
  justify-content: space-between;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-4 {
  margin-bottom: 40px;
}

.text-capitalize {
  text-transform: capitalize;
}

.multi-question-container {
  display: flex;
}

.multi-question-container > div:nth-child(1) {
  width: 80%;
}

.landing-page-section {
  background-color: #f7f7ef;
}

.left-section-landing-page {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.right-section-landing-page {
  width: 30%;
  background-image: url("./images/landing-page-bg-new.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.left-section-landing-page > .container-two {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.left-section-landing-page > .container-one,
.left-section-landing-page > .container-two,
.left-section-landing-page > p {
  width: 80%;
}

.left-section-landing-page > .container-one > h2 > p > label {
  color: var(--Black, #000);
  font-family: "karbon-semibold";
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 64px;
  /* 106.667% */
  letter-spacing: -0.25px;
}

.left-section-landing-page > .container-one > h2 > p > span {
  /* color: rgba(0, 0, 0, 0.7); */
  color: #4a4a47; 
  font-family: "karbon-semibold";
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: -0.25px;
}

.left-section-landing-page > .container-one > h6 > p {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.8);
  font-family: "karbon-semibold";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.left-section-landing-page > .container-two > .btn-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 100px;
}

.left-section-landing-page > .container-two > div > button {
  border: 0;
  width: 161px;
  height: 72px;
  border-radius: 4px;
  background: var(--Primary-orange, #f29c07);
  color: var(--White, #fff);
  font-family: "karbon-medium";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.disclaimer {
  color: var(--Black-80, rgba(0, 0, 0, 0.8));
  font-family: "karbon-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

/* Styles for tablets (both iOS and Android) in landscape mode */

@media screen and (max-width: 1024px) {
  header {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  header > img {
    width: 226px;
    height: 60px;
    margin: 0 auto;
  }

  .left-section-landing-page,
  .right-section-landing-page {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .right-section-landing-page {
    height: 600px;
    margin-bottom: 20px;
  }

  /* main {
    flex-direction: column-reverse;
  } */

  .left-section-landing-page > .container-one,
  .left-section-landing-page > .container-two,
  .left-section-landing-page > p {
    max-width: 100%;
    width: 100%;
  }

  .left-section-landing-page > .container-one {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
  }

  .left-section-landing-page > .container-one > h2 > p {
    margin-bottom: 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .left-section-landing-page > .container-one > h2 > p > label,
  .left-section-landing-page > .container-one > h2 > p > span {
    font-size: 28px;
    line-height: normal;
    text-align: center;
  }

  .left-section-landing-page > .container-one > h6 > p {
    margin: 10px auto 0;
    width: 90%;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.1px;
    text-align: center;
  }

  .left-section-landing-page > .container-two {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .left-section-landing-page > .container-two > .btn-container {
    margin-top: 20px;
    align-items: center;
  }

  .disclaimer {
    padding: 20px;
  }
}

#counterContainer {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 0 0 auto;
  max-width: 50vw;
  width: 100%;
  border-radius: 20px;
  transition: right 0.5s ease-in-out;
  bottom: 4%;
}

#counterContainer .counter-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
}

#counterContainer .counter-list .counter-items {
  display: flex;
  position: relative;
  width: 48px;
  height: 48px;
  /* padding: 21px 26px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #f29c07;
  color: #f29c07;
  text-align: center;
  font-family: karbon-semibold;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
}

#counterContainer .counter-list .counter-items-active {
  width: 80px;
  height: 80px;
  position: relative;
  flex-shrink: 0;
  stroke-width: 1px;
  stroke: rgba(0, 0, 0, 0.4);
  display: flex;
  padding: 21px 26px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  border-style: solid;
  border: 1px solid;
}

#counterContainer .counter-list .counter-items-active span {
  display: flex;
  width: 48px;
  height: 48px;
  /* padding: 21px 26px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-family: karbon-semibold;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
  background: rgba(0, 0, 0, 0.8);
}

#counterContainer .counter-list .counter-items-active span::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 1px;
  left: 100px;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #fff;
  animation: slideIn 0.5s ease-in-out forwards;
  transform-origin: left;
}

@keyframes slideIn {
  0% {
    width: 0;
  }

  100% {
    width: 60px;
  }
}

#counterContainer .counter-list .counter-items-visited {
  display: flex;
  width: 48px;
  height: 48px;
  position: relative;
  padding: 21px 26px;
  flex-shrink: 0;
  border-radius: 33px;
  /* border: 1px solid #F29C07; */
  color: #f29c07;
  text-align: center;
  font-family: karbon-semibold;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
}

#counterContainer .counter-list .counter-items-visited::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 54px;
  height: 48px;
  background-image: url(images/correct.svg);
  background-size: contain;
  top: 0px;
  background-repeat: no-repeat;
  left: 2px;
}

#counterContainer .counter-list .counter-items-visited span::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 1px;
  left: 69px;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #fff;
  animation: slideIn 0.5s ease-in-out forwards;
  transform-origin: left;
}

@keyframes slideIn {
  0% {
    width: 0;
  }

  100% {
    width: 60px;
  }
}

#counterContainer .lastchildActive {
  background-image: url(images/activeSaveIcon.svg);
  background-size: contain;
  width: 80px;
  height: 80px;
}

@media screen and (min-width: 1368px) {
  #section {
    display: flex;
    flex-direction: column;
    gap: 25%;
  }

  /* .question-box-container {
    position: relative;
  } */

  #counterContainer {
    position: relative;
  }

  .modal-content {
    max-width: 1053px;
  }
}

@media screen and (max-width: 1367px) {
  #section {
    display: flex;
    flex-direction: column;
    gap: 15%;
  }

  /* .question-box-container {
    position: relative;
  } */

  #counterContainer {
    position: relative;
  }
}

@media screen and (max-width: 990px) {
  header {
    padding-top: 20px;
    padding-left: 40px;
  }

  #section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    background-position: top center !important;
    background-size: 100% !important;
    /* min-height: 100vh; */
  }

  .question-box-container {
    /* position: relative; */
    /* max-width: 98vw; */
    /* right: calc(100% - 100%) !important; */
    /* right: 10px !important; */
  }

  #counterContainer {
    position: relative;
    max-width: 70vw;
    right: none;
    margin: 0px auto;
    right: 0% !important;
    bottom: 15%;
  }

  #counterContainer ul {
    padding: 0px;
  }
}

@media screen and (max-width: 868px) {
  @keyframes slideIn {
    0% {
      width: 0;
    }

    100% {
      width: 45px;
    }
  }
}

@media screen and (max-width: 765px) {
  @keyframes slideIn {
    0% {
      width: 0;
    }

    100% {
      width: 40px;
    }
  }
}

@media screen and (max-width: 612px) {
  #counterContainer {
    max-width: 85vw;
  }

  .customStyle {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .secondary-question {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  #section {
    margin: 20px;
    border-radius: 20px;
    min-height: 499px;
  }

  .question-box-container {
    margin-top: 100%;
  }

  .question-text {
    color: rgba(0, 0, 0, 0.8);
    font-family: "karbon-medium";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
  }

  .options {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1px;
  }

  .btn-prev {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
  }

  .btn-next {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  #counterContainer .counter-list .counter-items-visited {
    font-size: 0px;
    line-height: 0px;
    color: #fff;
    padding: 15px;
    width: 0px !important;
    height: 0px !important;
  }

  #counterContainer .counter-list .counter-items-visited span::before {
    left: 37px;
  }

  @keyframes slideIn {
    0% {
      width: 0;
    }

    100% {
      width: 15px;
    }
  }

  #counterContainer .counter-list .counter-items-visited::before {
    width: 32px !important;
    height: 32px !important;
    top: -1px;
    left: 0px;
  }

  #counterContainer .counter-list .counter-items-active {
    width: 54px !important;
    height: 54px !important;
  }

  #counterContainer .counter-list .counter-items-active span {
    width: 32px !important;
    height: 32px !important;
    padding: 0px;
    font-size: 24px;
  }

  #counterContainer .counter-list .counter-items-active span::before {
    left: 60px;
  }

  #counterContainer .counter-list .counter-items {
    font-size: 24px;
    width: 32px;
    height: 32px;
    padding: 15px 15px;
  }

  #counterContainer .counter-list li svg {
    width: 32px;
    height: 32px;
  }

  #counterContainer .lastchildActive {
    width: 54px !important;
    height: 54px !important;
  }

  .secondary-question {
    color: rgba(0, 0, 0, 0.8);
    font-family: karbon-medium;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
  }

  .secondary-question-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .question-answer-container-modal {
    display: flex;
    flex-direction: column;
  }

  .question-answer-container-modal > .question-section-modal {
    max-width: 100%;
  }

  /* .question-box-container {
    right: 0px !important;
  } */
}
.toaster {
  position: fixed;
  top: 20px;
  right: 6%;
  width: 400px;
  padding: 20px 20px !important;
  background-color: #f29c07;
  color: #fff;
  border-radius: 5px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}

.toast-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: karbon-medium;
}

.toast-message {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.toast-close {
  cursor: pointer;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  fill: #ffffff;
}

.toast-close:hover path {
  color: #ff5555;
  fill: #ff5555;
  stroke: #ff5555;
}

.question-page {
  /* position: relative; */
}

.bg-img-section {
  width: 50%;
}

.bg-img-section > img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.bg-img-question {
  width: 50%;
  position: relative;
}

.bg-img-question > .wrapper {
  position: absolute;
  top: 15%;
  width: 100%;
  left: -2%;
}

.question-box-container,
.counter {
  position: static;
}

.question-box-container {
  margin: 0 0 40px 0;
}

.question-box-container,
.counter {
  /* width: 90% !important; */
  padding: 0 !important;
}

.counter {
  position: static !important;
  margin: 0 !important;
}

.counter-list {
  padding: 0;
}

.none-of-the-above-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.capsule-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.capsule {
  width: 50px;
  height: 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.slider-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

@media (max-width: 1900px) {
  input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    background-color: #f29c07;
    border: 1px solid #f29c07;
    border-radius: 50%;
    left: 5px;
  }

  .question-text {
    font-size: 22px;
  }

  input[type="radio"] + label {
    font-size: 18px;
    padding: 0;
  }

  .question-box-container > div {
    padding: 20px 30px;
  }

  header {
    padding: 15px;
  }

  .brand {
    width: 307px;
  }
  @media (max-width: 767px) {
    .brand {
      width: 226px;
      margin: 0 auto;
    }
  }

  .secondary-question {
    font-size: 20px;
    /* width: 40%; */
  }

  .options {
    font-size: 18px;
  }

  .btn-group {
    padding: 10px 0 0 0;
    max-width: 100%;
    width: 100%;
  }
  .btn {
    font-size: 20px;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 1024px) {
  .text-nbsp {
    display: none;
  }

  .start-page {
    display: flex;
    flex-direction: column-reverse;
  }
  .question-page-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 20px;
  }
  .question-page-main > .bg-img-section > img {
    border-radius: 10px;
  }
  .bg-img-section {
    width: 100%;
  }
  .bg-img-question {
    width: 100%;
  }
  .bg-img-question > .wrapper {
    position: static;
  }
  .question-text {
    margin: 0;
  }

  .question-box {
    display: flex;
    flex-direction: column;
  }

  .option-container {
    display: flex;
    flex-direction: column;
  }

  .none-of-the-above-container {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 30px;
  }

  .slider-btn-group {
    flex-direction: column;
  }

  .capsule-wrapper {
    margin-bottom: 50px;
  }

  .btn-group {
    padding: 0;
  }

  .counter {
    max-width: 100% !important;
    width: 100% !important;
  }

  .modal-content {
    max-width: 100%;
    width: 100%;
  }

  .question-box-container > div {
    padding: 20px 15px;
  }
}

.mobile-summary-container {
  margin-bottom: 20px;
}

.mobile-summary-question-container {
  padding: 4px 8px;
  background-color: #f29c07;
}

.mobile-summary-question-container > label,
.mobile-summary-question-container > p {
  color: #fff;
  font-family: "karbon-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1px;
}

.mobile-summary-answer-container > p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "karbon-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1px;
  padding: 8px 0;
}

.mobile-summary-answer-container > div {
  background: #f7f7ef;
  padding: 20px 15px;
}

.mobile-summary-answer-container .answer {
  color: rgba(0, 0, 0, 0.8);
  font-family: "karbon-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.5px;
}

.sub-questions-wrapper-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-question {
  color: rgba(0, 0, 0, 0.8);
  font-family: "karbon-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.15px;
}
.header-logo {
  width: 100%;
}

/*@media screen and (min-width: 768px) and (max-width: 1024px) {*/
/*  .left-section-landing-page > .container-one > h2 > p > label,*/
/*  .left-section-landing-page > .container-one > h2 > p > span {*/
/*    font-size: 42px;*/
/*    line-height: 44px;*/
/*  }*/
/*  .left-section-landing-page {*/
/*    width: 55%;*/
/*  }*/
/*  .right-section-landing-page {*/
/*    width: 45%;*/
/*  }*/
/*}*/

.left-section-landing-page > .container-two > div > button {
  border: 0;
  width: 161px;
  height: 72px;
  border-radius: 4px;
  background: var(--Primary-orange, #f29c07);
  color: var(--White, #fff);
  font-family: "karbon-medium";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  overflow: hidden;
}

.left-section-landing-page > .container-two > div > button::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  top: -339%;
  transform: rotate(45deg) translateX(-60%);
  transition: all 1s ease-in-out;
}

.left-section-landing-page > .container-two > div > button::before {
  animation: hoverEffect 4s ease-in-out infinite;
}

@keyframes hoverEffect {
  0% {
    transform: rotate(45deg) translateX(-60%);
  }
  50% {
    transform: rotate(45deg) translateX(300%);
  }
  100% {
    transform: rotate(45deg) translateX(-60%);
  }
}

@media (max-width: 1024px) {
  .bg-img-section {
    width: 100%;
  }
  .bg-img-question {
    width: 100%;
  }
  .bg-img-question > .wrapper {
    position: static;
  }
  .question-page-main {
    display: flex;
    flex-direction: column !important;
    gap: 16px;
    padding: 0 20px 20px;
  }
}

/* CSs for SCroll */

@media (min-width: 1024px) {
  #scroll-down {
    display: none;
  }
}

#scroll-down {
  position: fixed;
  bottom: 46px;
  right: 4px;
  z-index: 999;
}

#scroll-down a {
  text-decoration: none;
}

#scroll-down img {
  width: 40px; /* Adjust the size as needed */
}

/* For Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* CSS for - text bubble is visible on  home page */
  .start-page .land-page-img {
    /* margin-top: 100px; */
  }

  .left-section-landing-page > .container-two > .btn-container {
    margin-top: 40px;
  }

  .left-section-landing-page > .container-one > h6 > p {
    margin-top: 20px;
  }

  .right-section-landing-page {
    margin-top: 20px;
  }

  .container-one {
    margin-top: 20px;
  }
}

/* CSS for toaster */
@media (max-width: 568px) {
  .toaster {
    width: 348px;
  }
}

/* Css for mobile devices Issue 01 */
@media (max-width: 525px) {
  .right-section-landing-page {
    /* margin-bottom: 0; */
    /* height: 500px; */
    height: 470px;
  }

  /* Css for mobile Issue 02 */
  header {
    padding: 28px 15px;
  }

  .header-logo img {
    width: 190px;
  }

  .question-box-container {
    margin: 0px 0 30px 0;
  }

  .left-section-landing-page > .container-one {
    padding: 0 18px;
  }
}


/* Animations */
@media (max-width: 525px) {

  #scroll-down {
    display: none; /* Initially hide the scroll icon container */
}
    .header-logo {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
        transition: top 2s ease-in-out;
        /* z-index: 9999;  */
        
    }

    .move-logo {
        top: 30px;
    }

    .start-page {
        opacity: 0; 
        animation: contentAnimation 1s forwards 2s;
    }

    @keyframes contentAnimation {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    .start-page {
        padding-top: 15px; 
    }
  }


  /* CSS class to reset properties targeted in media query */
.header-logo.reset-media-query {
  position: static; 
  top: auto; 
  left: auto; 
  transform: none; 
  opacity: 1; 
  transition: none; 
  z-index: auto; 
}


/* Hide scroll on desktop */
@media (min-width: 1024px) { 
  #scroll-down {
    display: none !important;
  }
}

@media (max-width: 1024px) {
    .disclaimer{
        position: relative!important;
        bottom: 0!important;
        margin-top: 0px;
    }
}

/* Loader CSS */


footer.footer{
    /*position: absolute;*/
    bottom: 0px;
    height: 100px;
    background: #ddd;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:999;
}
footer.footer ul {
    width:86%;
}
footer.footer ul li{
    list-style: none;
}
footer.footer ul li a{
    color:#000;
}