/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*================ HERO =================*/

.hero-section {

    padding: 30px 0 100px;

    /* background: #fff; */

}

.hero-content {

    max-width: 900px;

    margin: auto;

}

.hero-content h1 {

    font-size: 90px;

    font-weight: 300;

    line-height: 1.05;

    color: #222;

}

.hero-content h1 span {

    color: #53be72;

    font-weight: 700;

}

.hero-content p {

    max-width: 700px;

    margin: 35px auto;

    color: #666;

    font-size: 24px;

    line-height: 1.7;

}

.hero-btns {

display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
    margin-bottom: 70px;

}

.hero-btn-primary {
    display: inline-block;
    background: #53be72 !important;
    color: #fff !important;
    border: 2px solid #53be72;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.hero-btn-primary:hover {
    background: #42ab60 !important;
    border-color: #42ab60;
    color: #fff !important;
}

.hero-btn-outline {
    display: inline-block;
    background: transparent;
    color: #53be72 !important;
    border: 2px solid #53be72 !important;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.hero-btn-outline:hover {
    background: #53be72;
    color: #fff !important;
}

.hero-counter {

    margin-top: 120px;

}

.counter-box {

    text-align: center;

}

.counter-box h2 {

    color: #53be72;

    font-size: 60px;

    font-weight: 700;

    margin-bottom: 5px;

}

.counter-box span {

    color: #666;

    font-size: 18px;

}

/*================ Responsive =================*/

