body {
    margin: 0;
    padding: 0;

    background:
        radial-gradient(
            circle at 5% 65%,
            rgba(72, 120, 30, 0.25),
            transparent 32%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(70, 70, 50, 0.12),
            transparent 35%
        ),
        #181919;

    font-family: Arial, sans-serif;
}

/* =========================================
   OUR HEADER
========================================= */

.our_header {
    position: sticky;
    top: 0;
    left: 0;
    background: #012D01 ;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    z-index: 1050;
}


/* =========================================
   NAVIGATION
========================================= */

.our_header .our_header_nav {
    min-height: 118px;

    padding: 0;
}


/* =========================================
   LOGO
========================================= */

.our_header .our_header_logo {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-size: 29px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;
}

.our_header .our_header_logo_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #f2ff22;

    font-size: 38px;
}


/* =========================================
   MENU
========================================= */

.our_header .our_header_menu {
    display: flex;
    align-items: center;

    gap: 18px;
}

.our_header .our_header_menu .nav-link {
    padding: 8px 10px;

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 600;

    line-height: 1;

    transition: opacity 0.3s ease;
}

.our_header .our_header_menu .nav-link:hover,
.our_header .our_header_menu .nav-link.active {
    color: #ffffff !important;

    opacity: 0.75;
}


/* =========================================
   CONTACT
========================================= */

.our_header .our_header_contact {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-right: 27px;
}

.our_header .our_header_phone_icon {
    width: 57px;
    height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    color: #ffffff;

    font-size: 21px;
}

.our_header .our_header_phone {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.our_header .our_header_phone span {
    color: #ffffff;

    font-size: 13px;
    font-weight: 500;
}

.our_header .our_header_phone a {
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================
   HEADER CTA
========================================= */

.our_header .our_header_cta {
    min-width: 197px;
    min-height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    background: #edff20;

    color: #151515;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.our_header .our_header_cta:hover {
    background: #ffffff;

    color: #151515;

    transform: translateY(-2px);
}


/* =========================================
   MOBILE TOGGLER
========================================= */

.our_header .our_header_toggler {
    border: 1px solid rgba(255, 255, 255, 0.7);

    padding: 7px;
}

.our_header .our_header_toggler:focus {
    box-shadow: none;
}

.our_header .our_header_toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .our_header .our_header_menu {
        gap: 5px;
    }

    .our_header .our_header_contact {
        margin-right: 15px;
    }

    .our_header .our_header_phone_icon {
        width: 50px;
        height: 50px;
    }

    .our_header .our_header_cta {
        min-width: 165px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .our_header .our_header_nav {
        min-height: 90px;

        padding: 15px 0;
    }

    .our_header .our_header_logo {
        font-size: 26px;
    }

    .our_header .our_header_logo_icon {
        font-size: 34px;
    }

    .our_header #ourHeaderMenu {
        padding: 20px 0;
    }

    .our_header .our_header_menu {
        align-items: flex-start;

        gap: 3px;

        margin-bottom: 20px !important;
    }

    .our_header .our_header_menu .nav-link {
        padding: 10px 0;
    }

    .our_header .our_header_contact {
        margin: 15px 0 20px;
    }

    .our_header .our_header_cta {
        width: 100%;

        min-height: 50px;
    }

}

/* =========================================
   OUR HERO
========================================= */

.our_hero {
    position: relative;

    width: 100%;

    min-height: 790px;

    overflow: hidden;

    background: #F6F6EC;

    color: #ffffff;

    padding: 85px 0 75px;
}


/* =========================================
   HERO CONTENT
========================================= */

.our_hero .our_hero_content {
    position: relative;
    z-index: 5;

    padding: 40px 25px 20px 0;
}


/* =========================================
   BADGE
========================================= */

.our_hero .our_hero_badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 24px;

    margin-bottom: 25px;

    border: 1px solid #012D01;

    border-radius: 30px;

    color: #012D01;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 2px;
}


/* =========================================
   TITLE
========================================= */

.our_hero .our_hero_title {
    max-width: 680px;

    margin: 0 0 25px;

    color: #006400;

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -2px;
}

.our_hero .our_hero_title span {
    display: block;
}


/* =========================================
   DESCRIPTION
========================================= */

