*,
*::before,
*::after {
    outline: 0;
    box-sizing: border-box;
}

*,
:focus,
:focus-visible,
:hover {
    outline: 0;
    scrollbar-width: thin;
}

p:empty {
    display: none;
}

ul,
ol {
    margin: 0;
    list-style: none;
    padding: 0px;
}

a {
    text-decoration: none;
    color: #3b82f6;
    cursor: pointer;
}

.font-normal {
    font-weight: normal;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-18 {
    font-size: 18px;
}

.text-underline {
    text-decoration: underline;
}

.flex {
    display: flex;
}

.flex-inline {
    display: inline-flex;
}

.align-item-center {
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

img {
    max-width: 100%;
}

header,
footer {
    background-color: #fff;
}

h3 {
    MARGIN: 0;
    font-size: 30px;
}

h5 {
    margin: 0;
    font-size: 20px;
}

p {
    margin: 0;
}

p+p {
    margin-top: 16px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f3f4f6;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5;
}

.block-space {
    padding-block: 8px;
}

.text-red {
    color: red;
}

.button {
    cursor: pointer;
    position: relative;
    /* display: inline-block; */
    font-size: 14px;
    height: 32px;
    border-radius: 4px;
    color: var(--button-text-color);
    background-color: var(--button-background-color);
    border: 1px solid var(--button-border-color);
}

.button.button-large {
    font-size: 20px;
    height: 48px;
}

.button.button-xlarge {
    height: 110px;
    min-width: 448px;
    padding: 1rem 2rem;
    border-radius: 8px;
}

.button-xlarge .icon-call {
    width: 64px;
}

.button-xlarge .header-link-text-bottom {
    font-size: 36px;
    font-weight: bold;
}

.button-xlarge .header-link-text-top {
    font-size: 16px;
    color: #fff;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.animate-bounce {
    -webkit-animation: bounce 1s ease-in-out infinite alternate;
    animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    -webkit-animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.animate-spin {
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.button-loader {
    position: absolute;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

.svg-box {
    width: 1em;
    height: 1em;
}

.svg-box svg {
    width: 100%;
    height: 100%;
}

.button-green {
    --button-text-color: #fff;
    --button-background-color: #16a34a;
    --button-border-color: #16a34a;
}

.button-green:hover {
    --button-text-color: #fff;
    --button-background-color: #22c55e;
    --button-border-color: #22c55e;
}

.button-red {
    --button-text-color: #fff;
    --button-background-color: #dc2626;
    --button-border-color: #dc2626;
}

.button-red:hover {
    --button-text-color: #fff;
    --button-background-color: #ef4444;
    --button-border-color: #ef4444;
}

.button-blue {
    --button-text-color: #fff;
    --button-background-color: #2563eb;
    --button-border-color: #2563eb;
}

.button-blue:hover {
    --button-text-color: #fff;
    --button-background-color: #3b82f6;
    --button-border-color: #3b82f6;
}

.header-logo-link {
    display: inline-grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
}

.header-link {
    white-space: nowrap;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 5px;
    color: #1e40af;
    align-items: center;
}

.ping-box {
    aspect-ratio: 1;
    width: 10px;
    min-width: 10px;
    height: 10px;
    position: relative;
}

.ping-box::before,
.ping-box::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4ade80;
}

.ping-box::after {
    -webkit-animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.header-link-text {
    display: flex;
    font-weight: 600;
    flex-direction: column;
}

.header-link-text-top {
    font-size: 12px;
    color: #374151;
    letter-spacing: .1em;
}

.header-link-text-bottom {
    font-size: 20px;
}

.highlight-light {
    line-height: 1.5;
    background-color: #FBEF8F;
}

.highlight-dark {
    background-color: #FFEB00;
    line-height: 1.5;
}

.highlight-darker {
    background: #f8bc16;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.width-xs {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
}

.width-sm {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
}

.width-full {
    width: 100%;
    max-width: 100%;
}

.header-main-inner {
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-link {
    display: inline-grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    color: #1e40af;
    align-items: center;
}

.header-logo-text {
    display: none
}

.header-logo-text-top {
    color: currentColor;
    font-size: 24px;
    display: inline-flex;
    gap: 5px;
}

.icon-call {
    display: none;
}

.header-logo-text-bottom {
    color: currentColor;
    font-size: 12px;
}

.section-main {
    display: block;
    padding-block: var(--top-space, 32px) var(--bottom-space, 32px);
    border: solid #e5e7eb;
    border-width: 1px 0;
}

.form-confirmartion-section,
.eligibility-section {
    --top-space: 70px;
    --bottom-space: 70px;
}

.form-fieldset {
    border: none;
}

.form-input {
    height: 58px;
    border-radius: 6px;
    border: 1px solid rgb(209, 213, 219);
    padding: 14px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
}

.highlight-box {
    border-radius: 4px;
    padding: 12px 16px;
    background-color: #f4f9a9;
    border: 1px solid #f40000;
}

.footer-nav-link {
    padding: 8px 20px;
    display: inline-block;
}

.footer-main a,
.footer-main p {
    font-size: 12px;
    color: #000;
}

.footer-main a:hover {
    text-decoration: underline;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom {
    padding: 16px 20px;
    margin-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.container,
.container-sm {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}

/* Lightbox */
.light-box-main{
            position: fixed;
            top: 0;
            left: 0;
            background-color: rgba(115,115,115,0.7);
            width: 100%;
            height: 100%;
            z-index: 9999;
            display: none;
        }
        .light-box-main .light-box-element{
            margin: 100px auto 0 auto;
            width: 70%;
            background-color: #ffffff;
            border-radius: 4px;
            padding: 15px;
            position: relative;
            overflow-y: scroll;
            overflow-x: hidden;
            height: 400px;
        }
        .light-box-main .light-box-close{
            position: absolute;
            z-index: 8888;
            top: 90px;
            right: 14.5%;
            cursor: pointer;
        }
        .lightbox-error{
            font-size: 24px;
            line-height: 28px;
            margin-top: 150px;
        }

/* Eligibily Form */
.drawer {
    position: fixed;
    inset-inline: 0;
    inset-block-end: 0;
}

.drawer-inner {
    position: relative;
    margin-bottom: .75rem;
}

.drawer-content {
    background-color: #fff;
    padding: 8px 12px;
    border-radius: .375rem;
    box-shadow: 0 3px 10px #0000003b;
}

.drawer-close {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 1;
    font-size: 18px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.4s ease-in-out;
}

.drawer-close:hover {
    transform: scale(0.9);
}

.drawer-close:active {
    background-color: color-mix(in srgb, currentColor 10%, transparent);
    transform: scale(0.8);
}

.block-shadow-box {
    background-color: #fff;
    padding: 8px 12px;
    border-radius: .375rem;
    box-shadow: 0 3px 10px #0000003b;
    margin: 0 auto;
    margin-block: 10px;
}

/* Steps */
.steps-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-item {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.step-item:not(:last-child) {
    flex: 1 1 100%;
}

.step-item:not(:last-child)::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #d1d5db;
    position: absolute;
    z-index: -1;
    left: 10%;
}

.step-item.completed:not(:last-child)::after {
    background: #1e40af;
}

.step-icon {
    aspect-ratio: 1;
    color: #fff;
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background-color: #fff;
}

.step-item.active .step-icon::before,
.step-item.active .step-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e40af;
}

.step-icon::after {
    -webkit-animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.step-item.active .step-icon {
    border-color: #1e40af;
}

.step-item.completed .step-icon {
    border-color: #1e40af;
    background: #1e40af;
}

.step-item:not(.completed) .step-icon svg {
    display: none;
}

.steps-vertical {
    max-width: max-content;
    margin: 0 auto;
    height: calc(100px * var(--steps-count, 3));
    flex-direction: column;
    align-items: flex-start;
}

.steps-vertical .step-item {
    align-items: flex-start;
}

.steps-vertical .step-icon {
    width: 2.5em;
    height: 2.5em;
}

.steps-vertical .step-item:not(:last-child)::after {
    width: 2px;
    height: 100%;
    left: 20px;
    top: 20px;
}

.steps-vertical .step-item.active .step-icon::before,
.steps-vertical .step-item.active .step-icon::after {
    content: none;
}

.steps-vertical .step-item .step-icon svg {
    width: 20px;
    color: #d1d5db;
    display: block;
}

.steps-vertical .step-item.active .step-icon svg {
    color: #1e40af;
}

.steps-vertical .step-text {
    display: flex;
    flex-direction: column;
    /* position: absolute; */
    /* left: calc(100% + 20px); */
    /* top: 0; */
    margin-left: 20px;
    width: max-content;
}

.step-text-title {
    font-weight: bold;
}

.step-text-info {
    opacity: 0;
    visibility: hidden;
    color: #989898;
}

.steps-vertical .step-item.completed .step-text-info,
.steps-vertical .step-item.active .step-text-info {
    opacity: 1;
    visibility: visible;
}

/* Steps css end */
.eligibility-form-progress-section {
    min-height: 100vh;
    display: grid;
    align-items: center;
}

.countdown {
    display: inline-flex;
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.countdown-item+.countdown-item::before {
    content: '';
    position: absolute;
    right: 100%;
    font-size: 3rem;
    width: 12px;
}

.countdown-value {
    font-weight: bold;
    font-size: 2rem;
    min-width: 2ch;
}

.countdown-label {
    font-size: 0.9rem;
}

/* LANDING PAGE CSS START */

.landing-highlight-section {
    padding: 12px 0;
    border-bottom: 1px solid #ffffff;
}

.landing-highlight-section:has(.countdown) {
    border-color: #d9d9d9;
}

.landing-highlight-section .countdown {
    border-top: 1px solid #d1d5db;
    padding-top: 10px;
}

.landing-highlight-section .countdown span.countdown-value,
.landing-highlight-section .countdown span.countdown-label {
    color: #1e40af;
}

section:has(.background-overlay-image) {
    position: relative;
}

.background-overlay-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.background-overlay-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-form-section {
    background-color: #fff;
    padding: 40px 0 80px;
}

.landing-live-agents-section {
    background-color: #fff;
    padding: 40px 0;
    box-shadow: 0 3px 10px #00000005;
}

.block-end {
    margin-bottom: 24px;
}

.landing-faq-section {
    padding: 80px 0;
}

.faq-wrappper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-heading {
    color: #1e40af;
    font-size: 3rem;
    line-height: 1.25;
    font-weight: normal;
    margin: 0;
}

.fab-content {
    color: #6b7280;
    padding-bottom: 16px;
}

.faq-item+.faq-item {
    border-top: 2px solid #d3d3d3;
}

.faq-toggle {
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    padding: 16px 0;
    cursor: pointer;
}

.loader-wrap {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.loading {
    height: 0;
    width: 0;
    padding: 15px;
    border: 6px solid #ccc;
    border-right-color: #888;
    border-radius: 22px;
    animation: rotate 1s infinite linear;
    position: absolute;
    left: 50%;
    top: 50%;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* LANDING PAGE CSS END */

/* Eligibily Form */

@media (max-width: 767px) {
    .button.button-xlarge {
        min-width: auto;
        gap:0;
    }
    .button.gap-16
    {
        gap:0;
    }
    .button-xlarge .header-link-text-bottom {
        font-size: 26px;
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .header-logo-text {
        display: flex;
        font-weight: 600;
        flex-direction: column;
    }
}

@media (min-width: 1024px) {

    .container,
    .container-sm {
        padding-inline: 2rem;
    }

    .container-sm {
        max-width: 1024px;
    }

    .icon-call {
        display: block;
    }

    .header-link {
        grid-template-columns: 42px 1fr;
    }

    .faq-wrappper {
        grid-template-columns: 0.8fr 1fr;
        gap: 40px;
    }

}

@media (min-width: 1440px) {

    .container {
        max-width: 1280px;
    }

}