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

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html,
body {
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.head {
    padding: 15px 0;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}


.nav-list li {
    font-size: 11.14px;
    font-weight: 600;
    color: #4D4D4D;
    cursor: pointer;
}


.reg-now-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background-color: #4CAF4F;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 11.14px;
    font-weight: 500;
    cursor: pointer;
}

.nav-btn {
    margin: 0;
}


/* header responsive */

@media (max-width: 768px) {

    .nav-list {
        gap: 18px;
    }

    .nav-list li {
        font-size: 10.5px;
    }

    .reg-now-btn {
        padding: 8px 18px;
        font-size: 10.5px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        gap: 18px;
    }

    .nav-list li {
        font-size: 10.5px;
    }

    .reg-now-btn {
        padding: 8px 16px;
        font-size: 10.5px;
    }
}

@media (max-width: 425px) {
    .head .d-flex {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        order: 1;
    }

    .navbar {
        order: 2;
    }

    .nav-btn {
        order: 3;
        width: 100%;
    }

    .reg-now-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-list {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-list li {
        font-size: 10px;
    }
}

@media (max-width: 375px) {
    .nav-list {
        gap: 8px;
    }

    .nav-list li {
        font-size: 9.5px;
    }
}

@media (max-width: 320px) {
    .nav-list {
        gap: 6px;
    }

    .nav-list li {
        font-size: 9px;
    }
}




/* hero section */
.lessons {
    background-color: #F5F7FA;
    padding: 50px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 100px;
}



.content {
    max-width: 460px;
}

.heading {
    font-weight: 600;
    font-size: 44.55px;
    line-height: 52.9px;
}

.sub-heading {
    color: #4CAF4F;
    font-weight: 600;
    font-size: 44.55px;
}

.sub-title {
    font-weight: 400;
    font-size: 11.14px;
    line-height: 16.71px;
    color: #717171;
    margin-top: 15px;
}

.register-button {
    margin-top: 25px;
    padding: 10px 22px;
    background-color: #4CAF4F;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 11.14px;
    cursor: pointer;
}

.lesson-img {
    width: 272px;
    height: auto;
}

/* client section */
.client {
    width: 100%;
    padding: 0 50px;
    margin: 20px auto 0;
    padding-left: 0;
    padding-right: 0;
    height: auto;
    margin-top: 50px;
}

.client-heading {
    width: 772.64px;
    height: 53.57px;
    gap: 5.57px;
}

.client-title {
    font-weight: 600;
    font-size: 25.06px;
    height: auto;
    width: 100%;
    text-align: center;
    color: #4D4D4D;
}

.client-subtitle {
    font-weight: 400;
    font-size: 11.14px;
    color: #717171;

    text-align: center;
    margin-top: 10px;
    height: auto;
    width: 100%;
}

.client-logos {
    width: 100%;
    height: auto;
    justify-content: space-between;
    display: flex;
    margin-top: 40px;
}

.client-icon {
    width: 27.84px;
    height: 27.84px;
    padding-top: 2.78px;
    padding-left: 2.78px;
}

/* client section responsive */

@media (max-width: 992px) {
    .client {
        max-width: 100%;
        padding: 0 40px;
    }

    .client-logos {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .client {
        padding: 0 20px;
    }

    .client-title {
        font-size: 20px;
    }



    .client-logos {
        gap: 20px;
    }

    .client-icon img {
        max-width: 22px;
        height: auto;
    }
}



/* community section */

.community-sec {
    margin-top: 60px;
}

.community-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.community-title {
    font-weight: 600;
    font-size: 25px;
    color: #4D4D4D;
}

.community-subtitle {
    font-size: 12px;
    color: #717171;
    margin-top: 12px;
}

.card-sec {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 260px;
    width: 100%;
    transition: 0.3s ease;
}

.card img {
    width: 48px;
    height: auto;
    margin-bottom: 16px;
}

.membership-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #4D4D4D;
}

.membership-subtitle {
    font-size: 12px;
    line-height: 18px;
    color: #717171;
    margin-top: 10px;
}

/* community section responsive */
@media (max-width: 425px) {
    .community-sec {
        margin-top: 40px;
        padding: 0 15px;
    }

    .community-title {
        font-size: 20px;
        line-height: 28px;
    }

    .community-subtitle {
        font-size: 13px;
        line-height: 20px;
    }

    .card-sec {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 320px;
    }

    .membership-title {
        width: auto;
        font-size: 16px;
        line-height: 22px;
    }

    .membership-subtitle {
        width: auto;
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 375px) {
    .community-title {
        font-size: 18px;
        line-height: 26px;
    }

    .community-subtitle {
        font-size: 12.5px;
    }

    .card {
        max-width: 300px;
        padding: 18px;
    }

    .membership-title {
        font-size: 15px;
    }

    .membership-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .community-title {
        font-size: 16px;
        line-height: 24px;
    }

    .community-subtitle {
        font-size: 12px;
        line-height: 18px;
    }

    .card {
        max-width: 100%;
        padding: 16px;
    }

    .membership-title {
        font-size: 14px;
        line-height: 20px;
    }

    .membership-subtitle {
        font-size: 11.5px;
        line-height: 17px;
    }
}




/* unlock section */

.unlock-section {
    margin-top: 40px;
}

.unlock-sec {
    align-items: center;
    gap: 60px;
}

.unlock-maintitle {
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
    color: #4D4D4D;
}

.unlock-subtitle {
    font-size: 13px;
    line-height: 20px;
    color: #717171;
    margin-top: 16px;
}

.learnmore-btn {
    margin-top: 22px;
    padding: 10px 22px;
    background-color: #4CAF4F;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.learnmore-btn:hover {
    background-color: #43a047;
}

/* unlock section responsive */
@media (max-width: 992px) {
    .unlock-sec {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

}

@media (max-width:768px) {

    .unlock-subtitle {
        text-align: left;
    }

    .unlock-maintitle {
        text-align: center;
        font-size: 23px;
    }
}

@media (max-width: 576px) {
    .unlock-maintitle {
        font-size: 22px;
        line-height: 30px;
    }

    .unlock-subtitle {
        font-size: 12px;
    }

    .learnmore-btn {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .unlock-section {
        margin-top: 45px;
    }

    .unlock-sec {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }



    .unlock-maintitle {
        font-size: 20px;
        line-height: 28px;
    }

    .unlock-subtitle {
        font-size: 12px;
        line-height: 18px;
        text-align: left;
    }

    .learnmore-btn {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 320px) {


    .unlock-maintitle {
        font-size: 16px;
        line-height: 22px;
    }

    .unlock-subtitle {
        font-size: 11px;
        line-height: 16px;
        text-align: left;
    }

    .learnmore-btn {
        font-size: 12px;
        padding: 10px;
    }
}




/* acheivement section */
.achievements-sec {
    background-color: #F5F7FA;
    padding: 60px 0;
    margin-top: 40px;
}

.achievements-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.achievements-title {
    max-width: 380px;
}

.achievements-maintitle {
    font-size: 25px;
    font-weight: 600;
    color: #4D4D4D;
}

.achievements-subtitle {
    color: #4CAF4F;
}

.achievements-sentence {
    font-size: 12px;
    color: #18191F;
    margin-top: 10px;
}

.achievements-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.stat-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-item img {
    width: 33px;
}

.achievements-name {
    font-size: 19px;
    font-weight: 900;
    color: #4D4D4D;
}

.achievements-member {
    font-size: 11px;
    color: #717171;
}

/* achievements section responsive */

@media (max-width: 992px) {
    .achievements-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .achievements-title {
        max-width: 100%;
    }

    .achievements-group {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .stat-item {
        justify-content: center;
    }
}

@media (max-width:768) {
    .achievements-group {
        grid-template-columns: 1fr 1fr;

    }

}

@media (max-width: 576px) {
    .achievements-group {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achievements-maintitle {
        font-size: 20px;
        line-height: 28px;
    }

    .achievements-name {
        font-size: 18px;
    }
}


/* calender section */
.calender-sec {
    margin-top: 40px;
    padding: 0 50px;
    align-items: center;
    gap: 40px;
}



.calender-heading {
    max-width: 460px;
}

.calender-maintitle {
    font-weight: 600;
    font-size: 25px;
    line-height: 31px;
    color: #4D4D4D;
}

.calender-subtitle {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #717171;
    margin-top: 16px;
}

.learnmore-btn2 {
    margin-top: 20px;
    padding: 10px 22px;
    border-radius: 3px;
    background-color: #4CAF4F;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}


/* calender section responsive */
@media (max-width:768px) {

    .calender-sec {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 25px;
    }

    .calender-sec img {
        display: block;
        margin: 0 auto;
    }

    .calender-heading {
        width: 100%;
        text-align: left;
    }

    .calender-subtitle {
        text-align: left;
    }

    .learnmore-btn2 {
        display: block;
        margin: 20px auto 0 auto;
    }

    .calender-maintitle {
        text-align: center;
        font-size: 23px;
    }
}


@media (max-width: 425px) {
    .calender-sec {
        flex-direction: column;
        padding: 0 16px;
        text-align: center;
    }

    .calender-maintitle {
        font-size: 20px;
        line-height: 28px;
    }

    .calender-subtitle {
        font-size: 13px;
        line-height: 20px;
    }

    .learnmore-btn2 {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .calender-sec img {
        max-width: 260px;
    }

    .calender-maintitle {
        font-size: 18px;
        line-height: 26px;
    }

    .calender-subtitle {
        font-size: 12.5px;
    }

    .learnmore-btn2 {
        font-size: 12.5px;
    }
}

@media (max-width: 320px) {
    .calender-sec img {
        max-width: 220px;
    }

    .calender-maintitle {
        font-size: 16px;
        line-height: 24px;
    }

    .calender-subtitle {
        font-size: 12px;
        line-height: 18px;
    }

    .learnmore-btn2 {
        font-size: 12px;
        padding: 10px;
    }
}

/* customer section */

.customer-sec {
    background-color: #F5F7FA;
    padding: 50px 0px;
    margin-top: 40px;
}

.customer-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.customer-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #717171;
    margin-bottom: 18px;
}

.customer-name {
    font-size: 18px;
    font-weight: 600;
    color: #4CAF4F;
    margin-bottom: 4px;
}

.customer-paragraph {
    font-size: 14px;
    color: #89939E;
    margin-bottom: 20px;
}

.meet-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.customer-content {
    font-size: 15px;
    font-weight: 600;
    color: #4CAF4F;
}

.meet-all img {
    width: 16px;
}

/* customer section responsive */
@media (min-width: 1440px) {
    .customer-sec {
        padding: 80px 120px;
    }
}


@media (max-width: 768px) {
    .customer-sec {
        padding: 50px 40px;
        margin-top: 30px;
    }

    .customer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .customer-subtitle {

        text-align: left;
    }


    .customer-subsec {
        max-width: 100%;
    }

    .meet-all {
        justify-content: center;
    }
}

@media (max-width: 425px) {
    .customer-sec {
        padding: 40px 20px;
        margin-top: 20px;
    }

    .customer-subtitle {
        font-size: 14px;
    }

    .customer-name {
        font-size: 16px;
    }
}

@media (max-width: 375px) {


    .customer-subtitle {
        font-size: 13.5px;
        text-align: left;
    }
}

@media (max-width: 320px) {

    .customer-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .customer-content {
        font-size: 14px;
    }
}


/* community-updates section */
.community-update {
    background: #ffffff;
    padding: 30px 0;
}

.update-head {
    margin: 0 auto;
    text-align: center;
}

.update-title {
    font-weight: 600;
    font-size: 25.06px;
    height: 31px;
    line-height: 30.63px;
    color: #4D4D4D;
}

.update-subtitle {
    font-size: 11.14px;
    font-weight: 400;
    line-height: 16.71px;
    text-align: center;
    align-items: center;
    color: #717171;
    margin-top: 12px;
    letter-spacing: 0%;
    /* margin-left: 175px; */
}

.update-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
}

.update-card {
    position: relative;
    width: 320px;
}

.update-card img {
    width: 100%;
    border-radius: 8px;
}

.card-2 {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    background: #F5F7FA;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.card-title2 {
    font-size: 12px;
    font-weight: 600;
    color: #717171;
    line-height: 19.49px;
}

.card-2 a {
    display: inline-flex;
    margin-top: 12px;
    color: #4CAF4F;
    font-weight: 600;
    text-decoration: none;
    padding: 5.57px;
    gap: 6px;
    font-size: 13.92px;
    line-height: 19.49px;
    letter-spacing: 0%;
    width: 69px;
    height: 20px;
    align-items: center;

}

/* community update section responsive */

@media (max-width: 768px) {
    .update-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }


    .update-card img {
        width: 100%;
        height: auto;
        display: block;
    }

}


@media (max-width:425px) {
    .update-title {
        text-align: center;
        font-size: 20px;
    }

    .update-subtitle {
        text-align: center;
        font-size: 10px;
    }

    .update-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .update-card {
        width: 100%;
        max-width: 270px;
    }

    .card-2 {
        width: 85%;
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width:375px) {
    .update-subtitle {
        text-align: center;
        align-items: center;

    }

    .update-card,
    .update-card:nth-child(3) {
        width: 100%;
        max-width: 270px;
        
    }

    .update-card img,
    .update-card:nth-child(3) img {
        width: 100%;
        height: auto;
        display: block;
    }
}




@media (max-width: 320px) {
    .update-card {
        max-width: 270px;
    }

    .card-2 {
        width: 92%;
        padding: 14px;
    }

    .card-title2 {
        font-size: 11px;
        line-height: 16px;
    }
}

/* suscipit section */
.suscipit-sec {
    background-color: #F5F7FA;
    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}


.suscipit-title {
    font-weight: 600;
    font-size: 44.55px;
    color: #263238;
    height: 106px;
    text-align: center;
}

.get-demo-btn {
    width: 124.25px;
    height: 36.49px;
    border-radius: 2.78px;
    padding-top: 9.74px;
    padding-bottom: 9.74px;
    padding-left: 22.27px;
    padding-right: 22.27px;
    background-color: #4CAF4F;
    color: #FFFFFF;
    font-size: 11.14px;
    line-height: 16.71px;
    font-weight: 500;
    border: none;
    margin-top: 20px;

}

.demo-btn-center {
    text-align: center;
}

/* suscipit section resposive */
@media (max-width:425px) {
    .suscipit-title {
        font-size: 30px;
    }

    .get-demo-btn {
        margin-bottom: 20px;
    }
}

@media (max-width:320px) {
    .suscipit-title {
        font-size: 25px;
    }

}

/* footer section */
.footer-sec {
    width: 100%;
    padding: 44.55px 114.85px;
    background-color: #263238;
}

.footer-padding {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-mt {
    margin-top: 12px;
}

.footer-copyright {
    width: 243.62px;
    height: 14px;
    font-weight: 400;
    font-size: 9.74px;
    line-height: 13.92px;
    color: #F5F7FA;
}

.social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.footer-subsec {
    display: flex;
    gap: 60px;
    margin-left: 0;

}

.company {

    margin-top: 0px;
}

.company-title {
    width: 111.37px;
    height: 20px;
    font-weight: 600;
    font-size: 13.92px;
    line-height: 19.49px;
    color: #FFFFFF;
    /* margin-top: 37px; */
}

.stay-title {
    font-weight: 600;
    font-size: 13.92px;
    line-height: 19.49px;
    color: #FFFFFF;
    /* margin-bottom: 34px; */

}

.company-li {
    width: 111.37px;
    height: 103.41px;
    gap: 8.35px;

}

.footer-subtitle {
    width: 111.37px;
    height: 14px;
    font-weight: 400;
    font-size: 9.74px;
    line-height: 13.92px;
    color: #F5F7FA;
    letter-spacing: 0%;
    margin-top: 6px;
}

.stay {
    width: 255px;
}

.input-wrapper {
    position: relative;
    margin-top: 20px;
}

.input-box {
    width: 100%;
    height: 35px;
    border-radius: 8px;
    border: none;
    padding: 0 10px 0 10px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    margin-bottom: 60px;
}

.input-box::placeholder {
    color: #D9DBE1;
}

.send-png {
    position: absolute;
    right: 12px;
    top: 21%;
    transform: translateY(-50%);
    cursor: pointer;
}


/* footer responsive */
@media (max-width: 768px) {

    .footer-padding {
        flex-direction: column;
        gap: 35px;
    }

    .footer-subsec {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .company {
        width: auto;
        min-width: 100px;
    }

    .stay {
        width: 40%;
        min-width: 160px;
        text-align: center;
    }


    .input-box {
        width: 100%;
    }
}

@media (max-width: 320px) {

    .footer-sec {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-padding {
        align-items: center;
    }

    .footer-left {
        text-align: center;
        align-items: center;
    }

    .footer-logo img {
        margin: 0 auto;
        display: block;
    }

    .social {
        justify-content: center;
    }

    .footer-subsec {
        justify-content: center;
        text-align: center;
        gap: 14px;
    }

    .company,
    .stay {
        align-items: center;
    }

    .company-li {
        padding: 0;
    }

    .input-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width:375px) {

    .footer-sec {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-padding {
        align-items: center;
    }

    .footer-left {
        text-align: center;
        align-items: center;
    }

    .footer-logo img {
        margin: 0 auto;
        display: block;
    }

    .social {
        justify-content: center;
    }

}

@media (max-width:425px) {

    .footer-sec {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-padding {
        align-items: center;
    }

    .send-png {
        margin-top: 10px;
    }

    .footer-left {
        text-align: center;
        align-items: center;
    }

    .footer-logo img {
        margin: 0 auto;
        display: block;
    }

    .social {
        justify-content: center;
    }

}


@media (max-width: 992px) {


    .lessons .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .heading,
    .sub-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .lesson-img {
        width: 220px;
    }



}

@media (max-width: 480px) {


    .heading,
    .sub-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .lesson-img {
        width: 180px;
    }

    .reg-now-btn,
    .register-button {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 992px) {

    .d-flex {
        /* flex-direction: column; */
        text-align: center;
        gap: 30px;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }


    .achievements-group {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }


    .update-cards {
        flex-wrap: wrap;
        justify-content: center;
    }


}

@media (max-width: 576px) {

    .container {
        padding: 0 6px;
    }

    .heading,
    .sub-heading {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .lesson-img {
        width: 180px;
    }

    .reg-now-btn,
    .register-button,
    .learnmore-btn,
    .learnmore-btn2,
    .get-demo-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-padding {
        flex-direction: column;
        text-align: center;
    }

    .footer-subsec {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .input-box {
        margin-bottom: 0;
    }
}