@import url("https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Russo+One&display=swap");

*,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

img {
  max-width: 100%;
}

.container_part {
  max-width: 1140px;
  margin: 0 auto;
}

/*-------------header-------------*/

/*-------------font-form-------------*/
.font_form {
  border: #000;
  background: #000;
  padding: 40px;
  border-radius: 5px;
}

.font_form_inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.font_form .form_group {
  flex: 1;
}

.font_form .form_group.mail_group {
  flex: 2;
}

.font_form .form_group label {
  color: #fff;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
}

.font_form .form_group input,
.font_form .form_group select {
  border-radius: 4px;
  height: 45px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  display: block;
  width: 100%;
  border: 2px solid #b6c8d1;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.font_form .form_group input:focus,
.font_form .form_group select:focus {
  border: 2px solid #408af4 !important;
  box-shadow: none;
  outline: none;
}

.font_form .form_group .btn {
  background: #5a57a7;
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  font-weight: 400;
  border: 0;
  padding: 12px;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 4px;
  user-select: none;
  height: 45px;
  cursor: pointer;
}

.font_form .form_group .btn:hover {
  background: #329ca2;
}

.font_form .form_group.submit_btn .btn {
  position: relative;
  top: 10px;
}

.font_form .error_msg {
  font-size: 12px;
  font-weight: 400;
  color: #fbb6c6;
  line-height: 1.2;
  display: none;
}

.font_form .form_group .btn i {
  margin-right: 5px;
}
/*-------------font-form-------------*/

/*-------------main-form-------------*/

.main_form_area {
  background: #fff;
}

.main_form_area .form_container {
  background: #fff;
  display: flex;
  padding: 70px 20px 100px 70px;
  height: 100%;
}
/* Timeline */
.main_form_area .steps {
  padding-right: 20px;
  position: relative;
}

.main_form_area .step_item {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.main_form_area .step_circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #d2d2d2;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
  font-size: 22px;
  line-height: 45px;
}

.main_form_area .step_item.active .step_circle {
  background: #408af4;
}

.main_form_area .step_item.completed .step_circle {
  background: #22c55e;
  font-size: 18px;
}

/* Form content */
.main_form_area .form_content {
  flex: 1;
  margin: 30px 55px 30px 72px;
}

.main_form_area .step {
  display: none;
}

.main_form_area .step.active {
  display: block;
}

.main_form_area .step_head {
  margin-bottom: 25px;
}

.main_form_area .step_head h2 {
  color: #408af4;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 2px;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
}

.main_form_area .step_head p {
  color: #3e3e3e;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.main_form_area .form_group label {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
  color: #505050;
  font-family: "Open Sans", sans-serif;
  line-height: 1.4;
}

.main_form_area .form_group label span {
  font-weight: 300;
  color: #727272;
  opacity: 0.5;
  font-size: 0.8em;
}

.main_form_area .form_group input,
.main_form_area .form_group select {
  border: 1px solid #b6c8d1;
  font-size: 14px;
  box-shadow: none;
  height: 44px;
  padding: 6px;
  padding-left: 20px;
  color: #505050;
  margin-bottom: 0px;
  border-radius: 4px;
  line-height: 1.42857143;
  display: block;
  width: 100%;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  background-color: #fff;
}

.main_form_area .form_group input:focus,
.main_form_area .form_group select:focus {
  border: 1px solid #408af4 !important;
  box-shadow: none;
  outline: none;
}

.score_text p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #3e3e3e;
  font-weight: 400;
}

.score_text p a {
  color: #329ca2;
  font-weight: bold;
}

.main_form_area .btn_area {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score_btn .btn_credit {
  display: flex;
  align-items: center;
  padding: 0 25px;
  height: 42px;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  background: #329ca2;
  color: #fff;
  border: 0;
  border-radius: 4px;
  min-width: 148px;
  text-align: center;
  transition: all 0.3s;
}

.score_btn .btn_credit:hover {
  background: #1e40af;
}

.score-area {
  padding: 18px 30px;
  background: #ececec;
  border-radius: 4px;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}

.main_form_area .btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 18px 32px;
  background: #408af4;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.main_form_area .btn:hover {
  background: #373582;
}

.main_form_area .form_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 25px;
}

.main_form_area .form_row .form_group {
  width: 100%;
  flex: 1;
  position: relative;
}

