.what-is-included {
    padding-bottom: 100px;
}
.what-is-included .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.what-is-included h3 {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 93.333% */
    margin-top: 15px;
    margin-bottom: 30px;
}
.what-is-included ul {
    padding: 0;
    margin: 0;
    margin-top: 32px;
    list-style-type: none;
}
.what-is-included ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.what-is-included ul li img {
    display: block;
}
.what-is-included ul li p {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}
.what-is-included ul li p b {
    font-weight: 700;
}

.what-is-included-box {
    border-radius: 16px;
    border: 1px solid #001847;
    background: var(--base-white, #FFF);
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    max-width: 509px;
    overflow: hidden;
}
.what-is-included-box h2 {
    color: #001847;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 72px */
    margin: 0;
    margin-top: 20px;
}
.what-is-included-box h2 span {
    color: #397CFF;
}
.what-is-included-box h3 {
    color: #001847;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-decoration-line: underline;
    text-align: center;
    margin: 0;
}
.what-is-included-box .cont {
    padding-left: 20px;
    padding-right: 20px;
}
.what-is-included-box .progress-form {
    margin-top: 40px;
    margin-bottom: 40px;
}
.what-is-included-box form {
    padding: 40px 40px 40px;
}
.what-is-included-box form .primary-button {
    width: 100%;
}
.what-is-included-box form p {
    margin: 0;
    margin-bottom: 6px;
}
.what-is-included-box form .primary-input, .what-is-included-box form .primary-select {
    margin-bottom: 22px;
}

.primary-input {
    position: relative;
    border-radius: 8px;
}
.primary-input .place-input {
    background: var(--base-white, #FFF);
    border-radius: 8px;
}
.primary-input .left-icon {
    position: absolute;
    left: 13px;
    height: 44px;
    width: 20px;
}
.primary-input .left-icon svg {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.primary-input input {
    border-radius: 8px;
    border: 1px solid var(--gray-300, #D0D5DD);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 9px 13px;
    color: var(--gray-900, #001847);
    /* Text md/Regular */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    width: 100%;
    z-index: 2;
    position: relative;
    background-color: transparent;
}
.primary-input input:focus {
    border-color: #397CFF;
    box-shadow: 0px 0px 0px 2px #E2EBFD;
}
.primary-input textarea {
    border-radius: 8px;
    border: 1px solid var(--gray-300, #D0D5DD);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 9px 13px;
    color: var(--gray-900, #001847);
    /* Text md/Regular */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    height: 134px;
    min-height: 134px;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    z-index: 2;
    position: relative;
    background-color: transparent;
}
.primary-input textarea:focus {
    border-color: #397CFF;
    box-shadow: 0px 0px 0px 2px #E2EBFD;
}
.primary-input *::-moz-placeholder {
    color: var(--gray-900, #001847);
}
.primary-input *::placeholder {
    color: var(--gray-900, #001847);
}
.primary-input input:focus::-moz-placeholder, .primary-input textarea:focus::-moz-placeholder {
    color: #fff;
}
.primary-input input:focus::placeholder, .primary-input textarea:focus::placeholder {
    color: #fff;
}

.primary-select {
    background: var(--base-white, #FFF);
    position: relative;
    border-radius: 8px;
}
.primary-select select {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    border-radius: 8px;
    border: 1px solid var(--gray-300, #D0D5DD);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 9px 13px;
    padding-right: 50px;
    color: var(--gray-900, #001847);
    /* Text md/Regular */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    width: 100%;
    z-index: 2;
    position: relative;
    background-color: transparent;
}
.primary-select select:focus {
    border-color: #397CFF;
    box-shadow: 0px 0px 0px 2px #E2EBFD;
    outline: none;
}
.primary-select .right-icon {
    position: absolute;
    right: 13px;
    height: 44px;
    width: 20px;
    top: 0;
}
.primary-select .right-icon svg {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.input-with-leftIcon input, .input-with-leftIcon select {
    padding-left: 40px;
}

.review-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}
.review-card .imgs {
    display: flex;
    align-items: center;
}
.review-card .imgs img {
    display: block;
    max-width: 40px;
    margin-right: -12px;
}
.review-card .right {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 16px;
}
.review-card .right p {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    margin: 0;
}
.review-card .right .sm {
    font-size: 16px;
    text-align: left;
    line-height: 130%;
}
.review-card .right .stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.review-card .right .stars img {
    display: block;
}
.review-card .right .stars p {
    color: var(--gray-700, #344054);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    margin-left: 8px;
}

@media (max-width: 500px) {
    .review-card .imgs img:last-child, .review-card .imgs img:nth-last-child(2) {
        display: none;
    }
}
.l-title {
    color: #001847;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.l-title b {
    font-weight: 600;
}
.l-title u {
    text-decoration: underline;
}
.l-title .blue {
    color: #397CFF;
}

.l-para {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}
.l-para b {
    font-weight: 700;
}

@media (max-width: 1200px) {
    .l-title {
        font-size: 50px;
    }
    .l-para {
        font-size: 18px;
    }
}
@media (max-width: 500px) {
    .l-title {
        font-size: 38px;
    }
    .l-para {
        font-size: 16px;
    }
}
footer {
    background-color: #001847;
    padding-top: 64px;
    padding-bottom: 50px;
}
footer .box {
    display: flex;
    justify-content: space-between;
}
footer .box .left {
    max-width: calc(30% - 20px);
}
footer .box .left .brand {
    max-width: 222px;
}
footer .box .left p {
    margin-top: 20px;
    color: var(--gray-200, #EAECF0);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
footer .box .right {
    display: flex;
    max-width: calc(70% - 12px);
    width: 100%;
    justify-content: space-between;
}
footer .box .right ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
footer .box .right ul li .tit {
    color: var(--gray-300, #D0D5DD);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    margin-bottom: 16px;
}
footer .box .right ul li a {
    display: inline-flex;
    align-items: center;
    color: var(--gray-200, #EAECF0);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    text-decoration: unset;
    margin-bottom: 10px;
    transition: all ease 0.5s;
}
footer .box .right ul li a:hover {
    color: #397CFF;
}
footer .box .right ul li .new {
    border-radius: 16px;
    border: 1px solid var(--gray-200, #EAECF0);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    margin-left: 8px;
    font-size: 12px;
    line-height: 18px;
}
footer .appbtns {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
    display: inline-flex;
}
footer .appbtns img, footer .appbtns svg {
    display: block;
}
footer .appbtns a {
    transition: all ease 0.5s;
}
footer .appbtns a svg path, footer .appbtns a svg rect {
    transition: all ease 0.5s;
}
footer .appbtns a:hover svg path {
    fill: #397CFF;
}
footer .appbtns a:hover svg rect {
    stroke: #397CFF;
}
footer .downline {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
}
footer .downline p {
    color: var(--gray-300, #D0D5DD);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
footer .downline ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 24px;
}
footer .downline ul li a {
    transition: all ease 0.5s;
}
footer .downline ul li a svg path {
    transition: all ease 0.5s;
}
footer .downline ul li a:hover svg path {
    fill: #397CFF;
}

.white-footer {
    background-color: #fff;
}
.white-footer .box .left p, .white-footer .downline p {
    color: #001847;
}
.white-footer .box .right ul li .tit {
    color: #397CFF;
}
.white-footer .box .right ul li a {
    color: #001847;
}

@media (max-width: 950px) {
    footer .box {
        flex-direction: column;
        gap: 50px;
    }
    footer .box .left, footer .box .right {
        max-width: 100%;
    }
    footer .box .left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .box .left p {
        text-align: center;
    }
    footer {
        position: relative;
    }
    footer .appbtns {
        position: absolute;
        bottom: 150px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    footer .downline {
        margin-top: 120px;
    }
    footer .downline p {
        font-size: 14px;
    }
}
@media (max-width: 610px) {
    footer .downline {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 80px;
    }
    footer .box .right {
        flex-wrap: wrap;
        gap: 50px;
        justify-content: space-between;
        align-items: center;
    }
    footer .box .right ul {
        width: 25%;
    }
    footer .box .right:after {
        content: "";
        width: 25%;
    }
}
@media (max-width: 450px) {
    footer .box .right ul, footer .box .right:after {
        width: 40%;
        text-align: center;
    }
    footer .downline p {
        text-align: center;
    }
}
.topcontent h2 {
    color: var(--primary-700, #3A7CFF);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.topcontent h2 span {
    display: inline-flex;
    border-radius: 16px;
    border: 1px solid var(--primary-200, #3A7CFF);
    background: var(--primary-50, #f5fbff);
    mix-blend-mode: multiply;
    padding: 4px 12px;
}
.topcontent h1 {
    margin: auto;
    color: var(--gray-900, #001847);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
    margin-top: 12px;
    max-width: 768px;
}
.topcontent p {
    color: var(--gray-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    margin: auto;
    margin-top: 24px;
    max-width: 768px;
    margin-bottom: 96px;
}

@media (max-width: 600px) {
    .topcontent p br {
        display: none;
    }
}
.report-improved {
    padding-bottom: 100px;
}
.report-improved .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.report-improved .row .arrow-line {
    position: absolute;
    left: calc(50% - 172px);
    top: 325px;
}
.report-improved .cont {
    max-width: 700px;
}
.report-improved .cont p {
    max-width: 480px;
    margin-top: 24px;
}
.report-improved .btns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}
.report-improved .btns a {
    text-decoration: unset;
    transition: all ease 0.5s;
}
.report-improved .btns a:hover {
    opacity: 0.7;
}
.report-improved .btns img {
    display: block;
}

.report-improved-card {
    display: block;
    border-radius: 16px;
    border: 1px solid #001847;
    background: var(--base-white, #FFF);
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    width: 100%;
    max-width: 439px;
    min-height: 631px;
    overflow: hidden;
}
.report-improved-card form {
    padding: 0 40px;
}
.report-improved-card form .primary-button {
    width: 100%;
    margin-top: 15px;
}
.report-improved-card .lastp {
    color: #001847;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-align: center;
    margin-top: 15px;
}
.report-improved-card .lastp a {
    color: #001847;
    font-weight: 700;
    text-decoration: unset;
    transition: all ease 0.5s;
}
.report-improved-card .lastp a:hover {
    color: #397CFF;
}

.container-radio {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: #001847;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 15px 20px;
    margin-bottom: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.container-radio .fullarea {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    border: 1px solid #7D889C;
    background: #FFF;
    z-index: 0;
    transition: all ease 0.5s;
}
.container-radio .cont-radio {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    transition: all ease 0.5s;
}
.container-radio .forimg {
    max-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.container-radio .forimg img {
    display: block;
    margin: auto;
}

/* Hide the browser's default checkbox */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container-radio input:checked ~ .fullarea {
    border: 1px solid #397CFF;
    background: #E3F2FE;
}

.container-radio input:checked ~ .cont-radio {
    color: #397CFF;
}

@media (max-width: 1200px) {
    .report-improved .row .arrow-line {
        left: unset;
        right: 420px;
        max-width: 270px;
        top: 370px;
    }
    .report-improved .row .col:first-child {
        max-width: calc(100% - 450px);
    }
}
@media (max-width: 1000px) {
    .report-improved {
        padding-bottom: 50px;
    }
    .report-improved .row {
        flex-direction: column;
    }
    .report-improved .row .col:first-child {
        max-width: 100%;
    }
    .report-improved .row .col {
        width: 100%;
        text-align: center;
    }
    .report-improved .row .col .cont {
        margin: auto;
    }
    .report-improved .row .col p {
        margin-left: auto;
        margin-right: auto;
    }
    .report-improved .row .col .btns {
        justify-content: center;
    }
    .report-improved .row .report-improved-card {
        margin: auto;
        margin-top: 100px;
    }
    .report-improved .row .arrow-line {
        display: none;
    }
}
@media (max-width: 500px) {
    .report-improved-card form {
        padding: 0 15px;
    }
    .report-improved .row .report-improved-card {
        min-height: unset;
        padding-bottom: 15px;
    }
    .container-radio {
        font-size: 22px;
    }
    .container-radio .forimg {
        max-width: 45px;
    }
    .report-improved-card form .primary-button {
        min-width: 100%;
    }
    .report-improved-card label:first-child .forimg {
        padding: 6px;
    }
}
.seo {
    padding-top: 50px;
    max-width: 768px;
    margin: auto;
}
.seo h3 {
    color: var(--primary-700, #3A7CFF);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.seo h3 span {
    display: inline-flex;
    border-radius: 16px;
    border: 1px solid var(--primary-200, #3A7CFF);
    background: var(--primary-50, #f5fbff);
    mix-blend-mode: multiply;
    padding: 4px 12px;
}
.seo h2 {
    margin: auto;
    color: var(--gray-900, #001847);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
    margin-top: 12px;
    max-width: 768px;
}
#h1-title {
    margin: auto;
    color: var(--gray-900, #001847);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
    margin-top: 12px;
    max-width: 768px;
}
.h1-title {
    margin: auto;
    color: var(--gray-900, #001847);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
    margin-top: 12px;
    max-width: 768px;
}
.seo p {
    color: var(--gray-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    margin: auto;
    margin-top: 24px;
    max-width: 768px;
    margin-bottom: 96px;
}
.seo h3, .seo h2, .seo p {
    text-align: left;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}
.seo p {
    margin-bottom: 60px;
}
.seo h3 {
    padding-top: 40px;
}
.seo img {
    display: block;
    margin: auto;
}
.seo .img-place {
    margin-bottom: 60px;
}
.seo .btn-place {
    text-align: center;
    margin-bottom: 60px;
}
.seo .btn-place a {
    min-width: 200px;
}

@media (max-width: 1000px) {
    .seo {
        padding-top: 50px;
    }
    .seo h2 {
        font-size: 35px;
        line-height: 140%;
    }
}/*# sourceMappingURL=seo.css.map */