@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lusitana:wght@400;700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* global */
html, body {
    font-family: "Raleway", sans-serif;
    font-weight: normal;
    scroll-behavior: smooth;
}


::-webkit-scrollbar {
    -webkit-appearance: none;
}

    ::-webkit-scrollbar:vertical {
        width: 7px;
    }

    ::-webkit-scrollbar:horizontal {
        height: 7px;
    }

::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 7px;
    border: 2px solid #f5f5f5;
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

section {
    padding: 40px 0;
}

ul, ol, p {
    margin-bottom: 0;
}

li {
    list-style-type: none;
}

a, a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.sec-title {
    font-size: 42px;
    line-height: 54px;
    font-weight: 800;
    color: #007dc5;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 24px;
}

    .sec-title::before {
        content: "";
        position: absolute;
        bottom: 0px;
        width: 100px;
        height: 5px;
        background-color: #1d4a75;
    }

.sec-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #232323;
}

.primary-btn {
    outline: none;
    border: 1px solid #007DC5;
    padding: 20px 25px;
    background-color: #007DC5;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all o.5s linear;
    -webkit-transition: all o.5s linear;
    -moz-transition: all o.5s linear;
    -ms-transition: all o.5s linear;
    -o-transition: all o.5s linear;
}

    .primary-btn:focus {
        outline: none;
    }

    .primary-btn:hover {
        color: #000;
        border: 1px solid #000;
        background-color: #fff;
    }

        .primary-btn:hover img {
            filter: invert(1);
            -webkit-filter: invert(1);
        }



    .primary-btn img {
        margin-left: 15px;
    }