.our_hero .our_hero_description {
    max-width: 620px;

    margin: 0 0 40px;

    color: #012D01;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================
   CTA
========================================= */

.our_hero .our_hero_button {
    min-width: 245px;
    min-height: 58px;
    border:1px solid #006400;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 30px;

    background: #ffffff;

    color: #012D01;

    border-radius: 32px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.our_hero .our_hero_button:hover {
    background: #edff20;

    color: #151515;

    transform: translateY(-3px);
}


/* =========================================
   RATING
========================================= */

.our_hero .our_hero_rating {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 80px;
}


/* =========================================
   AVATARS
========================================= */

.our_hero .our_hero_avatars {
    display: flex;
    align-items: center;
}

.our_hero .our_hero_avatar {
    position: relative;

    width: 57px;
    height: 57px;

    margin-left: -10px;

    border: 3px solid #ffffff;

    border-radius: 50%;

    overflow: hidden;

    background: #dddddd;
}

.our_hero .our_hero_avatar:first-child {
    margin-left: 0;
}

.our_hero .our_hero_avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.our_hero .our_hero_avatar_more {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #080808;

    color: #ffffff;

    font-size: 27px;
    font-weight: 400;
}


/* =========================================
   RATING CONTENT
========================================= */

.our_hero .our_hero_rating_content {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.our_hero .our_hero_stars {
    color: #012D01;

    font-size: 18px;

    letter-spacing: 2px;
}

.our_hero .our_hero_rating_content span {
    color: #012D01;

    font-size: 13px;
}


/* =========================================
   FORM WRAPPER
========================================= */

.our_hero .our_hero_form_wrapper {
    position: relative;

    z-index: 5;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   FORM CARD
========================================= */

.our_hero .our_hero_form {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 495px;

    padding: 38px 40px 35px;

    background: #ffffff;

    color: #111111;

    border-radius: 19px;

    box-shadow:
        0 28px 35px rgba(87, 24, 34, 0.28);
}


/* =========================================
   FORM HEADING
========================================= */

.our_hero .our_hero_form_heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 25px;
}

.our_hero .our_hero_form_heading h2 {
    margin: 0 0 5px;

    color: #080808;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.1;
}

.our_hero .our_hero_form_heading p {
    margin: 0;

    color: #222222;

    font-size: 14px;
}


/* =========================================
   HAND ICON
========================================= */

.our_hero .our_hero_hand {
    color: #efff16;

    -webkit-text-stroke: 2px #222222;

    font-size: 48px;

    transform: rotate(-8deg);
}


/* =========================================
   INPUT
========================================= */

.our_hero .our_hero_input {
    margin-bottom: 16px;
}

.our_hero .our_hero_input input {
    width: 100%;
    height: 58px;

    padding: 0 30px;

    background: #ffffff;

    color: #222222;

    border: 1px solid #d3d3d3;

    border-radius: 30px;

    outline: none;

    font-size: 14px;

    transition: border-color 0.3s ease;
}

.our_hero .our_hero_input input:focus {
    border-color: #ec5a79;

    box-shadow: none;
}

.our_hero .our_hero_input input::placeholder {
    color: #888888;
}


/* =========================================
   CONTACT METHOD
========================================= */

.our_hero .our_hero_consult {
    margin: 20px 0 25px;
}

.our_hero .our_hero_consult strong {
    display: block;

    margin-bottom: 12px;

    color: #161616;

    font-size: 14px;
}

.our_hero .our_hero_radio_group {
    display: flex;
    align-items: center;

    gap: 20px;
}

.our_hero .our_hero_radio_group label {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #333333;

    font-size: 14px;

    cursor: pointer;
}

.our_hero .our_hero_radio_group input {
    width: 21px;
    height: 21px;

    margin: 0;

    accent-color: #012D01;
}


/* =========================================
   SUBMIT
========================================= */

.our_hero .our_hero_submit {
    width: 100%;
    height: 57px;

    border: 0;

    background: #edff20;

    color: #151515;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.our_hero .our_hero_submit:hover {
    background: #dff000;

    transform: translateY(-2px);
}


/* =========================================
   DECORATIVE ARROW
========================================= */

.our_hero .our_hero_arrow_top {
    position: absolute;

    z-index: 2;

    width: 150px;
    height: 100px;

    left: -15px;
    top: 65px;

    overflow: visible;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.our_hero .our_hero_shape {
    position: absolute;

    z-index: 1;

    display: block;
}

.our_hero .our_hero_shape_one {
    width: 43px;
    height: 65px;

    right: -20px;
    top: 53%;

    background: rgba(255, 255, 255, 0.28);

    transform: rotate(-35deg);

    clip-path: polygon(
        50% 0,
        100% 25%,
        100% 75%,
        50% 100%,
        0 75%,
        0 25%
    );
}

.our_hero .our_hero_shape_two {
    width: 40px;
    height: 40px;

    left: 58%;
    bottom: 115px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.5) 2px,
            transparent 3px
        );

    background-size: 8px 8px;

    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .our_hero {
        min-height: 720px;

        padding: 70px 0;
    }

    .our_hero .our_hero_title {
        font-size: 55px;
    }

    .our_hero .our_hero_form {
        max-width: 450px;
    }

    .our_hero .our_hero_form_wrapper {
        min-height: 580px;
    }

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_hero {
        padding: 65px 0 80px;
    }

    .our_hero .our_hero_content {
        padding: 0;

        text-align: center;
    }

    .our_hero .our_hero_badge {
        margin-bottom: 22px;
    }

    .our_hero .our_hero_title {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;

        font-size: 50px;
    }

    .our_hero .our_hero_description {
        margin-left: auto;
        margin-right: auto;
    }

    .our_hero .our_hero_rating {
        justify-content: center;

        margin-top: 55px;
    }

    .our_hero .our_hero_form_wrapper {
        min-height: auto;

        margin-top: 65px;
    }

    .our_hero .our_hero_arrow_top {
        left: 10%;
        top: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_hero {
        padding: 50px 0 65px;
    }

    .our_hero .our_hero_badge {
        padding: 6px 15px;

        font-size: 10px;

        letter-spacing: 1.4px;
    }

    .our_hero .our_hero_title {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .our_hero .our_hero_description {
        font-size: 15px;

        line-height: 1.6;
    }

    .our_hero .our_hero_button {
        min-width: 210px;
        min-height: 53px;
    }

    .our_hero .our_hero_rating {
        gap: 12px;

        margin-top: 45px;
    }

    .our_hero .our_hero_avatar {
        width: 45px;
        height: 45px;

        margin-left: -8px;

        border-width: 2px;
    }

    .our_hero .our_hero_avatar_more {
        font-size: 21px;
    }

    .our_hero .our_hero_stars {
        font-size: 14px;
    }

    .our_hero .our_hero_rating_content span {
        font-size: 11px;
    }

    .our_hero .our_hero_form_wrapper {
        margin-top: 50px;
    }

    .our_hero .our_hero_form {
        padding: 28px 20px 25px;

        border-radius: 16px;
    }

    .our_hero .our_hero_form_heading h2 {
        font-size: 29px;
    }

    .our_hero .our_hero_form_heading p {
        font-size: 12px;
    }

    .our_hero .our_hero_hand {
        font-size: 38px;
    }

    .our_hero .our_hero_input input {
        height: 53px;

        padding: 0 22px;
    }

    .our_hero .our_hero_submit {
        height: 53px;
    }

    .our_hero .our_hero_arrow_top {
        width: 100px;

        left: 0;
        top: 15px;
    }

}

/* =========================================
   HOW IT WORKS
========================================= */

.how_it_works {
    position: relative;
    width: 100%;

    padding: 90px 0 100px;

    background: #EFF1FF;

    color: #ffffff;
}


/* =========================================
   SECTION HEADING
========================================= */

.how_it_works .how_it_works_heading {
    margin-bottom: 50px;

    text-align: center;
}

.how_it_works .how_it_works_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;

    padding: 8px 28px;

    border: 1px solid #012D01;
    border-radius: 30px;

    color: #012D01;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2px;

    line-height: 1.4;
}

.how_it_works .how_it_works_title {
    margin: 25px 0 0;

    color: #006400;

    font-size: clamp(42px, 5vw, 65px);
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -2px;
}


/* =========================================
   CARD
========================================= */

.how_it_works .how_it_works_card {
    position: relative;

    min-height: 450px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 38px 35px 35px;

    background: #012D01;

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;

    color: #ffffff;

    text-align: center;

    overflow: hidden;

    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.how_it_works .how_it_works_card:hover {
    background: #EEFCEE;

    border-color: #006400;

    color: #111111;

    transform: translateY(-5px);

    box-shadow: 0 20px 35px rgba(73, 26, 31, 0.18);
}


/* =========================================
   STEP NUMBER
========================================= */

.how_it_works .how_it_works_number {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.3;

    text-decoration: underline;

    transition: color 0.35s ease;
}

.how_it_works .how_it_works_card:hover
.how_it_works_number {
    color: #111111;
}


/* =========================================
   CARD TITLE
========================================= */

.how_it_works .how_it_works_card h3 {
    min-height: 48px;

    margin: 0;

    color: #ffffff;

    font-size: 23px;
    font-weight: 700;

    line-height: 1.3;

    transition: color 0.35s ease;
}

.how_it_works .how_it_works_card:hover h3 {
    color: #111111;
}


/* =========================================
   ICON CIRCLE
========================================= */

.how_it_works .how_it_works_icon {
    width: 190px;
    height: 190px;

    margin: 25px 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.13);

    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 50%;

    color: #ffffff;

    font-size: 72px;

    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
}


/* Icon when card is hovered */

.how_it_works .how_it_works_card:hover
.how_it_works_icon {
    background: #ffffff;

    border-color: #111111;

    color: #111111;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.how_it_works .how_it_works_card p {
    max-width: 380px;

    margin: auto 0 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.65;

    transition: color 0.35s ease;
}

.how_it_works .how_it_works_card:hover p {
    color: #111111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .how_it_works {
        padding: 75px 0 80px;
    }

    .how_it_works .how_it_works_heading {
        margin-bottom: 40px;
    }

    .how_it_works .how_it_works_card {
        min-height: 430px;
    }

    .how_it_works .how_it_works_icon {
        width: 165px;
        height: 165px;

        font-size: 60px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .how_it_works {
        padding: 60px 0 70px;
    }

    .how_it_works .how_it_works_badge {
        min-width: auto;

        padding: 7px 22px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .how_it_works .how_it_works_title {
        margin-top: 20px;

        font-size: 38px;

        letter-spacing: -1px;
    }

    .how_it_works .how_it_works_card {
        min-height: 410px;

        padding: 30px 25px;
    }

    .how_it_works .how_it_works_number {
        font-size: 18px;
    }

    .how_it_works .how_it_works_card h3 {
        min-height: auto;

        font-size: 21px;
    }

    .how_it_works .how_it_works_icon {
        width: 145px;
        height: 145px;

        margin: 22px 0;

        font-size: 52px;
    }

    .how_it_works .how_it_works_card p {
        font-size: 14px;

        line-height: 1.6;
    }

}

/* =========================================
   OUR VIDEO
========================================= */

.our_video {
    position: relative;

    width: 100%;

    padding: 70px 0 85px;

    background: #F6F6EC;

    overflow: hidden;
}


/* =========================================
   VIDEO WRAPPER
========================================= */

.our_video_wrapper .how_it_works_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 8px 28px;
    border: 1px solid #012D01;
    border-radius: 30px;
    color: #012D01;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.4;
}

.our_video_wrapper .how_it_works_title {
    margin: 25px 0 0;
    color: #006400;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 50px;
}

.our_video .our_video_wrapper {
    position: relative;

    width: 100%;
    text-align: center;
    overflow: hidden;

    border-radius: 30px;
}


/* =========================================
   VIDEO IMAGE
========================================= */

.our_video .our_video_image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 7;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/video-bg.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
}


/* =========================================
   DARK OVERLAY
========================================= */

.our_video .our_video_image::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.08);

    pointer-events: none;
}


