@media screen and (min-width: 992px) {
  .section_heading_part .section_title {
    font-size: 37px;
  }
}

/* start section financing steps */
.section_financing_steps .col_single_step {
  max-width: 300px;
  margin-bottom: 20px;
}
.section_financing_steps .col_single_step .container_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-main-100);
  font-size: 50px;
}
.section_financing_steps .col_single_step .title {
  text-transform: capitalize;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.section_financing_steps .col_single_step .details {
  text-align: center;
  color: var(--color-gray-400);
}
/* // end section financing steps */

/* start section calculate payment */
/* col calculate text */
.section_calculate_payment {
  background-color: var(--color-gray-700);
}
.section_calculate_payment .col_calculate_text {
  background-image: url("https://images.pexels.com/photos/17670613/pexels-photo-17670613/free-photo-of-hands-of-person-using-calculator-on-smartphone.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 992px) {
  html[dir="ltr"] .section_calculate_payment .col_calculate_text {
    padding-right: 115px;
  }
  html[dir="rtl"] .section_calculate_payment .col_calculate_text {
    padding-left: 115px;
  }
}
.section_calculate_payment .col_calculate_text p {
  /* padding-top: 50px; */
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 40px;
  font-weight: 200;
  color: var(--color-white-100);
  position: relative;
  z-index: 1;
  min-height: 250px;
  /* width: 85%; */
}
@media screen and (min-width: 992px) {
  .section_calculate_payment .col_calculate_text p {
    padding-top: 40px;
  }
}
.section_calculate_payment .col_calculate_text .calculate_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.section_calculate_payment .col_calculate_text,
.section_calculate_payment .col_calculate_text .calculate_overlay {
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
}
/* col form */
.section_calculate_payment .col_form_payment_calculator {
  background: var(--color-white-100);
  padding: 20px;
  margin-bottom: 20px;
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
  z-index: 1;
}
html[dir="rtl"] .section_calculate_payment .col_form_payment_calculator {
  -webkit-border-top-right-radius: var(--border-radius-200);
  border-top-right-radius: var(--border-radius-200);
  -webkit-border-bottom-right-radius: var(--border-radius-200);
  border-bottom-right-radius: var(--border-radius-200);
}

@media screen and (min-width: 992px) {
  .section_calculate_payment .col_form_payment_calculator {
    margin-bottom: 0;
  }
  .section_calculate_payment .col_form_payment_calculator {
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  html[dir="ltr"] .section_calculate_payment .col_form_payment_calculator {
    margin-left: -130px;
    -webkit-border-top-left-radius: var(--border-radius-200);
    border-top-left-radius: var(--border-radius-200);
    -webkit-border-bottom-left-radius: var(--border-radius-200);
    border-bottom-left-radius: var(--border-radius-200);
  }
  html[dir="rtl"] .section_calculate_payment .col_form_payment_calculator {
    margin-right: -130px;
    -webkit-border-top-right-radius: var(--border-radius-200);
    border-top-right-radius: var(--border-radius-200);
    -webkit-border-bottom-right-radius: var(--border-radius-200);
    border-bottom-right-radius: var(--border-radius-200);
  }
}
@media screen and (min-width: 992px) {
  .section_calculate_payment .row_col_form {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .section_calculate_payment .col_form {
    margin-top: 30px;
  }
}
.section_calculate_payment .col_form label {
  text-transform: capitalize;
  font-weight: 700;
}
.section_calculate_payment .col_form .input-group:not(:last-of-type) {
  border-bottom: 2px solid var(--color-gray-700);
}
.section_calculate_payment .col_form .input-group-text {
  background: transparent;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.section_calculate_payment .col_form .input-group-text i {
  color: var(--color-gray-400);
}
.section_calculate_payment .col_form input {
  border: 0 !important;
}
.section_calculate_payment .col_form .input-group:focus-within {
  /* border-bottom-color: var(--color-main-100); */
  border-bottom-color: var(--color-dark-100);
}
.section_calculate_payment .col_form .btn_calculate {
  text-transform: capitalize;
  background-color: var(--color-black-100);
  color: var(--color-white-100);
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
}
.section_calculate_payment .col_form .btn_calculate:hover,
.section_calculate_payment .col_form .btn_calculate:focus {
  background-color: var(--color-gray-200);
}
.section_calculate_payment .col_form .col_show_result {
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  background-color: var(--color-dark-transparent-200);
  color: var(--color-white-100);
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
}
@media screen and (min-width: 992px) {
  .section_calculate_payment .col_form .col_show_result {
    -webkit-border-radius: 0;
    border-radius: 0;
  }
}
html[dir="ltr"] .section_calculate_payment .col_form .col_show_result {
  -webkit-border-top-right-radius: var(--border-radius-200);
  border-top-right-radius: var(--border-radius-200);
  -webkit-border-bottom-right-radius: var(--border-radius-200);
  border-bottom-right-radius: var(--border-radius-200);
}
.section_calculate_payment .col_form .col_show_result .result_title {
  padding: 20px;
  font-weight: 600;
  font-size: 20px;
  background-color: var(--color-main-100);
}
.section_calculate_payment .col_form .col_show_result .result_details {
  padding: 20px;
}
.section_calculate_payment .col_form .col_show_result .monthly_payment_value {
  font-size: 25px;
  font-weight: 800;
}

/* // end section calculate payment */

/* start section financing journey */
.section_financing_journey p {
  color: var(--color-gray-300);
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section_financing_journey .section_heading_part .section_title,
  .section_financing_journey p {
    text-align: left;
  }
}
.section_financing_journey .btn_apply_now {
  font-size: 20px;
  margin-top: 20px;
}
.section_financing_journey .col_form .form-control:focus {
  border-bottom-color: var(--color-main-100);
}
.section_financing_journey .col_form .btn_send {
  width: 100%;
  background-color: var(--color-black-100);
  color: var(--color-white-100);
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
}
/* // end section financing journey */

/* start section fast approval */
.section_fast_approval {
  background-color: var(--color-gray-700);
}
.section_fast_approval p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}
/* // end section fast approval */

/* start section contact us */
.section_contact_us .title {
  font-size: 50px;
  text-align: center;
  margin-bottom: 30px;
}
.section_contact_us .title i {
  color: var(--color-red-500);
}
.section_contact_us .col_single_contact_item {
  margin-bottom: 30px;
}
.section_contact_us .col_single_contact_item .item_title {
  font-size: 18px;
  font-weight: 600;
}
.section_contact_us .col_single_contact_item .wrapper_content i,
.section_contact_us .col_single_contact_item .wrapper_content span {
  font-size: 16px;
}
/* // end section contact us */
