@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #072359;
  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: #072359;
  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: #FF3242;
}

.title {
  margin-bottom: 30px;
}
.title h6 {
  font-size: 16px;
}
h2,
.h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.35;
  color: #2E3B5F;
  margin-bottom: 10px;
}
h2 span,
.h2 span {
  color: #FF3242;
}
h3,
.h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: #2E3B5F;
  margin-bottom: 10px;
}

h4,
.h4 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  color: #2E3B5F;
  margin-bottom: 10px;
}

h5,
.h5 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #2E3B5F;
  margin-bottom: 15px;
}

h6,
.h6 {
  font-size: 18px;
  font-weight: 500;
  color: #2E3B5F;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

.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-458 {
  max-width: 458px;
}

.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: 26px 30px;
  cursor: pointer;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  -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;
}
.primary-btn {
  background: #FF3242;
  color: #fff;
}
.primary-btn:focus,
.primary-btn.valid:focus,
.primary-btn:hover,
.primary-btn.valid:hover {
  background: #072359;
  color: #ffff;
}
.form-list {
  margin: 0 -8px;
}
.form-list li {
  margin-bottom: 16px;
  padding: 0 8px;
  width: 50%;
}
.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: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #072359;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  -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: #1B418C;
    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: 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% - 30px);
}
.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;
  text-transform: inherit;
  padding: 0 0 0 26px;
  margin: 0;
  min-height: 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 #1B418C;
  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: 2px solid #DADCE2;
  padding: 30px 16px 16px 16px;
  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: 16px;
  font-weight: 400;
  color: #414141;
  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: #FF3242;
}
.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: #FF8432;
}
.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: #FFC232;
}
.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: #25CF57;
}
.custom-radio.with-icon input[type="radio"] + label .icon img {
  margin-bottom: 10px;
}
.custom-radio.with-icon:hover input[type="radio"] + label .icon,
.custom-radio.with-icon input[type="radio"]:checked + label .icon {
  border-color: #1B418C;
}
/**** 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: 20px 0;
  transition: all 0.3s ease-in-out;
  z-index: 11;
}
.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);
}

.star-bg {
  position: absolute;
  top: -50px;
  right: -30px;
  max-width: 457px;
  height: auto;
  pointer-events: none;
}
.main-banner {
  padding: 120px 0 50px 0;
  position: relative;
  z-index: 1;
}
.banner-inner {
  border: 1px solid #DADCE2;
  overflow: hidden;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.banner-inner .banner-content {
  width: 54%;
  padding: 50px;
}
.banner-content .rangeslider-block {
  border: 1px solid #E4E4E4;
  padding: 20px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.banner-content .rangeslider-block .value {
  color: #FF3242;
  font-weight: 700;
  margin-bottom: 10px;
}
.banner-content .btn {
  width: 400px;
  max-width: 100%;
}
.banner-content .rangeslider-block .inner {
  max-width: 400px;
  margin: 0 auto;
}
.banner-content .rangeslider-block .inner h5 {
  margin-bottom: 6px;
}
.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: #6E92D7;
  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: #004396;
  cursor: pointer;
  display: inline-block;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  -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;
}
.sliderLegend p {
  font-size: 16px;
  line-height: normal;
  font-weight: 300;
  color: #2E3B5F;
  margin: 0;
}

.how-it-work {
  background-color: #F7F7F7;
}
.how-list .item {
  width: calc(33.33% - 20px);
  background: #fff;
  padding: 30px;
  text-align: center;
  margin: 0 10px 20px 10px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.how-list .item img {
  margin: 0 auto 10px auto;
}

.faq-section,
.content-section,
.contact-section {
  border-bottom: 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: #2E3B5F;
  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;
}

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

.swiper-slide .zipbox .text-field {
  padding: 15px 20px;
  font-size: 32px;
}
.steps-wrapper .swiper-slide .container {
  max-width: 936px;
}
.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;
}
.steps-wrapper .swiper-slide.swiper-slide-active .title {
  opacity: 1;
  transform: translateY(0);
}
.steps-wrapper .swiper-slide .title h4 {
  font-weight: 700;
}
.steps-wrapper .swiper-slide .slide-count {
  font-weight: 500;
  color: #FF3242;
}
.steps-wrapper .swiper-slide .inner {
  border: 1px solid #DADCE2;
  position: relative;
  padding: 30px 30px 30px 30px;
  margin-bottom: 40px;
  -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;
  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.swiper-slide-active .bottom-block {
  opacity: 1;
  transform: translateY(0);
}
.steps-wrapper .swiper-slide .btn {
  width: 100%;
  max-width: 432px;
}
.steps-wrapper .swiper-slide .inner .title {
  margin-bottom: 40px;
}
.steps-wrapper .progress {
  width: 100%;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  background: #E9EEF3;
}
.steps-wrapper .progress .bar {
  position: absolute;
  height: 100%;
  background: #1B418C;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.steps-wrapper .progress .count {
  position: absolute;
  right: -30px;
  bottom: 100%;
  font-size: 10px;
  font-weight: 500;
}

.site-footer {
  margin-top: auto;
  padding: 20px 0;
}
.site-footer .disclaimer {
  font-size: 12px;
  margin-bottom: 20px;
}
.site-footer .disclaimer a {
  text-decoration: underline;
}
.site-footer .links {
  margin: 0 0 20px 0;
}
.site-footer .links li {
  display: inline-block;
  margin-right: 10px;
}
.site-footer .links li:last-child {
  margin-right: 0;
}

.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: #FF3242;
}

#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: #F7F7F7;
  overflow: hidden;
  position: relative;
} 
.page-title h6 {
  color: #FF3242;
}
.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: #FF3242;
}
.content-section p a:hover,
.content-section li a:hover {
  color: #072359;
}
.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;
}

@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.3;
  }
  h3,
  .h3 {
    font-size: 30px;
  }
  h4,
  .h4 {
    font-size: 24px;
  }
  h5,
  .h5 {
    font-size: 20px;
    line-height: 1.2;
  }
  .banner-inner .banner-content {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  h4,
  .h4 {
    font-size: 20px;
    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: 140px;
    padding-bottom: 40px;
  }
  .title {
    margin-bottom: 24px;
  }
  .site-header .header-right {
    width: 100%;
    font-size: 14px;
    margin-top: 4px;
  }
  .site-footer .disclaimer, .site-footer .links {
    margin-bottom: 16px;
  }
  .site-footer .links li, .site-footer .copyright {
    font-size: 14px;
  }
  .main-banner {
    padding: 120px 0 40px 0;
  }
  .banner-inner .banner-content {
    width: 100%;
    padding: 24px 20px;
  }
  .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);
  }
  .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: 120px 0 40px 0;
  }
  .form-list li {
    margin-bottom: 12px;
  }
  .steps-wrapper .swiper-slide .inner {
    padding: 32px 20px 20px 20px;
    margin-bottom: 30px;
  }
  .steps-wrapper .progress {
    height: 6px;
  }
  .steps-wrapper .swiper-slide .inner .title {
    margin-bottom: 30px;
  }
  .swiper-slide .zipbox .text-field {
    font-size: 24px;
  }
  .radio-box {
    margin: 0 -12px;
  }
  .radio-box .custom-radio {
    margin: 12px;
  }
  .radio-box.col-4 .custom-radio {
    width: calc(50% - 24px);
  }
}
@media (max-width: 575px) {
  .star-bg {
    width: 200px;
    top: -20px;
    right: -10px;
  }
  .btn {
    padding: 16px 24px;
  }
  .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%;
  }
}


/* 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.png") no-repeat center;
  background-size: cover;
  border-radius: 14px;
  padding: 80px 40px 56px;
  margin-top: 100px;
  .wrap {
    position: relative;
    margin-inline: auto;
    max-width: 789px;
    padding: 60px 40px;
    background: #ffffffcc;
    border-radius: 14px;
    border: 1px solid #DADCE2;
    h2 {
      text-align: center;
      margin-bottom: 20px;
      font-weight: 500;
    }
    p{
      text-align: center;
      margin-bottom: 41px;
      max-width: 573px;
      margin-inline: auto;
      font-size: 24px;
      line-height: 35px;
    }
    img{
      position: relative;
      display: block;
      max-width: 100%;
      margin-inline: auto;
    }
  }
  @media (max-width: 1199px){
    padding: 40px 40px;
    margin-top: 40px;
    border-radius: 0px;
    .wrap{
      p{
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
      }
      h2{
        margin-bottom: 10px;
      }
      img{
        max-width: 200px;
      }
    }
  }

  @media (max-width: 767px){
    padding: 30px 20px;
    .wrap{
      padding: 30px 15px;
      p{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
      }
      h2{
        margin-bottom: 10px;
      }
      img{
        max-width: 100px;
      }
    }
  }
}

.contact-section:has(.thankyou) + .site-footer {
  margin-top: 0px;
}









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



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