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;
    }
}
.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;
    }
}
.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-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #397CFF;
    background: var(--base-white, #FFF);
    box-shadow: 0px 3px 2px 0px rgba(16, 24, 40, 0.05);
}
.l-icon img, .l-icon svg {
    display: block;
}

.press-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.press-section h2 {
    text-align: center;
    color: var(--gray-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    margin-bottom: 28px;
}
.press-section .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.press-section .logos img {
    width: 100%;
}
.press-section .logos img:nth-child(1) {
    max-width: 240px;
}
.press-section .logos img:nth-child(2) {
    max-width: 330px;
}
.press-section .logos img:nth-child(3) {
    max-width: 175px;
}
.press-section .logos img:nth-child(4) {
    max-width: 246px;
}
.press-section .logos img:nth-child(5) {
    max-width: 130px;
}
.press-section .logos img:nth-child(6) {
    max-width: 160px;
}
.press-section .logos img:nth-child(7) {
    max-width: 322px;
}
.press-section .logos img:nth-child(8) {
    max-width: 180px;
}
.press-section .logos img:nth-child(9) {
    max-width: 160px;
}

.get-started-box {
    max-width: 439px;
    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);
    overflow: hidden;
}
.get-started-box form {
    padding: 0 40px 20px;
}
.get-started-box form p {
    margin: 0;
    margin-bottom: 6px;
}
.get-started-box form .primary-input {
    margin-bottom: 22px;
}
.get-started-box .primary-button {
    width: 100%;
    max-width: 100%;
}
.get-started-box .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;
    margin-bottom: 0;
}
.get-started-box .lastp a {
    color: #397CFF;
    font-weight: 700;
    text-decoration: unset;
    transition: all ease 0.5s;
}
.get-started-box .lastp a:hover {
    color: #001847;
}

.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;
}

