@import "font.css?v2";
@import "styleForm.css?v2";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

/**:not(.slick.marquee *) {*/
/*    transition: 0.9s !important;*/
/*}*/
.transit {
    transition: 0.4s !important;
}

html {
    font-size: 10px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h3, h3 {
    font-size: 2.975rem;
}

*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section-header h2 {
    color: #0f3593;
    font-size: 35px;
    line-height: 35px;
    font-weight: 800;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #212529;
    text-align: left;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    text-decoration: none;
}

.anotherUrl {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #f6fafb;
    padding: 5px 5px;
}
.anotherUrl p {
    margin-bottom: 0px;
}
.anotherUrl p a {
    color: rgb(64,92,179);
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    display: flex;
    text-decoration: underline;
}

h4.sub-head {
    color: #4282d2;
    font-size: 25px;
    line-height: 35px;
    font-family: 'Inter';
    font-weight: 700;
    margin: 20px 0;
}


.heading2{
    background: #238fe5;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Inter';
    line-height: 35px;
    text-align: center!important;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.heading4{
    background-color:#e1e5f1 !important;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Inter';
    line-height: 35px;
    text-align: center!important;
    padding: 25px 20px;
    margin-top: 20px;
}

.title h1{
    color: #141414;
    font-weight: 700;
    font-family: "Inter";
    font-size: 35px;
    line-height: 45px;
}

h2.common-head {
    color: #141414;
    font-weight: 700;
    font-family: "inter";
    font-size: 35px;
    line-height: 45px;
}

.label-tag {
    background: #e1e5f1;
    border-radius: 10px;
    padding: 20px 10px;
    margin-top: 30px;
}

.label-tag h4 {
    color: #3b4858;
    font-weight: 700;
    font-family: 'Inter';
    font-size: 25px;
    line-height: 35px;
}

.postImg{
    width: 100%;
}

.postImg img{
    width: 100%;
    object-fit: cover;
}
.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.position-relative {
    position: relative !important;
}

.postCotent p {
    font-size: 16px;
    margin-top: 16px;
}

.customUlLi {
    max-width: 870px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    margin-bottom: 45px;
}
.customUlLi ol {
    padding: 0;
    list-style-type: none;
    counter-reset: num;
}
.customUlLi ol li {
    line-height: 26px;
    position: relative;
    padding-left: 40px;
    display: inline-block;
    margin: 0;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
}
.customUlLi ol li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-color: #238fe5;
    content: counter(num);
    counter-increment: num;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}
ul.load_step {
    text-align: center;
    font-size: 17px;
}

ul.load_steps li.step.active {
    color: #000 !important;
    opacity: 1 !important;
    font-size: 17px;
    list-style: none;
}

ul.load_steps li.step:nth-child(2) {
    opacity: .3;
    font-size: 17px;
}

ul.load_steps li {
    color: rgba(60, 60, 67, .6);
    overflow: hidden;
    line-height: 28px;
    transition: .2s all;
    margin-bottom: 15px;
    opacity: .07;
    font-size: 17px;
    list-style: none;
}

.d-none {
    display: none!important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


p {
    font-size: 1.7rem;
}

p.stylg {
    background: #e7fcf7;
    border: 3px solid #ff9900;
    border-radius: 8px;
    margin: 15px 0px;
    font-size: 15px;
    line-height: 22px;
    padding: 10px;
}

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

.p-3 {
    padding: 1rem!important;
}

.pt-5, .py-5 {
    padding-top: 3rem!important;
}

.mt-3, .my-3 {
    margin-top: 1rem!important;
}

.mt-5, .my-5 {
    margin-top: 3rem!important;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.fa-arrow-left {
    padding-top: 5px;
    color: #fff;
}

.btn {
    height: 5.5rem;
    padding: 0 1.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 5rem;
    vertical-align: middle;
}

.btn-primary {
    color: #fff;
    background-color: #ff9900;
    border: 2px solid #f39201;
}

.btn-primary:hover {
    color: #fff;
    background: #da8403;
    border-color: #fff;
    
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.error {
    display: none;
    background-color: rgba(153,0,0,.6);
    border-radius: 3px;
    padding: 4px 8px;
    font-weight: unset;
    font-size: 14px;
    line-height: 20px;
    color: #fff!important;
    font-family: sans-serif;
    margin: 15px 0;
    width: auto!important;
    clear: both;
}

.nick-name {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/*********MODAL*************/
.modal-opener {
    cursor: pointer;
    color: #06c;
    text-decoration: underline;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 99;
}

.hidden {
    display: none;
}

.fade {
    transition: opacity .15s linear;
}

.modal-dialog {
    width: auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.3rem;
    min-height: 250px;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0.3rem;
    outline: 0;
    border: 4px solid #c4c4c4;
    padding: 20px 60px;
    box-shadow: 0 0 8px rgb(0 0 0 / 30%);
   
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    padding: 0;
    border-bottom: none;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

h4.modal-title {
    font-size: 24px;
    color: #00cfc3;
    font-weight: 900;
    text-align: center;
    line-height: 30px;
}

button.close {
    position: absolute;
    background-color: transparent;
    border: 0;
    right: 15px;
    top: 10px;
    opacity: 1;
    cursor: pointer;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0;
}

.modal-body ul.privList {
    list-style: none;
    padding: 0;
    max-height: 360px;
    overflow-y: scroll;
}

.modal-body ul.privList li {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}

/*********END OF MODAL**********/
@media (min-width: 576px) {
    .container {
        max-width: 576px;
    }

    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}


@media screen and (max-width: 992px){
    .heading2 {
        font-size: 28px;
    }
    .heading4{
        font-size: 22px;
    }

    .label-tag h4 {
        color: #3b4858;
        font-weight: 700;
        font-family: 'Inter';
        font-size: 28px;
        line-height: 35px;
    }

    h2.common-head {
        color: #141414;
        font-weight: 700;
        font-family: "inter";
        font-size: 26px;
        line-height: 30px;
    }
}
@media screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }

    .container {
        max-width: 768px;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .debt-finder .question .prev-btn {
        display: none;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }

    .container {
        max-width: 960px;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }

    .container {
        max-width: 1340px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }

    .container {
        max-width: 1140px;
    }
}


@media (max-width: 576px) {
    .section-header h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 800;
    }
}

@media (max-width: 380px){

    .section-header h2 {
        font-size: 28px;
        line-height: 35px;
        font-weight: 800;
    }

    .homeContentContainer{
        width: 100%;
    }
    .title h1{
        color: #141414;
        font-weight: 700 !important;
        font-family: "Inter";
        font-size: 24px;
        line-height: 30px;
    }
    
    h4.sub-head {
        color: #4282d2;
        font-size: 20px;
        line-height: 30px;
        font-family: 'Inter';
        font-weight: 700;
        margin: 20px 0;
    }

    .heading2 {
        font-size: 24px;
    }
    .heading4{
        font-size: 20px;
    }

    .label-tag h4 {
        color: #3b4858;
        font-weight: 700;
        font-family: 'Inter';
        font-size: 20px;
        line-height: 25px;
    }

    h2.common-head {
        color: #141414;
        font-weight: 700;
        font-family: "inter";
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 380px){

    .section-header h2 {
        font-size: 24px;
        line-height: 20px;
        font-weight: 800;
    }

    .mainText{
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .mainText h2{
        font-family: Montserrat,sans-serif;
        font-size: 19px;
        font-weight: 700;
        line-height: 24px;
    }
}