@media(max-width:991px) {

    .hero-content h1 {

        font-size: 55px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-counter {

        margin-top: 70px;

        row-gap: 40px;

    }

}

@media(max-width:576px) {

    .hero-section {

        padding: 80px 0;

    }

    .hero-content h1 {

        font-size: 38px;

    }

    .hero-content p {

        font-size: 16px;

    }

    .hero-btns {

        flex-direction: column;

        align-items: center;

    }

    .hero-btn-primary,

    .hero-btn-outline {

        width: 250px;

    }

    .counter-box h2 {

        font-size: 38px;

    }

    .counter-box span {

        font-size: 15px;

    }

}



/*================ ABOUT =================*/
/*================ ABOUT SECTION =================*/

.about-section {

    background: #eef8ef;

    padding: 100px 0;

}

.about-content {

    /* max-width: 560px; */

}

.about-heading {

    font-size: 64px;
        font-weight: 300;
        line-height: 1.05;
        color: #222;
        margin-bottom: 40px;

}

.about-heading span {

    display: block;
        color: #58c17a;
        font-weight: 700;

}

.about-content p {

    font-size: 18px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
        max-width: 520px;

}

.video-wrapper {

    width: 330px;

    height: 560px;

    background: #000;

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    margin-left: auto;
    margin-right: 60px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.video-wrapper video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.play-btn {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 72px;

    height: 72px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #57c279;

    font-size: 28px;

    cursor: pointer;

}

.play-btn:hover {

    background: #57c279;

    color: #fff;

}

/* Responsive */

@media(max-width:991px) {

    .about-section {

        padding: 80px 0;

    }

    .about-content {

        max-width: 100%;

        text-align: center;

        margin-bottom: 60px;

    }

    .about-heading {

        font-size: 48px;

    }

    .about-content p {

        font-size: 17px;

    }

    .video-wrapper {

        margin: auto;

        width: 280px;

        height: 480px;

    }

}

@media(max-width:576px) {

    .about-heading {

        font-size: 38px;

    }

    .video-wrapper {

        width: 240px;

        height: 420px;

    }

}
/* about section end */

/*================ MISSION SECTION =================*/

.mission-section {

    background: linear-gradient(180deg, #5bc67c, #43af66);

    padding: 110px 0 90px;

    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;

    position: relative;

    overflow: hidden;

}

/*================ Left Content =================*/

.mission-content h2 {

    color: #fff;

    font-size: 68px;

    line-height: 1.05;

    font-weight: 300;

    margin-bottom: 25px;

}

.mission-content h2 span {

    display: block;

    font-weight: 700;

}

.title-line {

    width: 70px;

    height: 4px;

    background: #fff;

    border-radius: 20px;

    margin: 35px 0;

}

.mission-content p {

    max-width: 420px;

    color: #fff;

    font-size: 19px;

    line-height: 1.7;

}

/*================ Feature Box =================*/

.feature-list {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.feature-box {

    background: #fff;

    border-radius: 20px;

    padding: 24px 30px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.feature-box:hover {

    transform: translateX(8px);

}

.feature-box .icon {

    width: 42px;

    height: 42px;

    border: 2px solid #52be72;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #52be72;

    font-size: 22px;

    flex-shrink: 0;

}

.feature-box h5 {

    margin: 0;

    color: #2d2d2d;

    font-size: 22px;

    font-weight: 600;

}

/*================ Bottom =================*/

.mission-bottom {

    margin-top: 110px;

    position: relative;

}

.mission-logo {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background: #fff;

    padding: 10px;

    position: absolute;

    left: 50%;

    top: -75px;

    transform: translateX(-50%);

    z-index: 5;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}

.mission-logo img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

}

/*================ Cards =================*/

.info-card {

    background: #fff;

    border-radius: 35px;

    padding: 90px 40px 45px;

    min-height: 320px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

    transition: .35s;

}

.info-card:hover {

    transform: translateY(-8px);

}

.card-icon {

    font-size: 42px;

    color: #53be72;

    margin-bottom: 20px;

}

.info-card h3 {

    color: #53be72;

    font-size: 34px;

    margin-bottom: 20px;

}

.info-card p {

    color: #666;

    font-size: 18px;

    line-height: 1.7;

}

/*================ Responsive =================*/

@media(max-width:991px) {

    .mission-section {

        padding: 80px 0;

    }

    .mission-content {

        text-align: center;

        margin-bottom: 40px;

    }

    .title-line {

        margin: 25px auto;

    }

    .mission-content p {

        margin: auto;

    }

    .feature-box {

        padding: 20px;

    }

    .feature-box h5 {

        font-size: 18px;

    }

    .mission-bottom {

        margin-top: 90px;

    }

    .mission-logo {

        width: 120px;

        height: 120px;

        top: -60px;

    }

    .info-card {

        padding: 80px 30px 35px;

        min-height: auto;

        text-align: center;

    }

}

@media(max-width:576px) {

    .mission-content h2 {

        font-size: 42px;

    }

    .mission-content p {

        font-size: 16px;

    }

    .feature-box {

        flex-direction: column;

        text-align: center;

    }

    .feature-box h5 {

        font-size: 17px;

    }

    .mission-logo {

        width: 100px;

        height: 100px;

        top: -50px;

    }

    .info-card {

        padding: 70px 25px 30px;

    }

    .info-card h3 {

        font-size: 28px;

    }

    .info-card p {

        font-size: 16px;

    }

}

/* mission  */

/*================ PROCESS SECTION =================*/

.process-section {

    padding: 110px 0;

    background: #fff;

}

.process-title {

    font-size: 68px;

    font-weight: 300;

    color: #222;

    line-height: 1.05;

    margin-bottom: 20px;

}

.process-title span {

    display: block;

    color: #52be72;

    font-weight: 700;

}

.process-desc {

    max-width: 650px;

    margin: 0 auto 90px;

    color: #666;

    font-size: 20px;

    line-height: 1.7;

}

/*================ Timeline =================*/

.process-wrapper {

    position: relative;

}

.process-line {

    position: absolute;

    left: 12.5%;

    right: 12.5%;

    top: 25px;

    height: 2px;

    background: #52be72;

}

.process-item {

    position: relative;

    z-index: 2;

}

.step-number {

    width: 50px;

    height: 50px;

    background: #52be72;

    border-radius: 50%;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    font-size: 24px;

    font-weight: 700;

}

.process-item h4 {

    font-size: 26px;

    color: #444;

    margin-bottom: 15px;

}

.process-item p {

    color: #666;

    font-size: 15px;

    line-height: 1.7;

    max-width: 220px;

    margin: auto;

}

/*================ Responsive =================*/

@media(max-width:991px) {

    .process-title {

        font-size: 48px;

    }

    .process-desc {

        font-size: 17px;

        margin-bottom: 60px;

    }

    .process-line {

        display: none;

    }

    .process-item {

        margin-bottom: 40px;

    }

}

@media(max-width:576px) {

    .process-section {

        padding: 80px 0;

    }

    .process-title {

        font-size: 36px;

    }

    .process-item h4 {

        font-size: 20px;

    }

    .process-item p {

        font-size: 14px;

    }

    .step-number {

        width: 45px;

        height: 45px;

        font-size: 20px;

    }

}

/* process secrtion */

/*================ CTA SECTION =================*/

.cta-section {

    background: linear-gradient(135deg, #4dbc71, #45b86a);

    padding: 100px 0;

}

.cta-content {

    text-align: center;

    /* max-width: 900px; */

    margin: auto;

}

.cta-content h2 {

    color: #fff;

    font-size: 68px;

    font-weight: 300;

    line-height: 1.15;

}

.cta-content h2 strong {

    font-weight: 700;

}

.cta-content p {

    color: #fff;

    font-size: 22px;

    line-height: 1.7;

    margin: 35px auto 50px;

    max-width: 750px;

}

.cta-btns {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.cta-btn {

    min-width: 180px;

    padding: 14px 35px;

    font-size: 18px;

    border-radius: 10px;

    transition: .35s;

}

.btn-light {

    background: #fff;

    color: #49be71;

    border: none;

}

.btn-light:hover {

    background: #f2f2f2;

    color: #49be71;

}

.btn-outline-light {

    border: 2px solid #fff;

    color: #fff;

}

.btn-outline-light:hover {

    background: #fff;

    color: #49be71;

}

/*================ Responsive =================*/

@media(max-width:991px) {

    .cta-section {

        padding: 80px 0;

    }

    .cta-content h2 {

        font-size: 48px;

    }

    .cta-content p {

        font-size: 18px;

    }

}

@media(max-width:576px) {

    .cta-content h2 {

        font-size: 34px;

    }

    .cta-content p {

        font-size: 16px;

        margin: 25px auto 35px;

    }

    .cta-btn {

        width: 100%;

        max-width: 280px;

    }

}

/* cta section end */