/* Global styles */
:root {
    --screen-width: 1000px;
}

body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

body > * {
    padding-inline: 7%;
    display: flex;
}

@media only screen and (max-width: 1000px) {
    body > * {
        padding-inline: 4.6%;
        display: flex;
    }
}

input[type=text] {
    display: flex;
    padding: 20px;
    justify-content: center;
    /*width: 45%;*/
    align-self: stretch;
    text-align: left;
    border-radius: 24px;
    background: rgb(255, 255, 255);
}

a,
a:hover,
a:active {
    color: white;
    text-decoration: none;
    border: none;
}

input,
select,
option {
    all: unset;
}

::placeholder {
    all: unset;
    color: #333;
    font-family: Varela Round;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}

/* /////////////////////////// Spiner ///////////// */

.spinnerCode {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


@keyframes animation {
    0% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -105;
    }
    50% {
        stroke-dasharray: 80 10;
        stroke-dashoffset: -160;
    }
    100% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -300;
    }
}

#spinner {
    transform-origin: center;
    animation-name: animation;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier;
    animation-iteration-count: infinite;
}


/* /////////////////////////// Header //////////// */

.header {
  display: flex;
  padding-block: 24px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    180deg,
    #d9d9d9 0%,
    rgba(255, 255, 255, 0.2) 133.98%
  );

  backdrop-filter: blur(11px);
}

.uml_icon {
  width: 245.405px;
  height: 80px;
  flex-shrink: 0;
}

.logo_vector {
    width: 263.299px;
}

.logo {
    display: flex;
    gap: 11.27px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}


/* ///////////////////////////////////////////////////////////// HERO SECTION /////////////////////*/
.hero_section {
  background-image: url(./public/images/hero-image.png);
  background-position: 15%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 80px;
  justify-content: space-between;
  gap: 70px;
}

.hero_section_path {
    background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.5) 100%
    ),
    url(public/images/hero-section.png), lightgray 50% / cover no-repeat;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom 30%;

    padding-block: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero_steps {
    display: flex;
    gap: 24px;
    margin-bottom: 31px;
}

.tcpa-a {
    color: #122458;
    font-family: Montserrat;
    font-size: 10px;
    text-decoration: underline;
}