/* banner section Start */
.banner-sec {
    background: linear-gradient(270deg, #00D0FF 0%, #007DC5 100%);
    padding: 60px 0;
}

.banner-title {
    font-size: 48px;
    line-height: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.banner-desc {
    font-size: 22px;
    line-height: 33px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

    .banner-desc:last-child {
        margin-bottom: 0;
    }

.img-wrapper {
    position: relative;
}

.img-capsule {
    transform: translateY(24px);
    background-color: #fff;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 120px;
}

    .img-capsule .capsule-text {
        font-size: 16px;
        line-height: 24px;
        font-weight: 800;
        color: #1D4A75;
        margin-left: 12px;
    }

/* banner section End */


/* Project Drive */
.drive-content {
    margin-bottom: 30px;
}

    .drive-content p {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
    }

    .drive-content .prime-color {
        color: #1D4A75;
        font-weight: 700;
    }

    .drive-content .sec-color {
        color: #007DC5;
        font-weight: 700;
    }

.prime-drive-content, .sec-drive-content {
    background-color: #1D4A75;
    padding: 40px 20px 40px 70px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.sec-drive-content {
    background-color: #007DC5;
    margin-top: 20px;
}

.project-drive {
    counter-reset: title;
}

    .project-drive .drive-title {
        font-size: 16px;
        line-height: 20px;
        color: #fff;
        margin-bottom: 16px;
        font-weight: 700;
        position: relative;
        /* padding-left: 30px;/ */
    }

        .project-drive .drive-title::before {
            counter-increment: title;
            content: counter(title, decimal-leading-zero);
            position: absolute;
            left: -45px;
            color: #fff;
        }

    .project-drive .drive-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        font-weight: 500;
        color: #fff;
        padding-right: 10px;
    }
/* Project Drive End */

/* clean up drive */
.video-wrap {
    width: 100%;
}

.drive-info-container {
    margin: 40px 0;
}

.drive-info .d-info-title {
    color: #1D4A75;
    font-size: 36px;
    line-height: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.drive-info .d-info-desc {
    color: #232323;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}


/* clean up drive ENd */


/* waste collection cards  start*/
.waste-col-card {
    background: #F3F6F8;
    padding: 30px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin: 10px 0;
}

.waste-card-icon {
    margin-bottom: 15px;
}

.waste-card-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    color: #1D4A75;
    margin-bottom: 15px;
}

.waste-card-desc {
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    font-weight: 500;
}
/* waste collection cards  End*/


/* ---------------------------------------Gallery SLider---------------------- */


.gal-slide {
    height: 340px;
}

    .gal-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
/* ============================Gallery Slider End===================== */


/* awards section start */
.award-icon, .award-content .sec-title {
    margin-bottom: 24px;
}

.awards-img {
    position: relative;
}

    .awards-img::after {
        content: "";
        position: absolute;
        top: -30px;
        right: -40px;
        width: 80%;
        height: calc(100% + 60px);
        background: #F3F6F8;
        clip-path: polygon(26% 0, 100% 0%, 100% 100%, 0% 100%);
        /*border: 1px solid ;
  */ border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        z-index: -1;
    }
/* awards section End */

/* footer */

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-content p {
        font-size: 13px;
        line-height: 15px;
        color: #000;
    }

.video-intro-wrap {
    position: relative;
}

    .video-intro-wrap .play-btn {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 80px;
        height: 80px;
    }

.mob-hamber {
    display: none;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }
}

video {
    border-radius: 16px;
}

/* ========= Media Query ----For mobile ======== */
@media (max-width: 992px) {
    .logo {
        padding: 10px 0;
    }


    .mob-hamber {
        display: block;
        width: 40px;
        height: 40px;
        border: 1px solid;
        border-radius: 4px;
        padding: 4px;
        position: relative;
    }

        .mob-hamber .line {
            width: 100%;
            display: inline-block;
            height: 2px;
            background: #000;
            position: relative;
            transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
        }

            .mob-hamber .line::before {
                content: "";
                width: 100%;
                height: 2px;
                background: #000;
                position: absolute;
                top: 8px;
                left: 0;
            }

            .mob-hamber .line::after {
                content: "";
                width: 100%;
                height: 2px;
                background: #000;
                position: absolute;
                top: -8px;
                left: 0;
            }

    .closebtn .line {
        top: 0;
        transform: rotate(45deg);
    }

        .closebtn .line::before {
            top: 0;
            transform: rotate(360deg);
        }

        .closebtn .line::after {
            top: 0;
            transform: rotate(-90deg);
        }

    .mob-hamber:hover {
        border-color: #007DC5;
    }

        .mob-hamber:hover .line, .mob-hamber:hover .line::after, .mob-hamber:hover .line::before {
            background-color: #007DC5;
        }

   

    .show {
        right: 0;
        transform: translateX(0);
    }

}

@media (max-width: 768px) {

    .footer-content {
        justify-content: center;
        flex-direction: column !important;
        align-items: center;
        padding-bottom: 20px;
    }

    header {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .banner-sec {
        padding: 40px 0;
    }

    .banner-title {
        font-size: 30px;
        line-height: 36px !important;
        margin-bottom: 20px;
    }

    .banner-desc {
        font-size: 19px;
        line-height: 30px;
    }

    .img-capsule {
        transform: translateY(20px);
        padding: 6px 12px;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }


        .img-capsule .capsule-text {
            font-size: 12px;
            line-height: 20px;
            margin-left: 4px;
        }

    /* drive video compent */

    video {
        margin-bottom: 20px;
    }

    .drive-content {
        margin-bottom: 20px;
    }

        .drive-content p {
            font-size: 16px;
            line-height: 20px;
        }

    .prime-drive-content, .sec-drive-content {
        padding: 24px 20px 24px 50px;
    }

    .project-drive .drive-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }

        .project-drive .drive-title::before {
            left: -32px;
        }

    .project-drive .drive-desc {
        font-size: 12px;
    }

    .sec-title {
        font-size: 30px;
        line-height: 36px;
        padding-bottom: 8px;
        margin-bottom: 1rem;
    }

        .sec-title::before {
            width: 60px;
            height: 3px;
        }

    .sec-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .drive-info-container {
        margin: 1.5rem 0 0.5rem;
    }

    .drive-info .d-info-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 8px;
    }

    .drive-info .d-info-desc {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 1rem;
    }

    .primary-btn {
        padding: 12px 16px;
        font-size: 12px;
        line-height: 16px;
    }

        .primary-btn img {
            margin-left: 10px;
            width: 20px;
        }

    .waste-col-card {
        padding: 20px;
        margin-bottom: 10px;
    }

    .waste-card-icon img {
        width: 30px;
        height: 30px;
    }

    .waste-card-title {
        font-size: 1.125rem;
        line-height: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .waste-card-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .award-icon img {
        width: 30px;
        height: 30px;
    }

    .award-icon, .award-content .sec-title {
        margin-bottom: 1rem;
    }

    .award-content {
        margin-bottom: 1.5rem;
    }

    .awards-img {
        position: relative;
        max-width: 90%;
        margin: 0 auto;
    }

        .awards-img::after {
            top: -16px;
            right: -20px;
            height: calc(100% + 32px);
        }
}
