@charset "UTF-8";
@import"https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap";

* {
    box-sizing: border-box;
    margin: 0
}
 html {
      scroll-behavior: smooth;
    }
body {
    min-height: 100vh;
    position: relative;
    font-family: "Poppins", sans-serif;

}
 
.heading {
    font-size: 42px;
    font-weight: 600;
    line-height: 63px;
    color: #303681;
}

.sub-heading {
    color: #303681;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 39px;
    text-align: left;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-underline-position: from-font
}

.content {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 37px;
    text-align: center;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-underline-position: from-font
}

.lf-outline-btn {
    background-color: #f9fafb;
    border: 1px solid #44a7d9;
    border-radius: 50px;
    height: 55px;
    opacity: unset !important
}

.lf-outline-btn span {
    color: #303681;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    padding: 20px 35px;
    text-align: center;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-underline-position: from-font
}

.responsive-image {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.text-align-left {
    text-align: left
}

.secondary-button {
    background: #44a7d9;
    border: 2px solid #303681;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    padding: 10px 35px
}

.secondary-border {
    border: .5px solid #44a7d9;
    border-radius: 35px;
    padding: 15px 5px
}

.section-margin {
    margin-top: 100px
}

.vertical-line {
    border-left: .1px solid #cfd3fc;
    height: auto
}

.horizontal-line {
    border-bottom: .1px solid #cfd3fc;
    width: 90%
}

.lower-section {
    background-color: #303681;
    color: #fff;
    display: flex;
    font-family: Poppins;
    justify-content: center;
    overflow: hidden;
    padding: 70px 0
}

.content-header {
    color: #303681;
    font-family: Poppins;
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    text-align: left;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-underline-position: from-font
}

.white-text {
    color: #fff
}

.circle-list {
    list-style: none;
    padding-left: 0
}

.circle-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    z-index: -1
}

.circle-list li:before {
    color: #44a7d9;
    content: "○";
    font-size: 17px;
    left: 0;
    position: absolute;
    top: 5px
}

.circle-container {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    height: 100px;
    justify-content: center;
    overflow: hidden;
    width: 100px
}

.circle-image {
    height: auto;
    width: 100%
}

.lf-work-step-card {
    align-items: center;
    background: #dfe2fc;
    border-radius: 24px;
    display: flex;
    flex-flow: column;
    justify-content: start;
    margin: 1em;
    padding: 50px 15px;
    position: relative;
    z-index: -1
}

.lf-work-step-card .header {
    color: #303681;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 10px
}

.lf-work-step-card .content {
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
    padding-top: 10px;
    text-align: center
}

.faqs {
    background-color: #fff;
    border: 1px solid #cfd3fc;
    border-radius: 50px 50px 0 0;
    margin: 20px auto;
    overflow: hidden
}

.faq-item:last-child {
    border-bottom: none
}

.faq-item:first-child .faq-header {
    border: none
}

.faq-toggle {
    display: none
}

.faq-header {
    background-color: #fff;
    border-radius: 25px;
    border-top: 1px solid #cfd3fc;
    color: #303681;
    cursor: pointer;
    display: block;
    font-family: Poppins;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 40px
}

.faq-content {
    border-top: none;
    font-family: Poppins;
    font-size: 16px;
    margin: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s, border-top .3s
}

.expand-arrow {
    transform: rotate(90deg) !important;
    transition: transform .3s ease-in-out;
    z-index: 1
}

.faq-toggle:checked+.faq-header+.faq-content {
    border-top: 1px solid #cfd3fc;
    max-height: -moz-max-content;
    max-height: max-content;
    padding: 15px 0
}

.faq-toggle:checked+.faq-header .expand-arrow {
    transform: rotate(270deg) !important
}

.align-heading {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

.transparent-button {
    border: 2px solid #303681;
    border-radius: 30px;
    color: #303681;
    font-size: 18px;
    padding: 10px 35px
}

@media only screen and (max-width:576px) {
    .banner {
        padding: 40px
    }

    .banner .banner-heading {
        font-size: 20px;
        line-height: 34px;
        text-align: center;
        -webkit-text-decoration-skip-ink: none;
        text-decoration-skip-ink: none;
        text-underline-position: from-font
    }

    .banner .banner-subheading {
        font-size: 16px;
        font-weight: 500;
        line-height: 26px
    }

    .content {
        font-size: 14px;
        font-weight: 400;
        line-height: 26px
    }

    .heading {
        font-size: 22px;
        font-weight: 600;
        line-height: 34px
    }

    .sub-heading {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        text-align: left
    }

    .lf-outline-btn span {
        font-size: 14px;
        font-weight: 600;
        line-height: 21px;
        text-align: center
    }

    .faq-header {
        font-size: 16px
    }

    .faq-content {
        font-size: 14px
    }

    .content-header {
        font-size: 20px;
        line-height: 30px
    }
}