.hero_text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero_texthero_h1 {
  color: #bf0a2f;
  font-family: Montserrat;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero_reclaim {
  color: #012767;
  font-family: Lora;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.hero_fortune {
  color: #bf0a2f;
  font-family: Lora;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.hero_text_h1 {
    color: #fff;
    font-family: Montserrat;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.hero_text_h1_path {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    margin-bottom: 48px;
}

.hero_h2 {
    color: #fff;
    font-family: Varela Round;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.hero_text_h2 > * {
    color: #fff;
    text-align: center;
    font-family: Roboto Slab;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.green {
    color: #31c675;
}

.sign_up {
  width: 550px;
  height: 400px;
  border-radius: 10px;
  background: #012767;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.extra_money {
    color: #fff;
    font-family: Roboto Slab;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.profile_question_body {
    color: #c95332;
    font-family: Roboto Slab;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /*color: #122458;*/
    text-align: center;
    font-size: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.zip_code{
    width: 200px;
}


.progress_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
  position: relative;
}
.progress_bar * {
  box-sizing: border-box;
}

.percentage {
  color: #fff;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.progress {
  overflow: hidden;

  width: 45%;
  height: 11px;
  border-radius: 32px;
  background: #fff;
  display: flex;
  align-items: flex-start;
}

.red_line {
  background: #bf0a2f;
  height: 100%;
}

/* //////// */
.red_line_25 {
  width: 25%;
}
.red_line_50 {
  width: 50%;
}
.red_line_75 {
  width: 75%;
}
.red_line_100 {
  width: 100%;
}

.back_btn {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  position: absolute;
  left: 6px;
  top: 4px;
  cursor: pointer;
}

.sign_up_h2 {
  align-self: stretch;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.profile_question_h2 {
    color: white;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dob_wrapper {
    display: flex;
    align-self: stretch;
    justify-content: start;
}

.dob {
  width: 281px;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: #fff;
  justify-self: center;
  align-self: center;
  cursor: pointer;
}

.yes_no_btns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.yes_no_btns > * {
  display: flex;
  width: 37.3%;
  padding: 24px 45px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.yes {
  background: #bf0a2f;
}
.no {
  border: 1px solid #fff;
}

.sign_up_5_inputs {
  display: grid;
  gap: 20px;
  align-self: stretch;
  grid-template-columns: 2.8fr 1fr;
}
.sign_up_5_inputs > * {
  color: black;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  display: flex;
  padding: 20px 0px 20px 20px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 8px;
  background: #fff;
}


.hidden {
    display: none;
}

.active {
    display: flex;
}

.sign_up_h1 {
  align-self: stretch;

  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.title {
  display: flex;
  padding: 10px;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 0px 0px 8px 8px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  color: #012767;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.title_select {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    border-radius: 0px 0px 24px 24px;
    background: #fff;
    color: #012767;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
}

.sign_up_select {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 0px 0px 8px 8px;
    background: #fff;
    background: rgba(191, 230, 251, 1);
}

.select_container {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  justify-content: center;
}

.v_symbol {
  position: absolute;
  top: 12px;
  left: calc(50% + 35px);
}




#title_select {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    border-radius: 0px 0px 24px 24px;
    background: #fff;
    color: #012767;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
}

.option {
  align-self: stretch;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 0px 0px 8px 8px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

select option[value="default"] {
  display: none; /* Hide the default "Title" option */
  gap: 8px;
}

.sign_up_inputs {
  /* align-items: center; */
  align-self: stretch;

  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.input {
    display: flex;
    padding: 20px;
    justify-content: center;
    width: 45%;
    align-self: stretch;
    text-align: left;
    border-radius: 0px 24px 24px 24px;
    background: rgba(255, 255, 255, 0.62);
}

.name_input {
  display: flex;
  padding: 20px;
  justify-content: center;
  width: 45%;
  align-self: stretch;
  text-align: left;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.date_input {
    background-color: rgba(106, 106, 106, 0.5);
    display: flex;
    width: 520px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    align-self: center;
    align-content: center;
    border: none;
    border-bottom: 1px solid #122458;
}

.sign_up_btn {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  padding: 24px 45px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background: #bf0a2f;
  cursor: pointer;
}

.sign_up_btn:hover{
    background-color: #B96C7C;
}

.text_btn {
    color: #fff;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    padding: 24px 45px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: #c95332;
    cursor: pointer;
}

.text_btn:hover{
    background-color: coral;
}

.tcpa_box{
    width: 94%;
    align-content: center;
    align-self: center;
    background-color: #e0e0df;
    font-family: Montserrat;
    font-size: 10px;
    color: #122458;
    border-style: solid;
    border-radius: 3px;
    border-color: black;
    border-width: 2px;
    padding: 10px 10px;
}

.hero_section_h1 {
    color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}
.hero_section_h2 {
    color: #ffffff;
    font-family: Roboto Slab;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.survey {
    color: #31c675;
}
.answer_questions {
    font-weight: 700;
    text-transform: uppercase;
}

.section_1 {
    padding-block: 10px 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    gap: 40px;
}
.home_owner {
    color: #330080;
    text-align: center;
    font-family: Varela Round;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 15px;
    padding-bottom: 15px;
}

#question_1{
    display: block;
}

#question_2{
    display: none;
}

#question_3{
    display: none;
}

.tcpa_profile_question{
    font-size: 8px;
    gap: 0;
    color: #FFFFFF;
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    padding-top: 0px;
    padding-bottom: 0px;
}

/* ////////////////////////////////////////////////////////  SECTION 2  ////////////////////////////////*/

.section_2 {
  padding-block: 70px;
  justify-content: space-between;
}

.big_flag {
  width: 35vw;
  height: 43vw;
  border-radius: 32px;
  background: url(./public/images/image-2-flag.png);
  backdrop-filter: blur(40px);
  background-size: cover;
  background-repeat: no-repeat;
}
.small_flag {
  display: none;
}

.section_2_path {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-block: 70px 812px;
}


.section_2_img {
    width: 35vw;
    height: 43vw;
    background: url(public/images/section-2-book.png);

    background-size: cover;
    background-repeat: no-repeat;
}

.section_2_text {
    display: flex;
    width: 45vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.section_2_h1 {
  color: #bf0a2f;
  font-family: Montserrat;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.section_2_paragraph {
  color: #012767;
  font-family: Lora;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

/* /////////////////////////////////////////////////////////  SECTION 3  /////////////////////////////////////*/

.section_3 {
  padding-block: 70px;
  flex-direction: column;
  gap: 45px;
  background: #012767;
  align-items: center;
}

.section_3_h1 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.section_3_steps {
  align-self: stretch;
  display: flex;
  justify-content: space-evenly;
}


.section_3_step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section_3_line {
  margin: 0;
  margin-top: 7%;
  position: relative;
  width: 84.095px;
  height: 1px;
  background: #fff;
}
.section_3_step_circle {
  display: flex;
  width: 56px;
  height: 56px;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #bf0a2f;
}
.section_3_step_circle_num {
  color: #fff;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.section_3_step_circle_step {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section_3_step_count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.section_3_step_count_num {
    color: #008000;
    font-family: Montserrat;
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.section_3_step_count_text {
    color: #008000;
    font-family: Montserrat;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.section_3_step_text {
  display: flex;
  text-align: center;
  color: #fff;
  font-family: Lora;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 270px;
}
.btn_wrapper {
    width: 44%;
}
/* /////////////////////////////////////////////////////////  SECTION 4  /////////////////////////////////////*/

.section_4 {
  padding-block: 75px;
  align-items: center;
  justify-content: space-between;
}
.book_img {
  width: 35vw;
  height: 36vw;
  flex-shrink: 0;
  border-radius: 32px;
  background: url(./public/images/image-4-book.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.section_4_text {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 67.5px */
}

.section_4_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: start;
}
.section_4_list_opt {
    display: flex;
    gap: 15px;
}
.check {
    height: 40px;
    width: 40px;
}
.section_4_list_text {
    color: #122458;
    font-family: Roboto Slab;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 37.5px */
}


/* Steps */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 0;
    align-items: center;
    margin-bottom: 5px;
}

.step {
    border-radius: 0px 24px 24px 24px;
    border: 1px solid #fff;
    background: #012767;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.step_text {
    color: #fff;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#sign_up_step1{
    display: flex;
}

#sign_up_step2{
    display: none;
}

#sign_up_step3{
    display: none;
}

#sign_up_step4{
    display: none;
}

#sign_up_step5{
    display: none;
}

#sign_up_step6{
    display: none;
}

.step_3 {
    color: #bf0a2f;
    border: 1px solid #008000;
    background: #fff;
}

.step_3_text {
    color: #c95332;
}

/* Legal Pages */

.legalblock {
    padding-block: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    gap: 40px;
}

.legalbuttonblock{
    padding: 0px 0px;
    gap: 40px;
}

.infoButton{
    min-height: 50px;
    min-width: 200px;
    padding-right: 25px;
    font-weight: bolder;
    text-align: center;
    align-content: center;
    align-items: center;
}

#dontsellmyinfo{
    display: none;
}

.dsmiselect {
    border-color: black;
    border-width: 2px;
    background-color: white;
    color: black;
    border-style: solid;
    width: 225px;
    height: 30px;
    appearance: auto;
    color: #122458;
    font-style: normal;
    font-weight: 500;
    font-family: Roboto;
}

.dsmiform {
    text-align: left;
    padding-bottom: 30px;
    padding-top: 20px;
    column-gap: 10px;
}

.dsmiform td{
    padding: 0px 10px;
}

/* Footer styles */

.footer {
  padding-block: 60px 24px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #e0e0df;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.footer_links {
  color: #6a6a6a;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  gap: 20px;
}

.footer_line {
  background: #bf0a2f;
  height: 1px;
  width: 100%;
  border: none;
}

.footer_rights_reserved {
  color: #012767;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 40px;
}

.footer-a {
    color: #6a6a6a;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    gap: 15px;
    text-decoration: underline;
}

.footer-a:hover {
    color: #ffffff;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    gap: 15px;
    text-decoration: none;
}

/*/////////////////////////////////////////////// Thank You Page /////////////////////////////////*/

.thank_you-h1, .thank_you-h2 {
    font-family: 'Roboto', serif;
}

.thank_you-a{
    color: #c95332;
    text-decoration: underline;
}

.thank_you-a:hover{
    color: #c95332;
    text-decoration: none;
}

.content{
    background:#e6e2c8;
    width: 800px;
    max-width: 800px;
    margin: 2em auto;
    padding: 1.250em;
    border-radius: 0.313em;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.5);
    line-height: 1.5em;
    color: #122458;
}


.ribbon{
    position:relative;
    padding: 3px 3px;
    font-size: 16px;
    margin: 0 0 24px -0.625em;
    line-height: 1.875em;
    color: #FFFFFF;
    border-radius: 0 0.156em 0.156em 0;
    background: #bf0a2f;
    box-shadow: -1px 2px 3px rgba(0,0,0,0.5);
    height: 65px;
    font-family: 'Roboto', serif;
}

.ribbon:before, .ribbon:after{
    position:absolute;
    content: '';
    display: block;
}

.ribbon:before{
    width: 0.469em;
    height: 100%;
    padding: 0 0 0.438em;
    top:0;
    left: -0.469em;
    background:inherit;
    border-radius: 0.313em 0 0 0.313em;
}

.ribbon:after{
    width: 0.313em;
    height: 0.313em;
    background: rgba(0,0,0,0.35);
    bottom: -0.313em;
    left: -0.313em;
    border-radius: 0.313em 0 0 0.313em;
    box-shadow: inset -1px 2px 2px rgba(0,0,0,0.3);
}

.button-box {
    --c:  #122458; /* the color*/

    box-shadow: 0 0 0 .1em inset var(--c);
    --_g: linear-gradient(var(--c) 0 0) no-repeat;
    background:
            var(--_g) calc(var(--_p,0%) - 100%) 0%,
            var(--_g) calc(200% - var(--_p,0%)) 0%,
            var(--_g) calc(var(--_p,0%) - 100%) 100%,
            var(--_g) calc(200% - var(--_p,0%)) 100%;
    background-size: 50.5% calc(var(--_p,0%)/2 + .5%);
    outline-offset: .1em;
    transition: background-size .4s, background-position 0s .4s;
    font-family: system-ui, sans-serif;
    font-size: 3.5rem;
    cursor: pointer;
    padding: .1em .6em;
    font-weight: bold;
    border: none;
    width: 400px;
    height: 400px;
}

.button-box:hover {
    --_p: 100%;
    transition: background-position .4s, background-size 0s;
    color:  #fff;
}

.button-box:active {
    box-shadow: 0 0 9e9q inset #0009;
    background-color: var(--c);
    color: #fff;
}

.thank_you {
    color: #122458;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding-block: 20px 0px;
}

/* Media Queries for Responsive Design */

.small {
    display: none;
}

/* Footer Forms */

.thank-you-box {
    background-color: green;
    color: white;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

/* //////////////////////////////////////////////// Progress Bar //////////////////////////////////// */

.chart {
    background: #6a6a6a;
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 40px;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.chart span {
    /* You can modify the value below to change the distance between the percentage number and the bar */
    margin-left: 5px;
    color: #FFFFFF;
    font-weight: bolder;
}

.bar {
    /* You can modify the total time used for the animation here */
    animation: load 3s normal forwards;
    /*
    Add a little spice by having a shadow below the bar.
    Feel free to comment out this line below to have an even LITE version :D
    */
    box-shadow: 0 10px 40px -10px #fff;

    border-radius: 100px;
    background: #bf0a2f;
    height: 30px;
    width: 0;
}

.additional-resources {

}

.bold {
    font-weight: 600;
}

/* ///// Mobile Version //// */

@media only screen and (max-width: 1000px) {

  .header {
    padding-block: 16px;
  }

    .additional-resources {
        justify-content: center;
    }

    /* Status Bar */

    .chart {
        height: 40px;
        width: 100%;
    }

    /* Thank You Page */

    .ribbon{
        padding: 3px 3px;
        font-size: 10px;
        margin: 0 0 0 -0.625em;
        line-height: 1.5em;
    }

    .content{
        background:#e6e2c8;
        width: 80%;
        margin: 2em auto;
        padding: 1.250em;
        line-height: 1.5em;
    }

    .button-box {
        font-size: 16px;
        padding: .1em .6em;
        font-weight: bold;
        border: none;
        width: 300px;
        height: 150px;
        box-shadow: 0 0 0 .3em inset var(--c);
    }

    /* Thank You Page End */

    .sg_icon {
        height: 52px;
        width: 43.777px;
    }

    .logo_vector {
        width: 171.145px;
        flex-shrink: 0;
    }


    .big {
        display: none !important;
    }
    .small {
        display: flex;
    }

  .uml_icon {
    width: 160px;
    height: 52.159px;
  }

 .header_links {
    font-size: 12px;
    text-align: end;
  }

    .header_links,
    .hero_section,
    .hero_section_path,
    .sign_up_inputs,
    .section_2,
    .section_3_steps,
    .section_4,
    .footer_links {
        flex-direction: column;
        align-items: center;
    }

    .hero_section {
        gap: 4.65vw;
    }

    .hero_section > * {
        margin: 0;
    }

    .hero_section {
        padding-block: 0px 20px;
        gap: 24px;
    }

    .hero_steps {
        max-width: 90vw !important;
        gap: calc(12px + ((100vw - 430px) * 12 / 570));
    }

    .steps{
        display: none;
    }

    .step {
        font-size: 18px;
        padding: 8px 12px;
    }

    .hero_text_h1 {
        font-size: 32px;
    }
    .hero_h2 {
        font-size: 20px;
    }
    .section_2 {
        padding-block: 60px 168px;
    }


    .hero_text_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 8px;
    }
    /* ////////////////////// sign ups */
    .progress_bar {
        gap: 20px;
    }

  .back_btn {
    left: 0;
    top: 0;
    font-size: 16px;
  }

  .progress {
    width: 20.5%;
  }

    .circle {
        height: 20px;
        width: 20px;
    }
    .ellipse {
        height: 20px;
        width: 44.375px;
    }
    .bold {
        font-size: 32px;
    }

    #title_select {
        width: 100%;
        text-align: center;
    }
    .back_btn {
        left: 0;
        top: 0;
        font-size: 16px;
    }
  .sign_up_h2 {
    font-size: 20px;
    align-self: center;
  }
  .dob {
    width: 72%;
    font-size: 14px;
  }
  .sign_up_5_inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 24px;
    margin-top: 10px;
  }
  .sign_up_5_inputs > * {
    text-align: center;
  }
    .sign_up {
        width: 90%;
        height: 500px;
    }
    .sign_up_h1 {
        font-size: 32px;
    }

    .input {
        width: unset;
    }

    .hero_text {
        gap: 8px;
    }
    .hero_text_h1 {
        font-size: 36px;
    }
    .hero_h2 {
        font-size: 20px;
        align-self: flex-start;
    }

    #title_select {
        align-self: stretch;
    }
    .name_input {
        width: unset;
    }

    .hero_text {
        gap: 8px;
    }
    .hero_text_h1 {
        font-size: 32px;
    }
  .hero_texthero_h1 {
    font-size: 32px;
    margin-top: 10px;
  }
  .hero_reclaim {
    font-size: 20px;
    margin-top: 10px;
  }
  .hero_fortune {
    font-size: 20px;
    align-self: flex-start;
  }
    .hero_text_h2 > * {
        font-size: 20px;
    }

    .date_input {
        background-color: rgb(255,255,255);
        display: flex;
        width: 291px;
        padding: 20px;
        justify-content: center;
        align-items: center;
        align-self: center;
        align-content: center;
        border: none;
        border-bottom: 1px solid #122458;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        color: black;
    }

    .address, .zip_code {
        display: flex;
        width: 291px;
        padding: 20px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        border: none;
        border-bottom: 1px solid #122458;
    }
  /* ///////////////// SECTION 2 //////////////// */
  .section_2_h1 {
    font-size: 32px;
  }
  .section_2_paragraph {
    font-size: 16px;
  }
  .big_flag {
    display: none;
  }
  .section_2 * {
    width: unset;
  }
  .small_flag {
    display: flex;
    align-self: center;
    flex-shrink: 0;
    width: 90vw;
    height: 125vw;
    border-radius: 32px;
    background: url(./public/images/image-2-flag.png);
    backdrop-filter: blur(11px);

    background-size: cover;
    background-repeat: no-repeat;
  }
  /* ///////////////////////////////////////////// SECTION 3 //////////////////  */

  .section_3_steps {
    align-items: center;
    gap: 8px;
  }
  .section_3_line {
    margin: 0;
    height: 40px;
    width: 1px;
  }

  .section_3_h1 {
    font-size: 25px;
  }
  .btn_wrapper {
    align-self: stretch;
    width: unset;
  }
  /* /////////////////////////////////////// SECTION 4 //////////// */

  .section_4 * {
    width: unset;
    gap: 20px;
  }
  .book_img {
    width: 90vw;
    height: 93.3vw;
  }

  /* /////////////////// FOOTER /////////// */
  .footer_links {
    font-size: 12px;
    text-align: end;
    gap: 4px;
  }
  .footer {
    gap: 20px;
    padding-block: 20px;
  }

    @media only screen and (max-width: 400px) {
        .step {
            font-size: 16px;
            padding: 6px 12px;
        }
    }
}
