@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: top;
  background: transparent;
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1F1F1F;
  padding: 0;
  margin: 0;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  line-height: normal;
}

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

img {
  display: block;
  max-width: 100%;
}

a,
span {
  display: inline-block;
}

a {
  color: #1F1F1F;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

a:hover {
  color: #129730;
}

.title {
  margin-bottom: 40px;
}

.title h6 {
  font-size: 20px;
  font-weight: 400;
}

h2,
.h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.0;
  color: #1F1F1F;
  margin-bottom: 5px;
}

h2 span,
.h2 span {
  color: #129730;
}

h3,
.h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: #1F1F1F;
  margin-bottom: 8px;
}

h4,
.h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: #1F1F1F;
  margin-bottom: 10px;
}

h5,
.h5 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  color: #1F1F1F;
  margin-bottom: 12px;
}

h6,
.h6 {
  font-size: 16px;
  font-weight: 400;
  color: #1F1F1F;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  line-height: 1.25;
  font-size: 16px;
}

.title:last-child,
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
p:last-child {
  margin-bottom: 0;
}

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

.fs-10 {
  font-size: 10px;
}

ul {
  list-style-type: disc;
  margin-left: 15px;
  margin-bottom: 30px;
}

ul:last-child {
  margin-bottom: 0;
}