.input_radio .option label {
  padding: 0;
  margin: 0;
  height: 50px;
  line-height: 50px;
  background: #f5f5f5;
  color: #3e3e3e;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  touch-action: manipulation;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.input_radio .option input[type="radio"] {
  display: none;
}

.input_radio .option label:hover,
.input_radio .option label:focus,
.input_radio .option label:focus-within {
  background-color: #5a57a7;
  color: #fff;
  border: 1px solid #d2d2d2;
}

.input_radio .option input[type="radio"]:checked + label {
  background-color: #329ca2;
  color: #fff;
  border-color: #329ca2;
}

.step_inner_area {
  background: #f5fbff;
  padding: 35px 50px 25px;
  border: 1px solid #def3ff;
}

.input_radio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.form_row.gird_two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.inner_head h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #329ca2;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.justify_end {
  justify-content: end !important;
}

.main_form_area .btn.back_btn {
  color: #408af4;
  font-weight: 400;
  border: 0;
  font-size: 15px;
  padding: 12px;
  background: transparent;
}

.main_form_area .btn.back_btn:hover {
  color: #5a57a7;
  background: transparent;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.input_radio.grid_two_radio {
  grid-template-columns: repeat(2, 1fr);
}

.form_row.max_width_radio {
  max-width: 350px;
}

.form_group.zip_code_area {
  position: relative;
}

#populator-placement {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 12px;
  color: #373582;
  font-weight: bold;
  cursor: default;
}

.lock {
  position: absolute;
  right: 15px;
  bottom: 13px;
}

.lock i {
  font-size: 11px;
  color: #727272;
}

.secure_info p {
  color: #9b9b9b;
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
  letter-spacing: 0.3px;
  font-weight: 400;
  word-spacing: 0.5px;
}

.secure_info {
  padding-bottom: 8px;
}

.score_text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #329ca2;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 15px;
}

.score-area.score_bottom {
  padding: 35px 0;
  background: transparent;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
  margin-top: 15px;
}

