* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --main-color: #37465a;
  --main-color-alt: #fff;
}

a {
  text-decoration: none;
}

.container {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medune  */
@media (min-width: 992px) {
  .container {
    width: 768px;
  }
}

.mainHeader {
  background-color: #065884;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #6d6c6c;
  padding: 12px 5px;
  overflow: hidden;
}

.mainHeader .mainHeader-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  animation: translateXD 20s linear 0s infinite normal none running;
}
@media (max-width: 480px) {
  .mainHeader .mainHeader-inner {
    font-size: 13px;
    animation: translateXm 20s linear 0s infinite normal none running;
  }
}
@keyframes translateXD {
  0% {
    transform: translateX(90%);
  }

  100% {
    transform: translateX(-90%);
  }
}
@keyframes translateXm {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.second-header {
  background-color: #cd123c;
}

@media (max-width: 480px) {
  .second-header {
    margin-top: 0px;
  }
}

.second-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.second-header .Benefits {
  width: 100%;
  padding: 15px 0 21px;
  font-weight: 800;
  font-size: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: left;
  color: #fff;
}

@media (max-width: 480px) {
  .second-header .Benefits {
    text-align: center;
    padding: 15px 0 15px;
  }
}

/* ============hero============  */
.hero {
  background-color: #ffffff;
}

@media (max-width: 480px) {
  .hero {
    padding-top: 8px;
  }
}

.main_content {
  width: 100%;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 8px;
  gap: 40px;
}

@media (max-width: 992px) {
  .main_content {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .main_content {
    padding-top: 0px;
    padding-bottom: 10px;
  }
}
.text_content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .text_content {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .text_content {
    width: 100%;
  }
}

.text_content-content {
  width: 100%;
  padding-bottom: 10px;
}

.text_content-content h3 {
  font-size: 27px;
  color: #000;
  margin: 0 auto;
  font-family: sans-serif;
  font-weight: 800;
}
.text_content-content h3 span {
  background-color: #ffc300;
}

@media (max-width: 480px) {
  .text_content-content h3 {
    font-size: 24px;
    width: 100%;
  }
}

.inner_img {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 0px 0 0; */
  /* animation: scaleBtn 1s linear infinite; */
}

@keyframes scaleBtn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .inner_img {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .inner_img {
    width: 85%;
  }
}

.inner_img img {
  width: 100%;
}

.text-content-bt {
  color: #1f2937;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: left;
  width: 70%;
  font-family: system-ui;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 480px) {
  .text-content-bt {
    font-size: 16px;
    line-height: unset;
    width: 100%;
  }
}

.bottom-text {
  padding: 14px 0;
}

.bottom-text p {
  color: #1f2937;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 480px) {
  .bottom-text p {
    font-size: 16px;
    line-height: 1.5rem;
    text-align: center;
    padding: 0 10px;
  }
}

/*============form============  */
.form_section {
  padding-top: 40px;
}

@media (max-width: 480px) {
  .form_section {
    padding-top: 10px;
  }
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps_container {
  width: 768px;
  /* height: 396px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
  font-weight: bold;
  overflow-x: clip;
}

@media (max-width: 768px) {
  .steps_container {
    width: 100%;
  }
}
.shows {
  display: flex;
}
.hidden {
  display: none;
}

.page {
  width: 100%;
}
.stepConatiner {
  text-align: center;
  width: 100%;
}
.step_question {
  margin: 0 auto;
}

#step2 {
  margin-top: 20px;
}

.step_tq {
  font-size: 36px;
  padding: 0 16px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #1f2937;
}

@media (max-width: 480px) {
  .step_tq {
    font-size: 33px;
    padding: 0 7px;
  }
}
@media (max-width: 350px) {
  .step_tq {
    font-size: 22px;
  }
}

.step_answers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 22px;
  gap: 16px;
}
@media (max-width: 768px) {
  .step_answers {
    width: 90%;
    margin: 0 auto;
  }
}

.step_answers button {
  border: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.025em;
  line-height: 2.25rem;
  padding: 20px;
  text-transform: uppercase;
  width: 80%;
  background-color: #22c55e;
  transition: 0.2s;
  animation: scaleBtnAnswers 1s linear infinite;
}

@keyframes scaleBtnAnswers {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.step_answers button:hover {
  box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.22),
    0 233px 233px 0 rgba(255, 255, 255, 0.12) inset;
}

@media (max-width: 480px) {
  .step_answers button {
    padding: 12px 0px;
    font-size: 1.3rem;
  }
}

/* //loading  */
.load {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  padding: 40px 34px;
  background-color: #e9f2ff;
  border-top: 2px solid #3b82f6;
}
@media (max-width: 768px) {
  .load {
    width: 97%;
  }
}
@media (max-width: 480px) {
  .load {
    padding: 35px 10px;
  }
}
@media (max-width: 360px) {
  .load {
    font-size: 19px;
    padding: 30px 4px;
  }
}

/* /// qualify  */
.qualify {
  margin-top: 10px;
  text-align: center;
  height: 100%;
  padding: 40px 34px;
  background-color: #e9f2ff;
  border-top: 2px solid #3b82f6;
}
@media (max-width: 768px) {
  .qualify {
    width: 92%;
    padding: 20px;
  }
}

.qualify_Headline {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #22c55e;
}

.header-description {
  background-color: #fef08a;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 0.5rem;
  padding: 10px 2px;
}

@media (max-width: 768px) {
  .header-description {
    font-size: 1.25rem;
  }
}
.header-description b {
  font-weight: 800;
}

.spots {
  background-color: #fde047;
  border-radius: 0.5rem;
  font-weight: 700;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  width: fit-content;
}

.tap-call {
  font-weight: 700;
  line-height: 1.75rem;
  margin-top: 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .tap-call {
    font-size: 1.1rem;
  }
}

.call_btn {
  display: block;
  width: 100%;
  padding: 1.25rem;
  margin: 16px 0;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #22c55e;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: glow 1.5s infinite alternate;
}
.call_btn:hover {
  background-color: #3bec7c;
  transform: scale(1.02);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #34c759, 0 0 10px #34c759;
  }

  50% {
    box-shadow: 0 0 10px #34c759, 0 0 20px #34c759;
  }
  100% {
    box-shadow: 0 0 5px #34c759, 0 0 10px #34c759;
  }
}

@media (max-width: 768px) {
  .call_btn {
    padding: 16px 0px;
    width: 89%;
    font-size: 23px;
    margin: 0 auto;
    margin-top: 10px;
  }
}

.title-down {
  font-weight: 700;
  line-height: 2rem;
  font-size: 1.35rem;
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .title-down {
    font-size: 18px;
  }
}

.footer-description {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 1rem 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-description {
    font-size: 14px;
  }
}

/* // timer  */
.timer {
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  border: 2px dashed red;
  color: red;
  width: fit-content;
  padding: 4px 20px;
  margin: 0 auto;
  margin-top: 25px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .timer {
    font-size: 14px;
  }
}

/* // animation  */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn 0.3s forwards;
}

.fade-out {
  animation: fadeOut 0.3s forwards;
}

.fade-in-Sequence {
  animation: fadeIn 0.5s forwards;
}

.fade-out-Sequence {
  animation: fadeOut 0.5s forwards;
}

.report {
  padding-top: 20px;
  padding-right: 2px;
}
.reportContainer {
  width: 707px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
}

@media (max-width: 768px) {
  .reportContainer {
    width: 97%;
  }
}

.hearder_para p {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  line-height: 32px;
}

.text_para {
  padding-top: 23px;
}

.text_para p {
  margin-bottom: 12px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  line-height: 22px;
}
footer {
  margin-top: 20rem;
  padding: 20px;
}

footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  font-family: Arial, "Helvetica Neue", Helvetica, Arimo, sans-serif;
  color: #3b82f6;
}
footer .container a {
  line-height: 25px;
  font-size: 15px;
  color: #3b82f6;
}
footer .container p {
  line-height: 26px;
}
footer .container p span {
  color: var(--main-color);
  font-weight: 700;
}

.copyright-text {
  font-size: 12px;
}
/* //privacy page  */
.privacy {
  height: 75px;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .privacy {
    padding: 35px 0;
  }
}
.privacy .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.privacy .container h2 {
  line-height: 36px;
  font-size: 30px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 480px) {
  .privacy .container h2 {
    font-size: 33px;
  }
}

.privacy_container {
  width: 950px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .privacy_container {
    width: 97%;
    padding: 0 5px;
  }
}

.privacy_container p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgb(0, 0, 0);
  letter-spacing: 0em;
  margin-top: 0;
  margin-bottom: 12px;
}

.imges-container-footer img {
  width: 100%;
}
.top-top-header {
  display: block;
  padding-bottom: 10px;
}