ul li {
  list-style-type: none;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.s-pt,
.s-py {
  padding-top: 80px;
}

.s-pb,
.s-py {
  padding-bottom: 80px;
}

.mx-500 {
  max-width: 500px;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

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

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

.align-end {
  align-items: flend;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
}

.hide {
  display: none !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto;
}

.mr-auto,
.mx-auto {
  margin-right: auto;
}

/**** FORM FIELDS:- INPUTS, SELECT, RADIO, CHECKBOX, BUTTONS ****/
.btn {
  border: 0;
  padding: 22px 30px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn.btn-arrow {
  position: relative;
  padding-right: 58px;
  text-align: center;
}

.btn-arrow span {
  position: relative;
}

.btn-arrow span::after {
  content: '';
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../images/arrow-right.svg') center center no-repeat;
  background-size: cover;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  transition: 0.3s all ease;
}

.btn:hover span::after {
  right: -38px;
}

.primary-btn {
  background: #129730;
  color: #fff;
}

.primary-btn:focus,
.primary-btn.valid:focus,
.primary-btn:hover,
.primary-btn.valid:hover {
  background: #1F1F1F;
  color: #ffff;
}

.form-list {
  margin: 0 -8px;
}

.form-list li {
  margin-bottom: 16px;
  padding: 0 8px;
  width: 50%;
}

.form-list li:last-child {
  margin-bottom: 0;
}

.form-list li.col-3 {
  width: 33.33%;
}

.form-list li.full {
  width: 100%;
}

.text-field {
  width: 100%;
  outline: none;
  background-color: #fff;
  border: 0;
  border: 1px solid #E4E4E4;
  padding: 19px 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #1F1F1F;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.text-field.active,
.text-field:focus,
.text-field:not(:placeholder-shown) {
  border-color: #129730;
  outline: none;
}

.text-field::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.input-error {
  border-color: transparent;
  outline: none;
  -webkit-box-shadow: 0px 0px 1px 3px #d30207;
  -moz-box-shadow: 0px 0px 1px 3px #d30207;
  box-shadow: 0px 0px 1px 3px #d30207;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
/*  -webkit-box-shadow: 0 0 0 40px #ffffff inset !important; */
}

select.text-field {
  background: #fff url(../images/down-arrow.svg) right 20px center no-repeat;
  background-size: 16px auto;
  padding-right: 40px;
}

textarea,
textarea.text-field {
  resize: none;
  height: 200px;
}

select,
button,
input {
  filter: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Radio Button */
.radio-box {
  margin: -15px 0 -15px;
}

.radio-box .custom-radio {
  display: block;
  width: calc(50% - 30px);
  vertical-align: top;
  margin: 15px 15px 15px 15px;
  position: relative;
}

.radio-box.col-4 .custom-radio {
  width: calc(25% - 14px);
  margin: 15px 7px 15px 7px;
}

.custom-radio input[type="radio"] {
  /*  display: none !important;*/
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  margin: 0;
  z-index: 2;
}

.custom-radio input[type="radio"]+label {
  font-size: 20px;
  line-height: normal;
  color: #1B418C;
  font-weight: 600;
  background-color: white;
  text-transform: inherit;
  padding: 0 0 0 26px;
  margin: 0;
  min-height: 16px;
  border-radius: 16px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.custom-radio input[type="radio"]+label:before,
.custom-radio input[type="radio"]+label:after {
  pointer-events: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.custom-radio input[type="radio"]+label:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.custom-radio input[type="radio"]:checked+label:before {
  border-color: transparent;
  background: #1a73e8;
}

.custom-radio input[type="radio"]+label:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0;
}

.custom-radio input[type="radio"]:checked+label:after {
  opacity: 1;
}

.custom-radio.style-button input[type="radio"]+label {
  display: block;
  border: 2px solid #129730;
  padding: 18px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
}

.custom-radio.style-button input[type="radio"]+label:before {
  display: none;
}

.custom-radio.style-button input[type="radio"]+label:after {
  display: none;
}

.custom-radio.style-button input[type="radio"]+label:hover,
.custom-radio.style-button input[type="radio"]:checked+label {
  background: #1B418C;
  color: #fff;
}

.custom-radio.with-icon input[type="radio"]+label {
  padding: 0;
  width: 100%;
}

.custom-radio.with-icon input[type="radio"]+label:before,
.custom-radio.with-icon input[type="radio"]+label:after {
  display: none;
}

.custom-radio.with-icon input[type="radio"]+label .icon {
  border: 1px solid rgb(0, 0, 0, .15);
  padding: 32px;
  color: #414141;
  display: block;
  flex-direction: column;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}

.custom-radio.with-icon input[type="radio"]+label .icon .income {
  font-size: 14px;
  font-weight: 500;
  color: #1F1F1F;
  display: block;
}

.custom-radio.with-icon input[type="radio"]+label[for=monthlyincome-poor] .icon,
.custom-radio.with-icon input[type="radio"]+label[for=credit-poor] .icon {
  color: #F93131;
}

.custom-radio.with-icon input[type="radio"]+label[for=monthlyincome-fair] .icon,
.custom-radio.with-icon input[type="radio"]+label[for=credit-fair] .icon {
  color: #F97731;
}

.custom-radio.with-icon input[type="radio"]+label[for=monthlyincome-good] .icon,
.custom-radio.with-icon input[type="radio"]+label[for=credit-good] .icon {
  color: #EEC306;
}

.custom-radio.with-icon input[type="radio"]+label[for=monthlyincome-great] .icon,
.custom-radio.with-icon input[type="radio"]+label[for=credit-great] .icon {
  color: #12CE73;
}

.custom-radio.with-icon input[type="radio"]+label .icon img {
  margin-bottom: 16px;
  max-width: 80px;
}

.custom-radio.with-icon:hover input[type="radio"]+label .icon,
.custom-radio.with-icon input[type="radio"]:checked+label .icon {
  border-color: #129730;
}

.second-cradit .custom-radio.with-icon input[type="radio"]+label .icon {
  padding: 20px 31px;
}

/**** FORM FIELDS:- INPUTS, SELECT, RADIO, CHECKBOX, BUTTONS ****/

/* project css start */
.site-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  background-size: cover;
  background-position: right center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  padding: 24px 0px 28px;
  transition: all 0.3s ease-in-out;
  z-index: 11;
  border-bottom: 1px solid rgb(0, 0, 0, .1);
}

.site-header.fixed {
  background-color: #ffffff;
  padding: 14px 0;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
}

.header-wrapper .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.hd-link {
  line-height: 24px;
  font-size: 16px;
  color: #1F1F1F;
}

.hd-link img {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}

.star-bg {
  position: absolute;
  top: -50px;
  right: -30px;
  max-width: 457px;
  height: auto;
  pointer-events: none;
}

.main-banner {
  padding: 192px 0 174px 0;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-inner {
  overflow: hidden;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.banner-inner .banner-content {
  width: 100%;
}

.banner-content .rangeslider-block {
  padding: 32px 56px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  max-width: 542px;
  background: #FFFFFF;
}

.banner-content .rangeslider-block .value {
  color: #129730;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content .btn {
  width: 100%;
}

.banner-content .rangeslider-block .inner h5 {
  margin-bottom: 4px;
}

.banner-content .rangeslider-block .inner h5:nth-of-type(2) {
  margin-bottom: 16px;
  font-size: 20px;
}

.banner-inner .banner-img {
  width: 46%;
}

.banner-inner .banner-img img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* rangeslider start */
.rangeslider-block {
  position: relative;
  margin-bottom: 16px;
}

.rangeslider-block:last-child {
  margin-bottom: 0;
}

.rangeslider {
  display: block;
  /*overflow: hidden;*/
  position: relative;
  height: 30px;
  width: 100%;
  margin: 0 auto;
}

.rangeslider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 10px;
  width: 100%;
  background: #E4E4E4;
  display: block;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rangeslider__fill {
  display: block;
  background: #1F1F1F;
  position: absolute;
  height: 10px;
  top: 50%;
  left: 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rangeslider__handle {
  background: white;
  cursor: pointer;
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  border: 5px solid #1F1F1F;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
}

.sliderLegend {
  width: 100%;
  margin-top: 2px;
  margin-bottom: 24px;
}

.sliderLegend p {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #1F1F1F;
  margin: 0;
}

.how-it-work {
  background-color: #F7F8FA;
}

.how-list {
  margin: 0 -12px;
}

.how-list .item {
  width: calc(33.33% - 24px);
  background: #fff;
  padding: 32px;
  margin: 0 12px 20px 12px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.how-list .item img {
  margin-bottom: 24px;
}

footer {
  border-top: 1px solid #E4E4E4;
}

.accordian-item {
  background-color: #F7F7F7;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.accordian-item:last-child {
  margin-bottom: 0;
}

.accordian-item .accordian-title {
  font-weight: 400;
  margin-bottom: 0;
  padding: 24px 54px 24px 32px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.accordian-item .accordian-title .icon {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  transform: translateY(-50%);
}

.accordian-item .accordian-title .icon::before,
.accordian-item .accordian-title .icon::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 2px;
  background-color: #1F1F1F;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.accordian-item .accordian-title .icon::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

.accordian-item .accordian-title .icon::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(90deg);
}

.accordian-item .accordian-title.active .icon::after {
  opacity: 0;
}

.accordian-item:first-child .content {
  display: block;
}

.accordian-item .content {
  overflow: hidden;
  display: none;
  padding: 24px 32px;
  background: #fff;
  border: 2px solid #F7F7F7;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.slider-page {
  background-color: #F8F8F5;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-top: 120px;
}

.steps-wrapper {
  padding: 0px 0 50px 0;
  position: relative;
  z-index: 1;
}

.swiper-wrapper {
  overflow: hidden;
}

.swiper-slide .zipbox .text-field {
  padding: 24px 32px;
  text-align: center;
  font-size: 24px;
}

.steps-wrapper .swiper-slide .container {
  max-width: 900px;
}

.steps-wrapper .swiper-slide .title {
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  transition-delay: .2s;
  padding-top: 18px;
}

.steps-wrapper .swiper-slide.swiper-slide-active .title {
  opacity: 1;
  transform: translateY(0);
}

.steps-wrapper .swiper-slide .title h4 {
  font-weight: 600;
}

.steps-wrapper .swiper-slide .slide-count {
  font-weight: 500;
  color: #129730;
}

.steps-wrapper .swiper-slide .inner {
  position: relative;
  margin-bottom: 16px;
  -webkit-border-radius: 0 0 14px 14px;
  -moz-border-radius: 0 0 14px 14px;
  border-radius: 0 0 14px 14px;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  transition-delay: .5s;
}

.steps-wrapper .swiper-slide.swiper-slide-active .inner {
  opacity: 1;
  transform: translateY(0);
}

.steps-wrapper .swiper-slide .inner:last-child {
  margin-bottom: 0;
}

.steps-wrapper .swiper-slide .inner h5 {
  font-size: 20px;
  font-weight: 400;
}

.steps-wrapper .swiper-slide .bottom-block {
  opacity: 0;
  /* margin-top: 40px; */
  transform: translateY(10px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  transition-delay: .8s;
}

.steps-wrapper .swiper-slide .bottom-block p {
  margin-top: 40px;
}

.steps-wrapper .swiper-slide.swiper-slide-active .bottom-block {
  opacity: 1;
  transform: translateY(0);
}

.steps-wrapper .swiper-slide .btn {
  width: 100%;
  max-width: 500px;
}

.steps-wrapper .swiper-slide .inner .title {
  margin-bottom: 40px;
}

.steps-wrapper .progress {
  width: 100%;
  max-width: 700px;
  height: 6px;
  margin: auto;
  margin-bottom: 40px;
  position: relative;
  background: rgb(0, 35, 105, .10);
  border-radius: 100px;
}

.steps-wrapper .progress .bar {
  position: absolute;
  height: 100%;
  background: #1F1F1F;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.steps-wrapper .progress .count {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  font-size: 10px;
  font-weight: 500;
}

.tcpa {
  margin-top: 16px;
  margin-bottom: 40px;
}

.site-footer {
  margin-top: auto;
  padding: 40px 0 20px;
}

.site-footer .disclaimer {
  margin-bottom: 24px;
}

.site-footer .disclaimer p {
  font-size: 12px;
}

.site-footer .disclaimer p span {
  margin-bottom: 8px;
  font-weight: 600;
  display: inline-block;
}

.site-footer .disclaimer a {
  text-decoration: underline;
}

.site-footer .links {
  font-size: 0;
  margin: 0;
}

.site-footer .links li {
  display: inline-block;
  margin-right: 36px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
}

.site-footer .links li:last-child {
  margin-right: 0;
}

.copyright {
  font-size: 14px;
  font-weight: 500;
}

.sphere {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 10px 5px;
  display: inline-block;
  position: relative;
  -webkit-transform: scale(0.3);
  z-index: -1;
  background: #129730;
}

#sphere1 {
  -webkit-animation: scale-1 2s 0s infinite;
}

#sphere2 {
  -webkit-animation: scale-2 2s 0.2s infinite;
}

#sphere3 {
  -webkit-animation: scale-3 2s 0.4s infinite;
}

#sphere4 {
  -webkit-animation: scale-4 2s 0.6s infinite;
}

@-webkit-keyframes scale-1 {
  0% {
    -webkit-transform: scale(0.3);
  }

  35%,
  65% {
    -webkit-transform: scale(1);
  }

  65%,
  100% {
    -webkit-transform: scale(0.3);
  }
}

@-webkit-keyframes scale-2 {
  0% {
    -webkit-transform: scale(0.3);
  }

  35%,
  65% {
    -webkit-transform: scale(1);
  }

  65%,
  100% {
    -webkit-transform: scale(0.3);
  }
}

@-webkit-keyframes scale-3 {
  0% {
    -webkit-transform: scale(0.3);
  }

  35%,
  65% {
    -webkit-transform: scale(1);
  }

  65%,
  100% {
    -webkit-transform: scale(0.3);
  }
}

@-webkit-keyframes scale-4 {
  0% {
    -webkit-transform: scale(0.3);
  }

  35%,
  65% {
    -webkit-transform: scale(1);
  }

  65%,
  100% {
    -webkit-transform: scale(0.3);
  }
}


.page-title {
  padding-top: 150px;
  padding-bottom: 50px;
  background-color: #1F1F1F12;
  overflow: hidden;
  position: relative;
}

.page-title h6 {
  color: #129730;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto 50px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.content-section h4 {
  font-weight: 600;
}

.content-section p a,
.content-section li a {
  color: #129730;
}

.content-section p a:hover,
.content-section li a:hover {
  color: #1F1F1F;
}

.content-section ul {
  margin-left: 15px;
  margin-bottom: 30px;
}

.content-section ul li {
  list-style: disc;
  margin-bottom: 4px;
  font-size: 14px;
}

/* cursor blink */
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

.progress-wrapper {
  text-align: center;
  width: 100%;
  font-size: 0;
  margin-bottom: 22px;
}

.progress-wrapper p {
  font-size: 10px;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: normal;
}

.progress {
  width: clamp(0px, 100%, 700px);
  border-radius: 40px;
  background: rgb(0, 35, 105, .10);
  min-height: 6px;
  position: relative;
  display: inline-block;
  text-align: center;
}

.progress .progress-bar {
  position: absolute;
  width: 0;
  max-width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100%;
  background-color: #1F1F1F;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  h2,
  .h2 {
    font-size: 40px;
    line-height: 1.25;
  }

  h3,
  .h3 {
    font-size: 30px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h5,
  .h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}

@media (max-width: 991px) {

  h2,
  .h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  h4,
  .h4 {
    font-size: 22px;
    line-height: 1.2;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  h6,
  .h6 {
    font-size: 16px;
  }

  .s-pt,
  .s-py {
    padding-top: 60px;
  }

  .s-pb,
  .s-py {
    padding-bottom: 60px;
  }

  .btn {
    font-size: 20px;
  }

  .site-header .logo {
    max-width: 200px;
    margin-right: 16px;
  }

  .star-bg {
    width: 300px;
    top: -30px;
    right: -20px;
  }

  .how-list .item {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .s-pt,
  .s-py {
    padding-top: 40px;
  }

  .s-pb,
  .s-py {
    padding-bottom: 40px;
  }

  p {
    margin-bottom: 16px;
  }

  .page-title {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .title {
    margin-bottom: 24px;
  }

  .site-header .header-right {
    width: 100%;
    font-size: 14px;
    margin-top: 4px;
  }

  .site-footer .disclaimer {
    margin-bottom: 16px;
  }

  .site-footer .links li,
  .site-footer .copyright {
    font-size: 14px;
  }

  .site-footer .links li {
    margin-right: 30px;
    margin-bottom: 8px;
  }

  .main-banner {
    padding: 90px 0 40px 0;
  }

  .rangeslider__handle {
    width: 20px;
    height: 20px;
  }

  .rangeslider::before,
  .rangeslider__fill {
    height: 8px;
  }

  .banner-inner .banner-img {
    width: 100%;
  }

  .how-list .item {
    width: calc(50% - 20px);
    margin: 0px 10px 20px;
  }

  .how-list .item:last-child {
    width: calc(100% - 20px);
  }

  .accordian-item .accordian-title {
    padding: 20px 48px 20px 20px;
  }

  .accordian-item .accordian-title .icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }

  .accordian-item .accordian-title .icon::before,
  .accordian-item .accordian-title .icon::after {
    width: 16px;
  }

  .accordian-item .content {
    padding: 20px;
  }

  .steps-wrapper {
    padding: 0px 0 40px 0;
  }

  .form-list li {
    margin-bottom: 12px;
  }

  .steps-wrapper .progress {
    height: 6px;
    margin-bottom: 30px;
  }

  .steps-wrapper .swiper-slide .inner .title {
    margin-bottom: 30px;
  }

  .swiper-slide .zipbox .text-field {
    font-size: 20px;
    padding: 20px;
  }

  .radio-box {
    margin: 0 -7px;
  }

  .radio-box .custom-radio {
    margin: 12px;
  }

  .radio-box.col-4 .custom-radio {
    width: calc(50% - 14px);
    margin: 7px;
  }

  .banner-content .rangeslider-block {
    padding: 20px;
  }

  .hd-link {
    font-size: 0;
  }

  .site-header {
    padding: 16px 0px 20px;
  }

  .hd-logo {
    max-width: 210px;
  }

  .slider-page {
    padding-top: 80px;
  }

  .steps-wrapper .swiper-slide .inner {
    padding-top: 8px;
  }
}

@media (max-width: 575px) {
  .star-bg {
    width: 200px;
    top: -20px;
    right: -10px;
  }

  .btn {
    padding: 16px 30px;
  }

  .text-field {
    font-size: 18px;
    padding: 16px;
    line-height: 1.2;
  }

  .how-list .item {
    width: 100%;
    margin: 0 0 16px 0;
  }

  .how-list .item:last-child {
    width: 100%;
    margin: 0;
  }

  .how-list .item img {
    width: 54px;
  }

  .form-list li,
  .form-list li.col-3 {
    width: 100%;
  }

  .radio-box {
    margin: 0;
  }

  .radio-box .custom-radio {
    margin: 0 0 12px 0;
    width: 100%;
  }

  .radio-box .custom-radio:last-child {
    margin-bottom: 0;
  }

  .radio-box.col-4 .custom-radio {
    width: 100%;
    margin: 7px auto;
  }

  .how-list {
    margin: 0;
  }

  .custom-radio.with-icon input[type="radio"]+label .icon {
    padding: 22px;
  }

  .custom-radio.with-icon input[type="radio"]+label .icon img {
    max-width: 60px;
    margin-bottom: 12px;
  }
}


/* new css for partners page */
ul.partners li {
  list-style: disc;
}

ul.partners {
  padding: revert;
}

.partners-grid {
  background-color: #F7F7F7;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.partners-grid p {
  margin-bottom: 0px;
}

p.tcpa a {
  text-decoration: underline;
}



/* new css for thank-you page */
.thankyou {
  background: url("../images/thankyou.jpg") no-repeat center;
  background-size: cover;
  border-radius: 14px;
  padding: 80px 40px 56px;
  margin-top: 60px;
}

.thankyou .wrap {
  position: relative;
  margin-inline: auto;
  max-width: 789px;
  padding: 60px 40px;
  background: #ffffffcc;
  border-radius: 14px;
  border: 1px solid #DADCE2;
}

.thankyou .wrap h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.thankyou .wrap p {
  text-align: center;
  margin-bottom: 41px;
  max-width: 573px;
  margin-inline: auto;
  font-size: 24px;
  line-height: 35px;
}

.thankyou .wrap img {
  position: relative;
  display: block;
  max-width: 100%;
  margin-inline: auto;
}

  @media (max-width: 767px) {
    .thankyou {
      margin-top: 65px;
      padding: 40px 20px 40px;
      background-position: center right -227px;
    }

    .thankyou .wrap {
      padding: 20px;
    }
  }









  .error-text {
    font-size: 12px;
    color: red;
    text-align: left;
  }



  @media (max-width: 767px) {
    .title {
      margin-bottom: 40px;
    }

    .banner-content .title {
      padding-right: 70px;
    }
  }