.bottom_score_area {
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bottom_score_area a.btn_credit {
  min-width: 270px;
  background: #1e40af;
}

.bottom_score_area a.btn_credit:hover {
  background: #329ca2;
}

.bottom_score_area .score_text p a {
  color: #1e40af;
}

.bottom_score_area .score_text p a:hover {
  color: #329ca2;
}

.question_circle i {
  color: #329ca2;
  font-size: 12px;
}

.question_circle {
  position: absolute;
  top: 0;
  right: 1px;
  cursor: pointer;
}

.cut_of_img {
  max-width: 225px;
  display: none;
  opacity: 0;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cut_of_img.show {
  display: block;
  opacity: 1;
}

.check_box_group p {
  margin: 0;
  color: #505050;
  font-weight: 400;
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.4em;
}

.check_box_group p a {
  color: #329ca2;
}

.check_box_group {
  display: flex;
  align-items: start;
  gap: 18px;
  border: 1px solid #408af4;
  padding: 15px 10px 15px 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  width: 100%;
}

.check_box_group input[type="checkbox"] {
  position: relative;
  top: 2px;
  width: 15px;
  height: 15px;
}

.final_btn .btn {
  font-size: 32px;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
  background: #408af4;
  color: #fff;
  margin-bottom: 20px;
}

.final_btn .btn:hover {
  background: #373582;
  box-shadow: 0 4px 10px #1d1d21;
}

.final_btn span {
  font-size: 11px;
  line-height: 1.3em;
  font-family: "Open Sans", sans-serif;
  color: #3e3e3e;
  font-weight: 400;
  text-align: center;
  display: block;
}

.step_circle i {
  display: none;
}
/*-------------main-form-------------*/

/*-------------left-right-------------*/

.left_part {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20%;
  height: 100%;
  z-index: 100;
  background: #5754a4;
  background: -webkit-linear-gradient(left, #373582, #5754a4);
  background: -o-linear-gradient(right, #373582, #5754a4);
  background: -moz-linear-gradient(right, #373582, #5754a4);
  background: linear-gradient(to right, #373582, #5754a4);
  padding: 40px 3% 0;
}

.zippy_loan_logo {
  max-width: 240px;
  margin-bottom: 25px;
}

.zippy_loan_list_text h3 {
  font-size: 18px;
  line-height: 1.1em;
  font-weight: bold;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}

.zippy_loan_list_text ul li i {
  color: #fff;
  font-size: 25px;
  width: 40px;
  text-align: center;
  margin-right: 15px;
}

.zippy_loan_list_text ul li {
  font-size: 13px;
  line-height: 1.25em;
  color: #cac9e4;
  margin-bottom: 9px;
  font-family: "Open Sans", sans-serif;
}

.zippy_loan_list_text {
  padding-bottom: 15px;
}

.zippy_images {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
}

.zippy_images {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
  margin-bottom: 25px;
}

.zippy_img_first {
  max-width: 60px;
}

.zippy_img_second {
  max-width: 130px;
}

.zippy_text h3 {
  font-size: 18px;
  line-height: 1.1em;
  font-weight: bold;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}

.zippy_text p {
  font-size: 13px;
  line-height: 1.4;
  color: #cac9e4;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.zippy_text {
  margin-bottom: 22px;
}

.right_part {
  padding: 100px 25px 0;
}

.question_icon i {
  font-size: 50px;
  color: #5a57a7;
  margin-top: 10px;
  margin-bottom: 20px;
  display: inline-block !important;
}

.question_text h4 {
  color: #3e3e3e;
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 10px;
  padding: 0;
  text-align: left;
  line-height: 1.2em;
  font-family: "Montserrat", sans-serif;
}

.question_text p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #3e3e3e;
}

.question_text.question_text_first {
  margin-bottom: 40px;
  position: relative;
}

.question_text.question_text_first:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 90%;
  background: #eee;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

.right_part_parent {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20%;
  height: 100%;
  background: #f2f2f2;
  z-index: 100;
  background: #fff;
  border-left: 1px solid #f2f2f2;
  transition: all, 0.5s, ease;
}

.main_form_inner {
  position: absolute;
  left: 20%;
  width: 60%;
  background: #fff;
  transition: all, 0.5s, ease;
}

.form_footer {
  background: #fff;
  border-top: 1px solid #e3e3e3;
  padding: 25px 70px;
  margin-top: 0px;
  font-weight: 400;
  position: relative;
}

.form_footer h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: #3e3e3e;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}

.form_footer p {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  line-height: 18px;
  color: #3e3e3e;
  font-weight: 400;
  margin-bottom: 20px;
}

.form_ask_cross {
  position: fixed;
  right: 20%;
  top: 0;
  z-index: 101;
  text-align: center;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  background: #373582;
  color: #fff;
  cursor: pointer;
  transition: all, 0.5s, ease;
}

.form_ask_cross .fa-question {
  display: none;
}

.right_part_parent.show_side .right_part {
  display: none;
}

.right_part_parent.show_side .form_ask_cross .fa-question {
  display: inline-block;
}

.right_part_parent.show_side .form_ask_cross .fa-xmark {
  display: none;
}

.right_part_parent.show_side {
  width: 0;
}

.right_part_parent.show_side .form_ask_cross {
  background: #727272;
  right: 0;
}

.main_form_inner.show_form {
  width: 80%;
}

.mobile_header {
  display: none;
}

.left_part.mobile_left {
  position: initial !important;
  width: 100%;
  height: 100%;
  padding: 15px 20px 40px;
  text-align: center;
  left: inherit;
  right: inherit;
  top: inherit;
  bottom: inherit;
  display: none;
}

.error_msg {
  width: 100%;
  font-size: 12px;
  list-style-type: none;
  transition: all, 0.5s, ease-in;
  border: 1px solid #d37171;
  border-top: none;
  border-radius: 0px 0px 4px 4px;
  line-height: 1em;
  padding: 6px;
  background: #d37171;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  display: none;
}

/*-------------left-right-------------*/

/*-------------responsive-------------*/
@media all and (max-width: 1600px) {
  .left_part {
    width: 25%;
  }

  .right_part_parent {
    left: 0;
    width: 25%;
    background: linear-gradient(to right, #373582, #5754a4);
  }

  .question_text h4 {
    color: #fff;
  }

  .question_text p {
    color: #fff;
  }

  .question_icon i {
    color: #ffffff;
  }

  .question_text.question_text_first:after {
    width: 100%;
  }

  .form_ask_cross {
    right: auto;
    left: 25%;
    margin-left: -40px !important;
  }

  .main_form_inner.show_form,
  .main_form_inner {
    width: 75%;
    left: 25%;
  }
}

@media all and (max-width: 1400px) {
  .input_radio {
    grid-template-columns: repeat(2, 1fr);
  }
  .main_form_area .form_container {
    padding: 80px 40px 50px;
  }
}

@media all and (max-width: 1200px) {
  .zippy_loan_list_text h3 {
    font-size: 14px;
  }

  .zippy_loan_list_text ul li i {
    font-size: 18px;
    width: 30px;
    margin-right: 5px;
  }

  .zippy_images {
    justify-content: start;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .zippy_text h3 {
    font-size: 14px;
  }

  .main_form_area .form_container {
    padding: 40px 30px;
  }
}

@media all and (max-width: 991px) {
  .mobile_header {
    background: linear-gradient(to right, #373582, #5754a4);
    text-align: center;
    margin: 0;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    display: block;
  }

  .logo_mobile img {
    max-width: 134px;
  }

  .left_part.mobile_left {
    display: block;
  }

  .left_part.mobile_hide_left {
    display: none;
  }

  .right_part_parent {
    display: none;
  }

  .main_form_inner {
    width: 100%;
    position: relative;
    left: inherit;
    right: inherit;
    top: 75px;
  }

  .zippy_loan_logo {
    display: none;
  }

  .zippy_images {
    justify-content: center;
  }

  .zippy_text {
    max-width: 271px;
    margin: 0 auto 22px;
  }

  .zippy_text p {
    color: #ffffff;
  }

  .zippy_loan_list_text ul li {
    color: #ffffff;
  }

  .zippy_loan_list_text ul li i {
    font-size: 12px;
    width: 22px;
    margin-right: 3px;
  }

  .zippy_loan_list_text h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .zippy_text h3 {
    font-size: 16px;
  }

  .left_part.mobile_left {
    padding-top: 50px;
  }

  .main_form_area {
    background: #f5f5f5;
  }
}

@media all and (max-width: 767px) {
  .main_form_area .form_content {
    flex: inherit;
    margin: 0;
  }

  .main_form_inner {
    top: 50px;
  }

  .main_form_area .form_container {
    padding: 20px 0px 70px;
  }

  .step_inner_area {
    padding: 20px 10px 20px;
  }

  .main_form_area .form_group label {
    margin-bottom: 1px;
    font-weight: 400;
    font-size: 11px;
  }

  .main_form_area #step1 .form_row {
    justify-content: space-between;
    gap: 25px 14px;
    flex-wrap: wrap;
  }

  .main_form_area #step1 .form_row .form_group {
    width: calc(50% - 7px);
    flex: inherit;
    position: relative;
  }

  .form_group.score_group {
    width: 100% !important;
  }

  .score-area {
    padding: 15px 20px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .main_form_area .btn {
    padding: 18px 22px;
    font-size: 13px;
    margin-right: 10px;
  }

  .main_form_area .btn.back_btn {
    font-size: 13px;
  }

  .main_form_area .btn.back_btn span {
    display: none;
  }

  .form_row.mobile_row {
    gap: 25px 14px;
    flex-wrap: wrap;
  }

  .form_row.mobile_row .form_group,
  .third_part.gird_two.form_row .form_group,
  .third_part .form_group {
    width: calc(50% - 7px) !important;
    flex: inherit !important;
    position: relative !important;
  }

  .third_part.gird_two.form_row,
  .third_part.form_row {
    display: flex;
    grid-template-columns: inherit;
    gap: 25px 14px;
    flex-wrap: wrap;
  }

  .mobile_full_width.form_group {
    width: 100% !important;
  }

  .form_row.max_width_radio {
    max-width: 100%;
  }

  .bottom_score_area {
    gap: 20px;
    flex-wrap: wrap;
  }

  .score_text h3 {
    margin-bottom: 5px;
  }

  .check_box_group {
    width: 90%;
    margin: 15px auto;
  }

  .final_btn button.btn {
    font-size: 15px;
    max-width: 90%;
  }

  .final_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .final_btn span {
    width: 90%;
  }

  .form_footer {
    padding: 25px 20px;
  }

  .cut_of_img.show {
    max-width: 175px;
    margin: 0 0 0 auto;
  }
}

/*-------------responsive-------------*/