/* =========================================
   PLAY BUTTON
========================================= */

.our_video .our_video_play {
    position: relative;

    z-index: 2;

    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: rgba(255, 255, 255, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.75);

    border-radius: 50%;

    color: #ffffff;

    cursor: pointer;

    backdrop-filter: blur(2px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   INNER PLAY CIRCLE
========================================= */

.our_video .our_video_play_icon {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 48px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   PLAY ICON
========================================= */

.our_video .our_video_play_icon i {
    display: block;

    margin-left: 6px;

    line-height: 1;
}


/* =========================================
   PLAY BUTTON HOVER
========================================= */

.our_video .our_video_play:hover {
    background: rgba(255, 255, 255, 0.30);

    transform: scale(1.06);

    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.08);
}

.our_video .our_video_play:hover
.our_video_play_icon {
    background: #edff20;

    border-color: #edff20;

    color: #111111;

    transform: scale(1.04);
}


/* =========================================
   VIDEO MODAL
========================================= */

.our_video_modal .modal-dialog {
    max-width: 1100px;
}

.our_video_modal .modal-content {
    overflow: hidden;

    background: #111111;

    border: 0;

    border-radius: 15px;
}

.our_video_modal .modal-header {
    padding: 15px 20px;

    background: #111111;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.our_video_modal .modal-title {
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}

.our_video_modal .btn-close {
    filter: invert(1);

    opacity: 1;
}


/* =========================================
   MODAL BODY
========================================= */

.our_video_modal .modal-body {
    padding: 0;

    background: #000000;
}


/* =========================================
   YOUTUBE EMBED
========================================= */

.our_video_modal .our_video_embed {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #000000;
}

.our_video_modal .our_video_embed iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_video {
        padding: 60px 0 70px;
    }

    .our_video .our_video_wrapper {
        border-radius: 24px;
    }

    .our_video .our_video_image {
        aspect-ratio: 16 / 8;
    }

    .our_video .our_video_play {
        width: 120px;
        height: 120px;
    }

    .our_video .our_video_play_icon {
        width: 90px;
        height: 90px;

        font-size: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_video {
        padding: 45px 0 60px;
    }

    .our_video .our_video_wrapper {
        border-radius: 18px;
    }

    .our_video .our_video_image {
        min-height: 240px;

        aspect-ratio: auto;
    }

    .our_video .our_video_play {
        width: 90px;
        height: 90px;
    }

    .our_video .our_video_play_icon {
        width: 68px;
        height: 68px;

        font-size: 30px;
    }

    .our_video .our_video_play_icon i {
        margin-left: 4px;
    }

    .our_video_modal .modal-dialog {
        margin: 10px;
    }

    .our_video_modal .modal-header {
        padding: 12px 15px;
    }

    .our_video_modal .modal-title {
        font-size: 15px;
    }

}

/* =========================================
   OUR IDEA
========================================= */

.our_idea {
    position: relative;

    width: 100%;

    padding: 100px 0 110px;
    background: #EFF1FF;
    color: #111111;

    overflow: hidden;
}


/* =========================================
   SECTION HEADING
========================================= */

.our_idea .our_idea_heading {
    max-width: 950px;

    margin: 0 auto 42px;

    text-align: center;
}

.our_idea .our_idea_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 27px;

    border: 1px solid #012D01 ;

    border-radius: 30px;

    color: #012D01;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.8px;
}

.our_idea .our_idea_heading h2 {
    margin: 24px 0 20px;

    color: #006400;

    font-size: clamp(42px, 5vw, 62px);
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -2px;
}

.our_idea .our_idea_heading h2 span {
    display: block;
}

.our_idea .our_idea_heading p {
    max-width: 800px;

    margin: 0 auto;

    font-size: 15px;
    color:#012D01;

    line-height: 1.7;
}


/* =========================================
   LEFT COLUMN
========================================= */

.our_idea .our_idea_left {
    position: relative;

    z-index: 2;
}


/* =========================================
   LEFT IMAGE
========================================= */

.our_idea .our_idea_image {
    width: 100%;

    aspect-ratio: 1.45 / 1;

    overflow: hidden;

    border-radius: 18px;
}

.our_idea .our_idea_image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.our_idea .our_idea_image:hover img {
    transform: scale(1.04);
}


/* =========================================
   CHECK LIST
========================================= */

.our_idea .our_idea_list {
    list-style: none;

    margin: 18px 0 0;

    padding: 0;
}

.our_idea .our_idea_list li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 12px;

    color: #012D01;

    font-size: 14px;

    line-height: 1.5;
}

