a {
    text-decoration: none;
}

body {
    font-family: 'Carnero', sans-serif;

}

:root {
    --primary_color: #3DB555;
    /* --secondary_color: #28A9E0;
  --dark: #323232; */
}

/* Carnero Regular */
@font-face {
    font-family: "Carnero";
    src: url("./fonts/Carnero Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

/* Carnero SemiBold */
@font-face {
    font-family: "Carnero";
    src: url("./fonts/Carnero SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

/* Carnero Bold */
@font-face {
    font-family: "Carnero";
    src: url("./fonts/Carnero\ Bold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

/* header section */

.header-section {
    margin: 0 60px;
}

@media screen and (max-width:576px) {
    .header-section {
        margin: 20px;
    }
}

.header {
    padding: 20px 0;
}

@media screen and (max-width:576px) {
    .header {
        padding: 10px 0;
    }
}

.header .navbar-brand {
    width: 160px;
}

.modal-fullscreen .modal-content {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    float: right;
}

.modal-menu ul {
    list-style: none;
    padding-left: 0;
}

.modal-menu li {
    margin-bottom: 20px;
}

.modal-menu a {
    font-size: 24px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.modal-header {
    border-bottom: none;
}

.modal-header img {
    width: 160px;
}

.btn-close {
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    font-size: 30px;
}

/* header section ends */

/* banner section */

.banner-section {
    position: relative;
}

.banner-section .banner {
    margin: 0 60px;
    border-radius: 40px;
    overflow: hidden;
}

@media screen and (max-width:576px) {
    .banner-section .banner {
        margin: 20px;
        border-radius: 20px;
    }
}

.banner-section .banner img {
    width: 100%;
}

.banner-section .banner .mobile-banner {
    display: none;
}

@media screen and (max-width:576px) {
    .banner-section .banner .mobile-banner {
        display: block;
    }

    .banner-section .banner .web-banner {
        display: none;
    }
}

.banner-section .cta_btn {
    background-color: #fff;
    color: var(--primary_color) !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
}

@media screen and (max-width:576px) {
    .banner-section .cta_btn {
        bottom: 16px;
    }
}

.banner-section .cta_btn:hover {
    color: #fff !important;
    background-color: var(--primary_color) !important;
    border: 2px solid #fff;
}

/* banner section ends */

.discount-badge {
    border: 1px solid #E81C25;
    color: #E81C25;
    border-radius: 5px;
    padding: 24px 8px;
    font-weight: bold;
    text-align: center;
}

.discount-badge p {
    font-size: 12px;
    color: #151515;
    margin-bottom: 4px;
}

.discount-badge h4 {
    font-size: 24px;
    font-weight: 700;
    color: #E81C25;
}

.card-box {
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.search-container {
    box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
    padding: 24px;
    border-radius: 20px;
}

/* about section starts */

/* .about-section {
            padding: 50px;
        } */
.about-section {
    padding: 40px 0;
}

@media screen and (min-width:991px) {
    .about-section {
        padding: 80px 150px;
    }
}

.about-section .content {
    padding: 0 20px;
    max-width: 600px;
}

.about-section h1 {
    font-size: 44px;
    color: var(--primary_color);
    margin-bottom: 24px;
    font-weight: 800;
}

.about-section p {
    color: #4D4D4D;
    font-weight: lighter;
    font-weight: 400;

}

.about-section .image-section {
    margin: 30px;
}

@media screen and (max-width:576px) {
    .about-section .image-section {
        margin: 15px;
    }
}

.about-section .image-section img {
    width: 100%;

}

/* about section ends */


/* counter section starts */

.counter-section {
    padding: 40px 0;
}

@media screen and (min-width:991px) {
    .counter-section {
        padding: 80px 150px;
        padding-bottom: 0;
    }
}

.counter-section .counter {
    background-color: var(--primary_color);
    padding: 40px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    position: relative;
    margin: 20px 0;
    transition: all 0.4s ease-in-out;
}

.counter-section .counter:hover {
    transform: translateY(-10px);
}

.counter-section .counter .count {
    font-weight: bold;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

/* .counter-section .counter::after {
    content: "";
    border: 2px dashed var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50px;
    width: 102%;
    height: 104%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
} */

.counter-section .counter .icon {
    background-color: #fff;
    border-radius: 50%;
    padding: 14px;
    border: 2px solid var(--primary_color);
    position: absolute;
    top: -36px;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-section .counter .icon img {
    width: 80px;
}

.counter-section .counter h1 {
    font-size: 64px;
    font-weight: 700;
}

.counter-section .counter h3 {
    margin-bottom: 6px;
}

.counter-section .counter p {
    text-align: center;
}

/* counter section ends */



/* counter section starts */

.counter-section_1 {
    padding: 40px 0;
}

/* @media screen and (min-width:991px) {
    .counter-section_1 {
        padding: 80px 150px;
        padding-bottom: 0;
    }
} */

.counter-section_1 .counter {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    border-right: 1px solid #4D4D4D;
    margin: 20px 0;
    transition: all 0.4s ease-in-out;
}

@media screen and (max-width:991px) {
    .counter-section_1 .counter {
        border-bottom: 1px solid #4D4D4D;
        border-right: 0;
    }
}

.counter-section_1 .counter.no-border {
    border: none;
}

.counter-section_1 .counter:hover {
    transform: translateY(-10px);
}

.counter-section_1 .counter .count {
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.counter-section_1 .counter h1 {
    font-size: 70px;
    font-weight: 400;
    color: var(--primary_color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.counter-section_1 .counter h1 .kg {
    font-size: 36px;
    margin-top: 10px;
    font-weight: 600;
}

.counter-section_1 .counter h3 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 32px;
    color: var(--primary_color);
    text-align: center;
}

.counter-section_1 .counter p {
    text-align: center;
    color: #4D4D4D;
    font-weight: 600;
}

/* counter section ends */



/* how it works section ends */
.how-it-works-section {
    text-align: center;
    padding: 40px 0;
}

@media screen and (min-width:991px) {
    .how-it-works-section {
        padding: 40px 250px;
    }
}

.how-it-works-section .title {
    color: var(--primary_color);
    font-size: 50px;
    line-height: normal;
    font-weight: 800;

}

@media screen and (max-width:576px) {
    .how-it-works-section .title {
        font-size: 36px;
    }
}

.how-it-works-section .how-card {
    background-color: var(--primary_color);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0;
    transition: all 0.5s;
    position: relative;
    min-height: 200px;
}

.how-it-works-section .how-card:hover {
    transform: translateY(-8px);
}

.how-it-works-section .how-card img {
    width: 100px;
}

.how-it-works-section .how-card h5 {
    font-size: 28px;
    color: #fff;
    text-align: left;
    font-weight: 800;
}

.how-it-works-section .how-card h5 span {
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width:1300px) {
    .how-it-works-section .how-card h5 {
        font-size: 20px;
    }
}


.cta_btn {
    background-color: #1FB14B;
    color: #fff !important;
    padding: 20px 40px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    font-size: 24px;
    display: flex;
    font-weight: 600;
}

@media screen and (max-width:576px) {
    .cta_btn {
        font-size: 20px;
    }
}

@media screen and (max-width:420px) {
    .cta_btn {
        font-size: 16px;
    }
}

.cta_btn:hover {
    background-color: #02D754;
    transition: all 0.5s;
    transform: translateY(-5px);

}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #444; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-buttons .swiper-button-next {
    background-color: var(--primary_color);
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    margin-right: 40px;
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.swiper-buttons .swiper-button-prev {
    background-color: var(--primary_color);
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    margin-left: 40px;
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

@media screen and (max-width:576px) {
    .swiper-buttons .swiper-button-prev {
        background-color: transparent;
        margin-left: 20px;

    }

    .swiper-buttons .swiper-button-next {
        background-color: transparent;
        margin-right: 20px;

    }
}

.swiper-buttons .swiper-button-next:after {
    font-size: 24px;
}

.swiper-buttons .swiper-button-prev:after {
    font-size: 24px;
}

.matter-section {
    padding: 40px 0;
    text-align: center;
}

@media screen and (max-width:576px) {
    .matter-section {
        margin: 12px;
    }
}

.matter-section .container {
    background-color: var(--primary_color);
    border-radius: 40px;
    padding: 60px 0 30px 0;
    overflow: hidden;
}

.matter-section .title {
    color: #fff;
    font-size: 50px;
    line-height: normal;
    font-weight: 800;
}

@media screen and (max-width:576px) {
    .matter-section .title {
        font-size: 36px;
    }
}

.matter-section .matter-card {
    border-radius: 10px;
    margin: 20px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.matter-section .matter-card:hover {
    transform: translateY(-8px);
}

.matter-section .matter-card p {
    font-size: 60px;
}

.matter-section .matter-card h5 {
    text-align: left;
    font-size: 20px;
    color: #fff;
    margin-top: 14px;
}

@media screen and (max-width:576px) {
    .matter-section .matter-card h5 {
        font-size: 18px;
    }
}

.matter-section .cta_btn {
    background-color: #fff;
    color: var(--primary_color) !important;
}

.matter-section .cta_btn:hover {
    color: #fff !important;
    background-color: var(--primary_color) !important;
    border: 1px solid #fff !important;
}



.pilot_launch-section {
    background-color: #fff;
    padding: 40px 0;
}

@media screen and (min-width:991px) {
    .pilot_launch-section {
        padding: 80px 150px 20px 150px;
    }
}

.locations-section {
    background-color: #fff;
    padding: 40px 0;
}

@media screen and (min-width:991px) {
    .locations-section {
        padding: 80px 150px 20px 150px;
    }
}

.locations-section .pilot_launch-section .pilot_launch_card {
    padding: 0 20px;
}

/* .pilot_launch-section .pilot_launch_card {
    padding: 20px;
    background-color: rgba(31, 177, 75, 0.1);
    border: 1px solid #1FB14B;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background-image: url(./images/pilot_launch_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
} */

/* .pilot_launch-section .map-container {
    margin: 20px 0;
} */

.pilot_launch-section .map-container iframe {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
}

@media screen and (max-width:991px) {
    .pilot_launch-section .map-container iframe {
        margin-bottom: 20px;
    }
}

.pilot_launch-section .pilot_launch_card h1 {
    color: var(--primary_color);
    font-weight: 800;
    margin-bottom: 20px;
}

.pilot_launch-section .pilot_launch_card p {
    margin-bottom: 40px;
    color: #4D4D4D;
}

.pilot_launch-section .cta_btn {
    margin-left: 0;
}



/* change section */
.change-section {
    background-color: #fff;
    padding: 40px 0;
}

.change-section .content {
    background-image: url(./images/change-section-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
    z-index: 1;
    padding: 100px 200px 40px 200px;
}

.change-section .content::after {
    content: "";
    position: absolute;
    background-color: #151515;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
}

.change-section .content h1 {
    z-index: 2;
    color: #fff;
    text-align: center;
    /* margin-bottom: 40px; */
    font-weight: 800;
    font-size: 44px;
}



.change-section .content p {
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0;
}

@media screen and (max-width:576px) {
    .change-section .content h1 {
        font-size: 34px;
    }

    .change-section .content p {
        font-size: 16px;
    }
}

@media screen and (max-width:991px) {
    .change-section .content {
        padding: 40px;
    }

    .change-section .content p {
        font-size: 16px;
    }
}

.change-section .content .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.change-section .content .buttons .cta_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 50px;
    color: var(--primary_color) !important;
    padding: 10px 40px 10px 10px;
    width: 360px;
    font-size: 26px;
    font-weight: 600;
}

@media screen and (max-width:1300px) {
    .change-section .content .buttons .cta_btn {
        width: 320px;
        font-size: 23px;


    }
}

@media screen and (max-width:576px) {
    .change-section .content .buttons .cta_btn {
        font-size: 17px;
        width: 100%;
        padding: 10px 20px 10px 10px;
    }
}

.change-section .content .buttons .cta_btn img {
    width: 50px;
}



.savetheearth-section {
    background-color: #fff;
    padding: 20px 0;
    color: var(--primary_color);
}

.savetheearth-section h5 {
    color: var(--primary_color);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-weight: 600;
}

.savetheearth-section h5 img {
    width: 40px;
    margin-right: 8px;
}




/* footer section */

.footer {
    margin-top: 40px;
    padding: 40px 0;
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; */
    background-color: #F2F2F2;
}

@media screen and (min-width:991px) {
    .footer {
        padding: 80px 150px;
    }
}

.footer .logo {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .logo a img {
    width: 180px;
}

.footer .logo a.vkc-logo img {
    width: 120px;
    margin-left: 26px;
}

@media screen and (max-width:576px) {
    .footer .logo {
        gap: 14px;
    }

    .footer .logo a img {
        width: 130px;
    }

    .footer .logo a.vkc-logo img {
        width: 100px;
        margin-left: 10px;
    }
}

.footer ul li {
    list-style: none;
}

.footer ul {
    padding-left: 4px;
}

.footer .heading {
    color: var(--primary_color);
    font-weight: 700;
}

.footer .contact-details {
    margin-top: 24px;
}

.footer .contact-details li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .quick_links li {
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer .quick_links li a {
    color: #4D4D4D;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.5s;
}

@media screen and (max-width:576px) {
    .footer .quick_links li a {
        font-size: 16px;
    }
}

.footer .quick_links li a.whatsapp {
    border: 1px solid var(--primary_color);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .quick_links li a:hover {
    color: var(--primary_color);
}

.footer .social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer .social-icons li a {
    /* border: 1px solid #E81C25; */
    border-radius: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer .social-icons li a img {
    width: 30px;
}

@media screen and (min-width:576px) {
    .footer .social-icons li a img {
        width: 24px;
    }
}

/* .footer .social-icons li a:hover {
    background-color: var(--primary_color);
} */

.footer .footer-bottom {
    background-color: #fff;
    /* border-top: 1px solid #c9c9c9; */
    padding: 8px 14px;
    border-radius: 4px;
}

.footer .footer-end {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}


.footer .footer-bottom p {
    margin: 0;
}


.location-view h2 {
    font-weight: 600;
}








/* features-section starts */
.features-section {
    text-align: center;
    padding: 40px 0;
}


.features-section .title {
    color: var(--primary_color);
    font-size: 50px;
    line-height: normal;
    font-weight: 800;

}

@media screen and (max-width:576px) {
    .features-section .title {
        font-size: 36px;
    }
}

.features-section .card {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.features-section .card img {
    max-width: 200px;
}

/* features-section ends */




.news-banner-section .banner {
    margin: 0 60px;
    border-radius: 40px;
    overflow: hidden;
}

@media screen and (max-width:576px) {
    .news-banner-section .banner {
        margin: 20px;
        border-radius: 20px;
    }
}

.news-banner-section .banner img {
    width: 100%;
}




/* news-section starts */
.news-section {
    text-align: center;
    padding: 80px 0;
}

.news-section .title {
    color: #808080;
    font-size: 50px;
    line-height: normal;
    font-weight: 400;

}

@media screen and (max-width:576px) {
    .news-section {
        text-align: center;
        padding: 40px 0;
    }

    .news-section .title {
        font-size: 36px;
    }
}

.news-section .breaker {
    width: 100%;
    height: 1px;
    background-color: #B3B3B3;
    margin: 40px 0;
}

@media screen and (max-width:576px) {
    .news-section .breaker {
        margin: 20px 0;
    }
}

.news-section .news-card {
    display: flex;
    /* align-items: center; */
    gap: 6px;
    margin: 14px;
    flex-direction: column;
}

.news-section .hidden-card {
    display: none;
}

.news-section .news-card .image {
    border-radius: 14px;
    overflow: hidden;
    /* padding: 24px; */
}

.news-section .news-card .image img {
    width: 100%;
}

.news-section .news-card .image .content {
    color: #000;
    text-align: left;
    padding: 0;
}

.news-section .news-card .content h3 {
    font-size: 20px;
    color: var(--primary_color);
    text-align: left;
    font-weight: 600;
}

@media screen and (max-width:576px) {
    .news-section .news-card .content h3 {
        font-size: 18px;
    }
}

.news-section .news-card .content p {
    color: #4D4D4D;
    font-size: 14px;
    text-align: left;
    margin-bottom: 6px;
}

@media screen and (max-width:576px) {
    .news-section .news-card .content p {
        font-size: 12px;
    }
}

.news-section .news-card .content .date {
    color: #4D4D4D;
    font-size: 18px;
    text-align: left;
    margin-top: 4px;
}

@media screen and (max-width:576px) {
    .news-section .news-card .content .date {
        font-size: 16px;
        margin-top: 10px;
    }
}

.news-section .cta_btn {
    background-color: #3DB555;
    padding: 10px 30px;
}