@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */
/* font-family: "Playfair Display", serif; */

/* CSS Boilerplate */

/* Reset some default browser styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set base font and background */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5; */
    background-color: #fff;
    color: #222;
    scroll-behavior: smooth;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    /* margin-bottom: 0.5em; */

}

/* Links */
a {
    color: #222;
    text-decoration: none;
}

.mobile-navbar {
    display: none;
}

@media only screen and (max-width:768px) {
    body {
        cursor: default;
    }

    .cursor-inner,
    .cursor-outer {
        display: none;
    }

    .navigation {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }
}

#AboutMain {
    width: 100%;
    height: 100%;
}

/* about hero section */
.aboutHero {
    width: 100%;
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/assets/images/about-hero-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;


    .AboutContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: space-between;

        .Ab-left,
        .Ab-right {
            width: 50%;
            height: auto;
        }

        .Ab-left {

            h4 {
                display: inline-block;
                color: #3B0070;
                background-color: #931BFF25;
                padding: 3px 10px;
                border-radius: 5px;
                margin-bottom: 20px;
                font-weight: 500;
            }

            h1 {
                font-size: 2.5rem;
                line-height: 3rem;
                margin-bottom: 20px;
                font-weight: 600;
                max-width: 90%;
                color: #181818;

                .special-heading {
                    color: transparent;
                    background: linear-gradient(90deg, #3B0070, #931BFF);
                    background-clip: text;
                    -webkit-background-clip: text;
                }
            }

            >p {
                font-size: 1.1rem;
                line-height: 1.6rem;
                color: #363545;
                margin-bottom: 20px;
                max-width: 90%;
            }

            .about-cta {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: start;
                gap: 30px;
                margin-top: 40px;

                .ab-primary-cta {
                    font-size: 1.1rem;
                    line-height: 1.8rem;
                    font-weight: 500;
                    color: #fafafa;
                    background: linear-gradient(90deg, #3B0070, #931BFF);
                    padding: 10px 25px;
                    border-radius: 15px;
                    box-shadow: 5px 5px 20px #931BFF25;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        box-shadow: 8px 8px 30px #931BFF40;
                        transform: translateX(3px);
                    }
                }

                .ab-secondary-cta {
                    font-size: 1.1rem;
                    line-height: 1.8rem;
                    font-weight: 500;
                    padding: 10px 25px;
                    border-radius: 15px;
                    background: #fff;
                    color: #555;
                    border: 1px solid #88888815;
                    box-shadow: 2px 2px 10px #18181810;
                    transition: all .3s ease-in-out;

                    i {
                        border-radius: 50%;
                        padding: 5px;
                        font-size: 1.2rem;
                        color: #fafafa;
                        background-color: #181818;
                        margin-left: 8px;
                    }

                    &:hover {
                        box-shadow: 5px 5px 30px #18181815;
                        transform: translateX(3px);
                    }
                }
            }
        }

        .Ab-right {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
            padding: 20px;

            img {
                width: 100%;
                height: 400px;
                border-radius: 15px;
            }

            .absolute-Float-Con-1 {
                position: absolute;
                top: 0;
                right: -20px;
                width: 180px;
                background: linear-gradient(120deg, #fff, #fdfdfd);
                padding: 20px;
                border-radius: 5px;
                box-shadow: 2px 2px 20px #18181810;

                h5 {
                    font-size: 2rem;
                    color: #181818;
                }

                small {
                    font-size: 1rem;
                    color: #363545;
                }
            }

            .absolute-Float-Con-2 {
                position: absolute;
                bottom: 0;
                left: -20px;
                width: 180px;
                background: linear-gradient(120deg, #fff, #fdfdfd);
                padding: 20px;
                border-radius: 5px;
                box-shadow: 2px 2px 20px #18181810;

                h5 {
                    font-size: 2rem;
                    color: #181818;
                }

                small {
                    font-size: 1rem;
                    color: #363545;
                }
            }
        }


    }
}

@media only screen and (max-width:768px) {
    .aboutHero {
        padding: 0 10px;

        .AboutContainer {
            flex-wrap: wrap-reverse;
            padding: 0;
            margin: 40px 0px;

            .Ab-left {
                align-items: center;
                justify-content: center;
                text-align: center;
            }

            .Ab-left,
            .Ab-right {
                width: 100%;
                height: auto;
            }

            .Ab-left {

                h4 {
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                h1 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                    margin-bottom: 10px;
                    max-width: 100%;
                    width: 100%;
                }

                p {
                    font-size: 1rem;
                    max-width: 100%;
                    width: 100%;
                    margin-bottom: 10px;
                }

                .about-cta {
                    margin-top: 30px;
                    flex-wrap: wrap;
                    gap: 20px;

                    a {
                        width: 100%;
                        text-align: center;
                        padding: 20px;
                    }
                }

            }

            .Ab-right {

                img {
                    width: 90%;
                    height: 250px;
                }

                .absolute-Float-Con-1,
                .absolute-Float-Con-2 {
                    width: 150px;
                    height: 80px;
                    overflow: hidden;
                    padding: 10px;

                    h5 {
                        font-size: 1.5rem;
                        line-height: 2rem;
                    }

                    small {
                        font-size: 13px;
                    }
                }

                .absolute-Float-Con-1 {
                    top: -10px;
                    right: 10px;
                }

                .absolute-Float-Con-2 {
                    bottom: 0px;
                    left: 10px;
                }
            }
        }
    }
}

/* about hero section */


/* story section */
.StorySection {
    width: 100%;
    height: auto;
    min-height: 600px;
    /* background-color: #fafafa; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .storyContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-top: 50px;
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            color: #181818;
            max-width: 850px;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }
    }

    .story-down {
        width: 100%;
        height: auto;
        margin-top: 20px;
        display: flex;
        align-items: start;
        gap: 30px;
        justify-content: space-between;

        .sto-left {
            width: 70%;
            height: auto;
            min-height: 560px;
            padding: 30px 20px;
            background: #fff;
            box-shadow: 4px 4px 30px #18181810;
            border-radius: 15px;
            display: flex;
            align-items: start;
            justify-content: space-between;
            flex-direction: column;

            h3 {
                font-size: 1.5rem;
                line-height: 2rem;
                font-weight: 600;
                margin-bottom: 40px;
                color: #222;
            }

            >p {
                font-size: 1.1rem;
                color: #454545;
                font-weight: 400;
                margin-bottom: 35px;
            }
        }

        .sto-right {
            width: 30%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-direction: column;
            gap: 20px;

            .st-up,
            .st-low {
                width: 100%;
                height: auto;
                min-height: 270px;
                border-radius: 20px;
                border: none;
                padding: 30px;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;

                i {
                    font-size: 3.5rem;
                    line-height: 4rem;
                    margin-bottom: 15px;
                }

                h5 {
                    font-size: 1.2rem;
                    color: #181818;
                    margin-bottom: 15px;
                }

                >p {
                    font-size: 1rem;
                    color: #454545;
                }
            }

            .st-up {
                background: linear-gradient(130deg, #3B007005, #931BFF10);

                i {
                    color: #3B0070;
                }
            }

            .st-low {
                background: linear-gradient(130deg, #22222205, #18181810);

                i {
                    color: #181818;
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .StorySection {
        padding: 0 10px;

        .storyContainer {
            padding: 0;
            margin: 40px 0px;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                width: 100%;
                max-width: 100%;
                margin-bottom: 15px;
            }

            .story-down {
                flex-wrap: wrap;

                .sto-left {
                    width: 100%;
                    height: auto;
                    min-height: auto;
                    max-height: auto;
                    padding: 20px;
                }

                .sto-right {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}

/* story section */


/* usp section */
.uspSection {
    width: 100%;
    height: auto;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .uspContainer {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 50px;

        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            max-width: 90%;
            color: #181818;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        p {
            font-size: 1.1rem;
            line-height: 1.6rem;
            color: #363545;
            margin-bottom: 20px;
            text-align: center;
            max-width: 1000px;
        }

        .uspCards {
            width: 100%;
            max-width: 1400px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
            text-align: left !important;

            .usp-card {
                width: 49%;
                height: auto;
                min-height: 200px;
                border-radius: 15px;
                border: 1px solid #fdfdfd;
                background: #fff;
                box-shadow: 2px 2px 20px #18181810;
                padding: 30px;
                display: flex;
                align-items: start;
                justify-content: start;
                flex-direction: column;

                i {
                    font-size: 2rem;
                    font-weight: 500;
                    padding: 10px;
                    border-radius: 10px;
                    border: none;
                    margin-bottom: 25px;
                }

                h3 {
                    font-size: 1.5rem;
                    line-height: 2rem;
                    color: #181818;
                    font-weight: 500;
                    margin-bottom: 15px;
                    text-align: left;
                }

                >p {
                    text-align: left;
                    font-size: 1rem;
                    color: #454545;
                    font-weight: 400;
                    margin-bottom: 15px;
                    width: 100%;
                    max-width: 100%;
                }

                .usp-impact {
                    width: 100%;
                    padding: 15px;
                    border-radius: 10px;
                    display: flex;
                    align-items: start;
                    justify-content: start;
                    flex-direction: column;
                    gap: 10px;
                    background-color: #36354510;

                    h5 {
                        font-size: 16px;
                        text-transform: capitalize;
                        color: #363545;
                    }

                    small {
                        font-size: 14px;
                        color: #555;
                    }
                }
            }

            .usp-card:nth-child(1) i {
                background: linear-gradient(90deg, #382A4B, #9174B8);
                color: #fafafa;
            }

            .usp-card:nth-child(2) i {
                background: linear-gradient(90deg, #363545, #565574);
                color: #fafafa;
            }

            .usp-card:nth-child(3) i {
                background: linear-gradient(90deg, #18250E, #324522);
                color: #fafafa;
            }

            .usp-card:nth-child(4) i {
                background: linear-gradient(90deg, #382A4B, #9174B8);
                color: #fafafa;
            }

        }
    }

}

@media only screen and (max-width:768px) {
    body {
        position: relative;
    }

    .uspSection {
        padding: 0 10px;

        .uspContainer {
            padding: 0;
            margin: 40px 0px;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            p {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .uspCards {
                width: 100%;

                .usp-card {
                    width: 100%;
                    position: sticky;
                    top: 100px;
                    /* margin-bottom: 30px; */
                }
            }
        }
    }
}

/* usp section */


/* impact in numbers */
.impactSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .impactContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        /* margin: 150px 0px; */
        margin-top: 150px;
        margin-bottom: 100px;
        /* margin-top: 100px;
        margin-bottom: 100px; */

        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;
            max-width: 90%;
            text-align: center;
            color: #181818;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .impact-cards {
            width: 100%;
            height: auto;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .impactCard {
                width: 20%;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;

                h3 {
                    font-size: 2.5rem;
                    line-height: 3rem;
                    margin-bottom: 10px;
                    color: #111;
                }

                h5 {
                    font-size: 1rem;
                    color: #181818;
                    margin-bottom: 10px;
                }

                small {
                    font-size: 14px;
                    color: #555;
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .impactSection {
        padding: 0 10px;

        .impactContainer {
            padding: 0;
            margin: 60px 0px;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 20px;
            }

            .impact-cards {
                width: 100%;
                flex-wrap: wrap;
                gap: 50px 0;

                .impactCard {
                    width: 50%;
                }
            }
        }
    }
}

/* impact in numbers */