.our_idea .our_idea_list li:last-child {
    margin-bottom: 0;
}

.our_idea .our_idea_list li i {
    flex: 0 0 auto;

    color: #91c93e;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   RIGHT PANEL
========================================= */

.our_idea .our_idea_panel {
    position: relative;

    min-height: 430px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #f3f8ff 0%,
            #eef6ff 42%,
            #edff20 100%
        );

    border-radius: 18px;
}


/* =========================================
   PERSON IMAGE
========================================= */

.our_idea .our_idea_person {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.our_idea .our_idea_person img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   STATS
========================================= */

.our_idea .our_idea_stats {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 25px 35px;
}

.our_idea .our_idea_stat {
    display: grid;
    grid-template-columns: 95px 1fr;

    align-items: center;

    gap: 8px;

    min-height: 125px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.our_idea .our_idea_stat:first-child {
    padding-top: 5px;
}

.our_idea .our_idea_stat:last-child {
    border-bottom: 0;

    padding-bottom: 5px;
}


/* =========================================
   STAT NUMBER
========================================= */

.our_idea .our_idea_stat_number {
    color: #050505;

    font-size: 48px;
    font-weight: 400;

    line-height: 1;
    letter-spacing: -2px;

    white-space: nowrap;
}

.our_idea .our_idea_stat_number span {
    font-size: 27px;

    vertical-align: top;
}


/* =========================================
   STAT TEXT
========================================= */

.our_idea .our_idea_stat_text {
    color: #222222;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_idea {
        padding: 80px 0 90px;
    }

    .our_idea .our_idea_heading {
        margin-bottom: 35px;
    }

    .our_idea .our_idea_heading h2 {
        font-size: 48px;
    }

    .our_idea .our_idea_panel {
        min-height: 400px;
    }

    .our_idea .our_idea_person {
        min-height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .our_idea {
        padding: 65px 0 75px;
    }

    .our_idea .our_idea_badge {
        padding: 7px 20px;

        font-size: 11px;

        letter-spacing: 1.4px;
    }

    .our_idea .our_idea_heading h2 {
        margin-top: 20px;

        font-size: 37px;

        letter-spacing: -1px;
    }

    .our_idea .our_idea_heading h2 span {
        display: inline;
    }

    .our_idea .our_idea_heading p {
        font-size: 14px;
    }

    .our_idea .our_idea_image {
        aspect-ratio: 1.6 / 1;
    }

    .our_idea .our_idea_panel {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .our_idea .our_idea_person {
        min-height: 330px;

        max-height: 400px;
    }

    .our_idea .our_idea_stats {
        padding: 15px 25px;
    }

    .our_idea .our_idea_stat {
        grid-template-columns: 90px 1fr;

        min-height: 105px;
    }

    .our_idea .our_idea_stat_number {
        font-size: 40px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_idea .our_idea_image {
        aspect-ratio: 1.4 / 1;

        border-radius: 15px;
    }

    .our_idea .our_idea_list li {
        font-size: 13px;
    }

    .our_idea .our_idea_person {
        min-height: 280px;
    }

    .our_idea .our_idea_stats {
        padding: 10px 20px;
    }

    .our_idea .our_idea_stat {
        grid-template-columns: 75px 1fr;

        gap: 10px;
    }

    .our_idea .our_idea_stat_number {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .our_idea .our_idea_stat_number span {
        font-size: 21px;
    }

    .our_idea .our_idea_stat_text {
        font-size: 12px;
    }

}

/* =========================================
   OUR EXPERT
========================================= */

.our_expert {
    position: relative;

    width: 100%;

    padding: 100px 0 110px;

    background:#F6F6EC;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================
   SUBTLE TEXTURE
========================================= */

.our_expert::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 4px 4px;

    opacity: 0.12;

    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.our_expert .our_expert_heading {
    position: relative;

    z-index: 2;

    margin-bottom: 50px;

    text-align: center;
}


/* =========================================
   BADGE
========================================= */

.our_expert .our_expert_badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 28px;

    border: 1px solid #012D01;

    border-radius: 30px;

    color: #012D01;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.8px;

    line-height: 1.4;
}


/* =========================================
   HEADING TITLE
========================================= */

.our_expert .our_expert_heading h2 {
    margin: 25px 0 0;

    color: #006400;

    font-size: clamp(44px, 5vw, 62px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -2px;
}

.our_expert .our_expert_heading h2 span {
    display: block;
}


/* =========================================
   CARD
========================================= */

.our_expert .our_expert_card {
    position: relative;

    z-index: 2;

    min-height: 235px;

    display: flex;

    align-items: center;

    padding: 26px 28px;

    background: #EEFCEE;

    border: 1px solid #012D01;

    border-radius: 18px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.our_expert .our_expert_card:hover {
    background: #DBFEDB;
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}


/* =========================================
   PERSON IMAGE
========================================= */

.our_expert .our_expert_image {
    flex: 0 0 180px;

    width: 180px;
    height: 180px;

    overflow: hidden;

    border-radius: 50%;

    background: #dfe8df;

    border: 3px solid rgba(255, 255, 255, 0.85);
}

.our_expert .our_expert_image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

.our_expert .our_expert_card:hover
.our_expert_image img {
    transform: scale(1.06);
}


/* =========================================
   CONTENT
========================================= */

.our_expert .our_expert_content {
    flex: 1;

    min-width: 0;

    padding-left: 28px;
}


/* =========================================
   TOP AREA
========================================= */

.our_expert .our_expert_top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}


/* =========================================
   ROLE
========================================= */

.our_expert .our_expert_role {
    display: block;

    margin-bottom: 7px;

    color: #006400;

    font-size: 13px;
    font-weight: 500;
}


/* =========================================
   NAME
========================================= */

.our_expert .our_expert_top h3 {
    margin: 0;

    color: #012D01;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   SOCIAL
========================================= */

.our_expert .our_expert_social {
    display: flex;

    align-items: center;

    gap: 15px;
}

.our_expert .our_expert_social a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    color: #012D01;

    font-size: 16px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.our_expert .our_expert_social a:hover {
    color: #edff20;

    transform: translateY(-2px);
}


/* =========================================
   DIVIDER
========================================= */

.our_expert .our_expert_line {
    width: 100%;

    height: 1px;

    margin: 18px 0 18px;

    background: #012D01;
}


/* =========================================
   DESCRIPTION
========================================= */

.our_expert .our_expert_content p {
    max-width: 390px;

    margin: 0;

    color: #012D01;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_expert {
        padding: 80px 0 90px;
    }

    .our_expert .our_expert_heading {
        margin-bottom: 40px;
    }

    .our_expert .our_expert_heading h2 {
        font-size: 48px;
    }

    .our_expert .our_expert_card {
        min-height: 220px;

        padding: 22px;
    }

    .our_expert .our_expert_image {
        flex-basis: 150px;

        width: 150px;
        height: 150px;
    }

    .our_expert .our_expert_content {
        padding-left: 22px;
    }

    .our_expert .our_expert_top h3 {
        font-size: 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .our_expert {
        padding: 65px 0 75px;
    }

    .our_expert .our_expert_badge {
        padding: 7px 20px;

        font-size: 11px;

        letter-spacing: 1.4px;
    }

    .our_expert .our_expert_heading h2 {
        margin-top: 20px;

        font-size: 38px;

        letter-spacing: -1px;
    }

    .our_expert .our_expert_heading h2 span {
        display: inline;
    }

    .our_expert .our_expert_card {
        min-height: auto;

        align-items: flex-start;

        padding: 22px;
    }

    .our_expert .our_expert_image {
        flex-basis: 120px;

        width: 120px;
        height: 120px;
    }

    .our_expert .our_expert_content {
        padding-left: 18px;
    }

    .our_expert .our_expert_top h3 {
        font-size: 20px;
    }

    .our_expert .our_expert_role {
        font-size: 11px;
    }

    .our_expert .our_expert_social {
        gap: 8px;
    }

    .our_expert .our_expert_social a {
        width: 20px;
        height: 20px;

        font-size: 14px;
    }

    .our_expert .our_expert_line {
        margin: 14px 0;
    }

    .our_expert .our_expert_content p {
        font-size: 12px;

        line-height: 1.6;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_expert .our_expert_card {
        display: block;

        text-align: center;
    }

    .our_expert .our_expert_image {
        width: 130px;
        height: 130px;

        margin: 0 auto 22px;
    }

    .our_expert .our_expert_content {
        padding-left: 0;
    }

    .our_expert .our_expert_top {
        align-items: center;

        text-align: left;
    }

    .our_expert .our_expert_social {
        flex-shrink: 0;
    }

    .our_expert .our_expert_content p {
        max-width: none;

        text-align: left;
    }

}
/* =========================================
   OUR FAQ
========================================= */

.our_faq {
    position: relative;
    background: #F6F6EC;
    width: 100%;

    padding: 100px 0;

    color: #111111;

    overflow: hidden;
}


/* =========================================
   LEFT SIDE
========================================= */

.our_faq .our_faq_left {
    padding-right: 30px;
}


/* =========================================
   BADGE
========================================= */

.our_faq .our_faq_badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 23px;

    border: 1px solid #012D01;

    border-radius: 30px;

    color: #012D01;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================
   HEADING
========================================= */

.our_faq .our_faq_left h2 {
    margin: 22px 0 45px;

    color: #006400;

    font-size: clamp(48px, 5vw, 64px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================
   CONTACT
========================================= */

.our_faq .our_faq_contact {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}


/* =========================================
   CONTACT ICON
========================================= */

.our_faq .our_faq_contact_icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #edff20;
    border:1px solid #ccc;
    border-radius: 50%;

    color: #111111;

    font-size: 20px;
}


/* =========================================
   CONTACT TEXT
========================================= */

.our_faq .our_faq_contact_content {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.our_faq .our_faq_contact_content span {
    color: #012D01;

    font-size: 12px;

    line-height: 1.4;
}

.our_faq .our_faq_contact_content a {
    color: #012D01;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    transition: color 0.3s ease;
}

.our_faq .our_faq_contact_content a:hover {
    color: #80a900;
}


/* =========================================
   FAQ ACCORDION
========================================= */

.our_faq .our_faq_accordion {
    width: 100%;
}


/* =========================================
   FAQ ITEM
========================================= */

.our_faq .our_faq_item {
    margin-bottom: 5px;

    background: #ffffff;

    border: 1px solid #c8c8c8;

    border-radius: 16px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.our_faq .our_faq_item + .our_faq_item {
    margin-top: 0;
}


/* =========================================
   QUESTION
========================================= */

.our_faq .our_faq_question {
    margin: 0;
}


/* =========================================
   BUTTON
========================================= */

.our_faq .our_faq_button {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 23px 24px;

    background: #fdfdfd;

    border: 0;

    color: #012D01;

    font-family: inherit;

    font-size: 17px;

    font-weight: 600;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;

    box-shadow: none;
}

.our_faq .our_faq_button:hover {
    color: #111111;
}

.our_faq .our_faq_button:focus {
    outline: none;

    box-shadow: none;
}


/* =========================================
   FAQ ICON
========================================= */

.our_faq .our_faq_icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    color: #222222;

    font-size: 14px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


/* Plus visible by default */

.our_faq .our_faq_icon .bi-dash-lg {
    display: none;
}


/* =========================================
   ACTIVE FAQ
========================================= */

.our_faq .our_faq_button:not(.collapsed) {
    background: #fdfdfd;
}


/* Active icon */

.our_faq .our_faq_button:not(.collapsed) .our_faq_icon {
    background: #edff20;

    color: #111111;
}


/* Show minus */

.our_faq .our_faq_button:not(.collapsed)
.our_faq_icon .bi-plus-lg {
    display: none;
}

.our_faq .our_faq_button:not(.collapsed)
.our_faq_icon .bi-dash-lg {
    display: block;
}


/* =========================================
   ANSWER
========================================= */

.our_faq .our_faq_answer {
    padding: 0 24px 25px;

    color: #444444;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.8;

    background: #fdfdfd;
}


/* =========================================
   ACTIVE ITEM
========================================= */

.our_faq .our_faq_item:has(
    .our_faq_button:not(.collapsed)
) {
    border-color: #c5c5c5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_faq {
        padding: 80px 0;
    }

    .our_faq .our_faq_left {
        padding-right: 0;

        margin-bottom: 20px;
    }

    .our_faq .our_faq_left h2 {
        margin-bottom: 35px;

        font-size: 52px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .our_faq {
        padding: 65px 0 75px;
    }

    .our_faq .our_faq_left {
        text-align: left;
    }

    .our_faq .our_faq_badge {
        padding: 7px 18px;

        font-size: 10px;
    }

    .our_faq .our_faq_left h2 {
        margin: 20px 0 35px;

        font-size: 44px;

        letter-spacing: -1.5px;
    }

    .our_faq .our_faq_button {
        padding: 20px;

        font-size: 15px;
    }

    .our_faq .our_faq_answer {
        padding: 0 20px 22px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_faq .our_faq_left h2 {
        font-size: 40px;
    }

    .our_faq .our_faq_contact_icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 18px;
    }

    .our_faq .our_faq_contact_content a {
        font-size: 14px;
    }

    .our_faq .our_faq_button {
        padding: 18px;

        font-size: 14px;
    }

    .our_faq .our_faq_icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;
    }

}

/* =========================================
   OUR CLIENTS
========================================= */

.our_clients {
    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    overflow: hidden;
    border-top: 1px solid #ccc;
}


/* =========================================
   LOGO ROW
========================================= */

.our_clients .our_clients_inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    width: 100%;
}


/* =========================================
   LOGO
========================================= */

.our_clients .our_clients_logo {
    flex: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 0;

    height: 70px;
}

.our_clients .our_clients_logo img {
    display: block;

    width: auto;

    max-width: 150px;

    max-height: 55px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.9;

    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.our_clients .our_clients_logo:hover img {
    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.05);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_clients {
        padding: 45px 0;
    }

    .our_clients .our_clients_inner {
        flex-wrap: wrap;

        justify-content: center;

        gap: 30px 50px;
    }

    .our_clients .our_clients_logo {
        flex: 0 0 calc(33.333% - 40px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .our_clients {
        padding: 40px 0;
    }

    .our_clients .our_clients_inner {
        gap: 25px 20px;
    }

    .our_clients .our_clients_logo {
        flex: 0 0 calc(50% - 15px);

        height: 60px;
    }

    .our_clients .our_clients_logo img {
        max-width: 130px;

        max-height: 48px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_clients .our_clients_inner {
        gap: 20px;
    }

    .our_clients .our_clients_logo {
        flex: 0 0 100%;

        height: 55px;
    }

    .our_clients .our_clients_logo img {
        max-width: 145px;
    }

}

/* =========================================
   OUR FOOTER
========================================= */

.our_footer {
    position: relative;

    width: 100%;

    padding: 70px 0 20px 0;

    background:#012D01;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================
   SUBTLE TEXTURE
========================================= */

.our_footer::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.10) 1px,
            transparent 1px
        );

    background-size: 4px 4px;

    opacity: 0.12;

    pointer-events: none;
}


/* =========================================
   KEEP CONTENT ABOVE BACKGROUND
========================================= */

.our_footer .container {
    position: relative;

    z-index: 1;
}


/* =========================================
   LOGO
========================================= */

.our_footer .our_footer_logo {
    display: inline-block;

    margin-bottom: 20px;

    text-decoration: none;
}

.our_footer .our_footer_logo img {
    display: block;

    width: auto;

    max-width: 150px;

    height: auto;

    max-height: 55px;

    object-fit: contain;
}


/* =========================================
   ABOUT
========================================= */

.our_footer .our_footer_about {
    max-width: 310px;
}

.our_footer .our_footer_about p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.our_footer .our_footer_links h3,
.our_footer .our_footer_contact h3 {
    margin: 3px 0 24px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================
   LINKS
========================================= */

.our_footer .our_footer_links ul {
    list-style: none;

    margin: 0;

    padding: 0;
}

.our_footer .our_footer_links li {
    margin-bottom: 13px;
}

.our_footer .our_footer_links li:last-child {
    margin-bottom: 0;
}

.our_footer .our_footer_links a {
    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.our_footer .our_footer_links a:hover {
    color: #edff20;

    padding-left: 4px;
}


/* =========================================
   CONTACT
========================================= */

.our_footer .our_footer_contact_item {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}

.our_footer .our_footer_contact_item:last-child {
    margin-bottom: 0;
}


/* =========================================
   CONTACT ICON
========================================= */

.our_footer .our_footer_contact_icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #edff20;

    border-radius: 50%;

    color: #111111;

    font-size: 19px;
}


/* =========================================
   CONTACT TEXT
========================================= */

.our_footer .our_footer_contact_text {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.our_footer .our_footer_contact_text span {
    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;

    line-height: 1.4;
}

.our_footer .our_footer_contact_text a {
    color: #ffffff;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    transition: color 0.3s ease;
}

.our_footer .our_footer_contact_text a:hover {
    color: #edff20;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_footer {
        padding: 60px 0 65px;
    }

    .our_footer .our_footer_about {
        max-width: 350px;
    }

    .our_footer .our_footer_links h3,
    .our_footer .our_footer_contact h3 {
        margin-bottom: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .our_footer {
        padding: 55px 0 60px;
    }

    .our_footer .our_footer_about {
        max-width: 100%;
    }

    .our_footer .our_footer_logo img {
        max-width: 140px;
    }

    .our_footer .our_footer_links h3,
    .our_footer .our_footer_contact h3 {
        margin-bottom: 18px;

        font-size: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_footer {
        padding: 45px 0 50px;
    }

    .our_footer .our_footer_links .row {
        row-gap: 10px;
    }

    .our_footer .our_footer_contact_icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 17px;
    }

    .our_footer .our_footer_contact_text a {
        font-size: 14px;
    }

}

/* =========================================
   OUR PRICING
========================================= */

.our_pricing {
    width: 100%;

    padding: 80px 0 90px;

    color: #000000;
    background:#EFF1FF;

    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.our_pricing .our_pricing_heading {
    text-align: center;

    margin-bottom: 38px;
}


/* =========================================
   BADGE
========================================= */

.our_pricing .our_pricing_badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 6px 24px;

    border: 1px solid #012D01;

    border-radius: 50px;

    color: #012D01;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1.5px;

    line-height: 1.4;

    margin-bottom: 18px;
}


/* =========================================
   MAIN HEADING
========================================= */

.our_pricing .our_pricing_heading h2 {
    margin: 0;

    color: #006400;

    font-size: clamp(38px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.18;

    letter-spacing: -1.5px;
}


/* =========================================
   CARDS ROW
========================================= */

.our_pricing .our_pricing_cards {
    align-items: stretch;
}


/* =========================================
   CARD WRAPPER
========================================= */

.our_pricing .our_pricing_cards > div {
    display: flex;
}


/* =========================================
   PRICING CARD
========================================= */

.our_pricing .our_pricing_card {
    position: relative;

    width: 100%;

    min-height: 470px;

    border: 1px solid #c5c5c5;

    border-radius: 20px;

    background: #ffffff;

    overflow: hidden;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.3s ease;
}


/* =========================================
   HOVER STATE
   Lime effect appears ONLY on hover
========================================= */

.our_pricing .our_pricing_card:hover {
    border-color: #d7ef31;

    background:
        radial-gradient(
            circle at 100% 70%,
            rgba(215, 255, 0, 0.95) 0%,
            rgba(215, 255, 0, 0.72) 20%,
            rgba(215, 255, 0, 0.25) 42%,
            rgba(255, 255, 255, 0) 68%
        ),
        #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);

    transform: translateY(-3px);
}


/* =========================================
   CARD CONTENT
========================================= */

.our_pricing .our_pricing_card_content {
    position: relative;

    z-index: 2;

    padding: 28px 30px 30px;
}


/* =========================================
   TITLE
========================================= */

.our_pricing .our_pricing_title {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 16px;
}

.our_pricing .our_pricing_title i {
    color: #012D01;

    font-size: 22px;

    line-height: 1;
}

.our_pricing .our_pricing_title h3 {
    margin: 0;

    color: #012D01;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================
   DESCRIPTION
========================================= */

.our_pricing .our_pricing_description {
    max-width: 290px;

    min-height: 48px;

    margin: 0 0 18px;

    color: #555555;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   PRICE
========================================= */

.our_pricing .our_pricing_price {
    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-bottom: 2px;
}

.our_pricing .our_pricing_amount {
    color: #9dd34b;

    font-size: 46px;

    font-weight: 700;

    letter-spacing: -2px;

    line-height: 1;
}

.our_pricing .our_pricing_period {
    color: #111111;

    font-size: 15px;

    font-weight: 600;
}


/* =========================================
   PRICE NOTE
========================================= */

.our_pricing .our_pricing_note {
    margin: 5px 0 18px;

    color: #555555;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   PURCHASE BUTTON
========================================= */

.our_pricing .our_pricing_button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 45px;

    margin-bottom: 18px;

    border: 1px solid #012D01;

    border-radius: 30px;

    background: #eeeeee;

    color: #012D01;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.our_pricing .our_pricing_button:hover {
    background: #111111;

    border-color: #111111;

    color: #ffffff;
}


/* =========================================
   INCLUDES HEADING
========================================= */

.our_pricing .our_pricing_card h4 {
    margin: 0 0 14px;

    color: #111111;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================
   FEATURES
========================================= */

.our_pricing .our_pricing_features {
    list-style: none;

    margin: 0;

    padding: 0;
}

.our_pricing .our_pricing_features li {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 10px;

    color: #4b4b4b;

    font-size: 12px;

    line-height: 1.5;
}

.our_pricing .our_pricing_features li:last-child {
    margin-bottom: 0;
}


/* =========================================
   CHECK ICON
========================================= */

.our_pricing .our_pricing_features li i {
    flex: 0 0 auto;

    color: #9dd34b;

    font-size: 18px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_pricing {
        padding: 70px 0 75px;
    }

    .our_pricing .our_pricing_heading {
        margin-bottom: 32px;
    }

    .our_pricing .our_pricing_heading h2 {
        font-size: 40px;
    }

    .our_pricing .our_pricing_card {
        min-height: auto;
    }

    .our_pricing .our_pricing_card_content {
        padding: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .our_pricing {
        padding: 60px 0 65px;
    }

    .our_pricing .our_pricing_heading {
        margin-bottom: 30px;
    }

    .our_pricing .our_pricing_badge {
        padding: 6px 20px;

        font-size: 11px;
    }

    .our_pricing .our_pricing_heading h2 {
        font-size: 34px;

        line-height: 1.2;

        letter-spacing: -0.8px;
    }

    .our_pricing .our_pricing_card_content {
        padding: 25px 24px 28px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_pricing {
        padding: 50px 0 55px;
    }

    .our_pricing .our_pricing_heading h2 {
        font-size: 30px;
    }

    .our_pricing .our_pricing_card_content {
        padding: 23px 20px 25px;
    }

    .our_pricing .our_pricing_amount {
        font-size: 42px;
    }

}