.frequently-asked-questions {
    background: var(--gray-50, #F9FAFB);
    padding-top: 100px;
    padding-bottom: 100px;
}
.frequently-asked-questions h3 {
    color: #4685FF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.frequently-asked-questions 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;
}
.frequently-asked-questions h2 {
    color: var(--gray-900, #001847);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 122.222% */
    letter-spacing: -0.72px;
    margin-top: 12px;
    margin-bottom: 20px;
}
.frequently-asked-questions p {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    max-width: 768px;
}
.frequently-asked-questions p a {
    color: var(--gray-600, #475467);
    font-weight: 500;
}
.frequently-asked-questions .box {
    margin-top: 70px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.frequently-asked-questions .box .team-img {
    max-width: 560px;
    display: block;
}
.frequently-asked-questions .box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    max-width: calc(100% - 570px);
}
.frequently-asked-questions .box ul li:last-child {
    margin-bottom: 0;
}
.frequently-asked-questions .box ul li {
    position: relative;
    padding-left: 65px;
    margin-bottom: 58px;
}
.frequently-asked-questions .box ul li .placeforicon {
    border-radius: 28px;
    border: 8px solid #CDE6F6;
    background: #CDE6F6;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: -10px;
}
.frequently-asked-questions .box ul li h3 {
    color: var(--gray-900, #001847);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    max-width: 496px;
}
.frequently-asked-questions .box ul li p {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-top: 8px;
    max-width: 496px;
}

@media (max-width: 1200px) {
    .frequently-asked-questions .box ul {
        max-width: calc(50% - 10px);
    }
    .frequently-asked-questions .box .team-img {
        max-width: calc(50% - 10px);
    }
    .frequently-asked-questions .box ul li {
        margin-bottom: 30px;
    }
}
@media (max-width: 950px) {
    .frequently-asked-questions p br {
        display: none;
    }
    .frequently-asked-questions {
        text-align: center;
    }
    .frequently-asked-questions p, .frequently-asked-questions h3 {
        margin-left: auto;
        margin-right: auto;
    }
    .frequently-asked-questions .box {
        display: block;
    }
    .frequently-asked-questions .box .team-img, .frequently-asked-questions .box ul {
        max-width: 100%;
    }
    .frequently-asked-questions .box ul li {
        padding-left: 0;
    }
    .frequently-asked-questions .box ul li .placeforicon {
        position: relative;
        margin: auto;
        top: unset;
        left: unset;
        margin-bottom: 15px;
    }
    .frequently-asked-questions .box .team-img {
        max-width: 400px;
        width: 100%;
        margin: auto;
        display: block;
        margin-top: 50px;
    }
}
@media (max-width: 600px) {
    .frequently-asked-questions h2 {
        font-size: 26px;
        line-height: 120%;
    }
}
.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;
}

.progress-form {
    max-width: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.progress-form .line {
    height: 2px;
    background-color: #397CFF;
    width: 100%;
}
.progress-form .step {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 100%;
    background-color: #D0D5DD;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
}
.progress-form .step img {
    display: block;
}
.progress-form .step:after {
    content: "";
    height: 3px;
    background-color: #D0D5DD;
    width: 500px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    left: 20px;
}
.progress-form .finished {
    background-color: #397CFF;
}
.progress-form .finished:after {
    background-color: #397CFF;
    height: 2px;
}
.progress-form .active {
    background-color: #397CFF;
}
.progress-form .active:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: auto;
}

.primary-button {
    min-width: 270px;
}

.l-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--gray-200, #EAECF0);
    background: var(--gray-100, #F2F4F7);
    mix-blend-mode: multiply;
    padding: 4px;
    gap: 2px;
    margin-bottom: 16px;
}
.l-tabs a {
    color: var(--gray-700, #344054);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    display: inline-flex;
    padding: 2px 10px;
    border-radius: 16px;
    border: 1px solid var(--gray-200, #F2F4F7);
    background: var(--base-white, #F2F4F7);
    text-decoration: unset;
    transition: all ease 0.5s;
}
.l-tabs .active, .l-tabs a:hover {
    border: 1px solid var(--gray-200, #EAECF0);
    background: var(--base-white, #FFF);
}

.l-sec1 {
    padding-top: 300px;
    padding-bottom: 280px;
    position: relative;
    overflow: hidden;
}
.l-sec1 .wrapper {
    position: relative;
}
.l-sec1 .arrow {
    position: absolute;
    right: 430px;
    z-index: 2;
    top: 210px;
}
.l-sec1 .get-started-box {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.l-sec1 .what-is-included-box {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 439px;
}
.l-sec1 .what-is-included-box h2 {
    font-size: 35px;
}
.l-sec1 .what-is-included-box h3 {
    font-size: 18px;
}
.l-sec1 .content {
    max-width: 720px;
}
.l-sec1 h1 {
    margin-bottom: 24px;
}
.l-sec1 p {
    max-width: 550px;
    margin-bottom: 20px;
}

.l-sec2 {
    text-align: center;
}
.l-sec2 h2 {
    margin-top: 24px;
    margin-bottom: 20px;
}
.l-sec2 .items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px 40px;
    max-width: 1100px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.l-sec2 .items .item {
    color: #001847;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px; /* 80% */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.l-sec2 .items .item img {
    display: block;
    max-width: 45px;
    max-height: 45px;
}

.numbers {
    padding-top: 0;
    padding-bottom: 120px;
}
.numbers .items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.numbers .items h2 {
    color: #001847;
    font-family: Inter;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.5px;
}
.numbers .items h2 span {
    color: #001847;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
}
.numbers .items p {
    color: var(--gray-900, #101828);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 155.556% */
}
.numbers .items .item {
    border-left: 2px solid #001847;
    padding-left: 24px;
}

.lp-lists {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}
.lp-lists .lp-list {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
}
.lp-lists .lp-list .col {
    width: calc(50% - 15px);
    position: relative;
}
.lp-lists .lp-list .col h2 {
    font-size: 56px;
}
.lp-lists .lp-list .col .mainimg1 {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 768px;
    max-width: unset;
    margin-top: -20px;
}
.lp-lists .lp-list .col .mainimg2 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 540px;
    max-width: unset;
    max-width: 100%;
}
.lp-lists .lp-list .col .mainimg4 {
    position: relative;
    max-width: 100%;
}
.lp-lists .lp-list p {
    font-size: 18px;
    line-height: 28px;
}
.lp-lists .lp-list h2 {
    margin-top: 24px;
    margin-bottom: 16px;
}
.lp-lists .lp-list ul {
    padding: 0;
    margin: 0;
    margin-top: 32px;
    list-style-type: none;
}
.lp-lists .lp-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.lp-lists .lp-list ul li img {
    display: block;
}
.lp-lists .lp-list 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% */
}
.lp-lists .lp-list .primary-button {
    margin-top: 32px;
}
.lp-lists .ourstudents {
    align-items: center;
}
.lp-lists .ourstudents .review-card {
    margin-top: 32px;
}
.lp-lists .ourstudents .col h2 {
    font-size: 48px;
    max-width: 550px;
}
.lp-lists .ourstudents .l-para {
    max-width: 540px;
}
.lp-lists .orderchange .col:first-child {
    order: 2;
}
.lp-lists .orderchange .col:last-child {
    order: 1;
}

.press-section {
    margin-bottom: 70px;
}

.lp-lists .lp-list .col .onlyPhone {
    display: none;
}

.frequently-asked-questions {
    padding: 0;
    background-color: #fff;
}

.frequently-asked-questions .box {
    margin: 0;
}

@media (max-width: 1200px) {
    .numbers .items h2 {
        font-size: 20px;
    }
    .numbers .items h2 span {
        font-size: 40px;
    }
    .lp-lists .lp-list .col h2 {
        font-size: 45px;
    }
    .press-section {
        margin-bottom: 40px;
    }
    .lp-lists .lp-list .col .mainimg1 {
        left: 0;
    }
    .l-sec1 .arrow {
        max-width: 260px;
    }
    .l-sec1 .content {
        max-width: calc(100% - 500px);
    }
}
@media (max-width: 1000px) {
    .l-sec1 .arrow {
        display: none;
    }
    .get-started-box, .l-sec1 .what-is-included-box {
        max-width: 400px;
    }
    .l-sec1 .content {
        max-width: calc(100% - 400px);
    }
    .what-is-included-box h2 {
        font-size: 34px;
    }
    .numbers .items {
        gap: 40px 0;
        justify-content: space-between;
    }
    .numbers .items .item {
        min-width: calc(50% - 40px);
        padding: 0;
        border-left: none;
        border-top: 2px solid #001847;
        padding-top: 10px;
    }
    .numbers .items .item p {
        margin-top: -10px;
    }
}
@media (max-width: 880px) {
    .l-sec1 .get-started-box, .l-sec1 .what-is-included-box {
        position: relative;
        top: unset;
        transform: unset;
        margin: auto;
        right: unset;
        margin-top: 70px;
        max-width: 507px;
    }
    .what-is-included-box form .primary-button {
        min-width: 100%;
    }
    .l-sec1 .content {
        max-width: 600px;
    }
    .numbers {
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .what-is-included {
        padding-bottom: 50px;
    }
    .what-is-included ul li {
        max-width: 450px;
        text-align: left;
    }
    .what-is-included-box form {
        text-align: left;
    }
    .what-is-included-box {
        margin-top: 70px;
    }
    .what-is-included .row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .l-sec1 .l-sec1-img1 {
        position: relative;
        left: unset;
        top: unset;
        max-height: 730px;
    }
    .l-sec1 {
        padding-top: 150px;
        padding-bottom: 50px;
    }
    .l-sec1 .content {
        margin: auto;
        text-align: center;
    }
    .l-sec1 p {
        margin-left: auto;
        margin-right: auto;
    }
    .review-card {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .l-sec1 .l-sec1-img1 {
        max-width: 840px;
        width: 840px;
        margin-left: calc(50% - 300px);
        margin-top: 50px;
    }
    .lp-lists .lp-list {
        flex-direction: column;
    }
    .lp-lists .lp-list p {
        display: none;
    }
    .review-card .right .sm, .review-card .right .stars p {
        display: block;
    }
    .lp-lists .lp-list ul p {
        display: block;
    }
    .lp-lists .lp-list .col:last-child {
        display: none;
    }
    .lp-lists .lp-list.ourstudents .col:last-child {
        display: block;
    }
    .lp-lists .lp-list .col .onlyPhone {
        display: block;
    }
    .lp-lists .lp-list .col .mainimg1 {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
    }
    .lp-lists .lp-list .col:first-child {
        width: 100%;
        text-align: center;
        max-width: 520px;
        margin: auto;
    }
    .lp-lists .lp-list ul li {
        max-width: 450px;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    .lp-lists .lp-list .col:last-child {
        width: 100%;
    }
    .lp-lists .lp-list .col .mainimg2 {
        max-width: 400px;
        width: 100%;
        padding-left: 25px;
        margin: auto;
        margin-top: 20px;
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        display: block;
    }
    .lp-lists .orderchange .col:first-child {
        order: 1;
    }
    .lp-lists .orderchange .col:last-child {
        order: 2;
    }
    .lp-lists .lp-list .col .mainimg4 {
        max-width: 600px;
        margin: auto;
        margin-top: 50px;
        width: 100%;
        display: block;
    }
    .l-sec1 .l-sec1-img1 {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        display: block;
        width: 100%;
    }
}
@media (min-width: 620px) and (max-width: 880px) {
    .lp-lists .lp-list .col .mainimg1 {
        margin: auto;
        width: 100%;
        max-width: 100%;
        padding-right: 30px;
    }
}
@media (max-width: 750px) {
    .numbers .items .item {
        min-width: calc(50% - 10px);
    }
    .get-started-box form, .l-sec1 .what-is-included-box form, .what-is-included-box form, .what-is-included-box .cont {
        padding: 15px;
    }
    .what-is-included-box h2 {
        line-height: 120%;
        font-size: 40px;
        margin-bottom: 10px;
    }
    .get-started-box .primary-button {
        min-width: 100%;
    }
    .what-is-included-box .progress {
        margin-top: 25px;
        margin-bottom: 0;
    }
}
@media (max-width: 620px) {
    .lp-lists .lp-list .col .mainimg1 {
        max-width: calc(100% + 35px);
        width: calc(100% + 35px);
        margin-left: -20px;
    }
    .numbers .items .item {
        width: 100%;
        max-width: 100%;
        padding-top: 15px;
    }
    .numbers .items .item p {
        margin-top: 0;
        font-weight: 400;
    }
    .numbers .items {
        gap: 50px 0px;
    }
    .numbers .items h2 {
        font-size: 25px;
    }
    .numbers .items h2 span {
        font-size: 55px;
        margin-right: 5px;
    }
}
@media (max-width: 500px) {
    .lp-lists .lp-list ul li {
        max-width: 400px;
    }
    .lp-lists .lp-list .col h2 {
        font-size: 38px;
    }
    .l-sec2 .items .item {
        font-size: 16px;
    }
    .l-sec2 .items {
        gap: 15px;
    }
    .lp-lists .lp-list p, .lp-lists .lp-list ul li p {
        font-size: 16px;
    }
}
@media (min-width: 1500px) {
    .wrapper, .standard-nav .wrapper {
        max-width: 1400px;
    }
    .l-sec1 {
        padding-top: 330px;
    }
    .lp-lists .lp-list .col .mainimg1 {
        width: 900px;
    }
    .l-sec1 .what-is-included-box {
        max-width: 507px;
    }
    .l-sec1 .arrow {
        right: 500px;
    }
}/*# sourceMappingURL=parents.css.map */