/* @import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=Rouge+Script&display=swap'); */

/* Highlight Heading font */
/* font-family: "Rouge Script", cursive; */

/* Para and other text font */
/* font-family: "Inter Tight", sans-serif; */

/* Main Heading font */
/* font-family: "Noto Serif Display", serif; */

@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: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Noto Serif Display", serif; */
    font-family: "Manrope", sans-serif;
}

a,
p,
ul,
ol,
span,
li,
strong,
i,
b,
u {
    /* font-family: "Inter Tight", sans-serif; */
    font-family: "Inter", sans-serif;
}


.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}

.about-hero {
    width: 100%;
    height: auto;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: #fafafa;
    justify-content: center;
    flex-direction: column;

    .about-heroContainer {
        width: 100%;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
        margin-bottom: 50px;

        .about-left,
        .about-right {
            width: 50%;
            height: 100%;
        }

        .about-right {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 80%;
                height: auto;
                border-radius: 10px;
                object-fit: cover;
            }
        }

        .about-left {

            h1 {
                font-size: 3rem;
                line-height: 3.5rem;
                font-weight: 400;
                margin-bottom: 30px;
                color: #0a0a0a;
            }

            p {
                font-size: 1.2rem;
                line-height: 1.8rem;
                color: #555;
                margin-bottom: 30px;
            }

            a {
                display: inline-block;
                padding: 10px 20px;
                background-color: #171717;
                color: #fff;
                text-decoration: none;
                border-radius: 5px;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: #161616;
                }
            }


        }


    }
}

@media only screen and (max-width:768px) {
    .about-hero {
        padding: 10px;
    }

    .about-heroContainer {
        flex-wrap: wrap-reverse !important;
    }

    .about-left,
    .about-right {
        width: 100% !important;
    }

    .about-left {
        margin-top: 20px !important;
    }

    .about-right {
        img {
            width: 100% !important;
            height: auto !important;
        }
    }

    .about-left {

        h1 {
            text-align: center !important;
            font-size: 2rem !important;
            line-height: 2.5rem !important;
        }

        p {
            text-align: center !important;
            font-size: 1rem !important;
            line-height: 1.5rem !important;
        }

        a {
            display: block !important;
            width: fit-content !important;
            margin: 0 auto !important;
        }
    }
}


.mission {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .missionContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;


        h1 {
            font-size: 2.5rem;
            line-height: 3rem;
            font-weight: 500;
            margin-bottom: 30px;
            color: #0a0a0a;
        }

        .special-heading {
            font-size: 1.3rem;
            max-width: 1000px;
            font-weight: 400;
            margin-bottom: 30px;
            color: #525252;

            i {
                color: #931116;
                font-size: 1rem;
                font-weight: 400;
                font-style: italic;
            }
        }

        p {
            font-size: 1.3rem;
            line-height: 2rem;
            max-width: 1100px;
            color: #555;
        }


    }
}

@media only screen and (max-width:768px) {
    .mission {
        padding: 10px;
    }

    .missionContainer {
        h1 {
            font-size: 2rem !important;
            line-height: 2.5rem !important;
        }

        .special-heading {
            font-size: 1.1rem !important;
            line-height: 1.5rem !important;
            max-width: 100% !important;
        }

        p {
            font-size: 1rem !important;
            line-height: 1.5rem !important;
            max-width: 100% !important;
        }
    }
}


.team {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fafafa;

    .teamContainer {
        width: 100%;
        height: auto;
        min-height: 700px;
        padding: 50px 0px;
        max-height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;


        h1 {
            font-size: 2.5rem;
            line-height: 3rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #0a0a0a;
        }

        >p {
            font-size: 1.2rem;
            line-height: 1.8rem;
            max-width: 800px;
            color: #555;
            margin-bottom: 40px;
            text-align: center;
        }

        .teamCards {
            width: 100%;
            height: auto;
            margin-bottom: 30px;
            display: flex;
            gap: 60px;
            align-items: top;
            justify-content: space-between;
            flex-wrap: wrap;

            .MemberCard {
                width: 30%;
                height: auto;
                display: flex;
                align-items: left;
                justify-content: center;
                flex-direction: column;
                border-radius: 25px;
                overflow: hidden;
                background-color: #fff;
                transition: all .3s ease-in-out;

                &:hover {
                    box-shadow: 5px 5px 30px #17171715;
                    transform: translateY(-10px);
                }

                img {
                    width: 100%;
                    height: 350px;
                    object-fit: cover;
                    margin-bottom: 20px;
                }

                h2,
                p {
                    padding: 0 20px;
                    text-align: left;
                    margin-bottom: 15px;
                }

                h2 {
                    font-size: 1.5rem;
                    line-height: 2rem;
                    font-weight: 500;
                    color: #525252;
                }

                p {
                    font-size: 1rem;
                    line-height: 1.5rem;
                    color: #666;
                }

            }
        }

    }
}

@media only screen and (max-width:768px) {
    body{
        position: relative !important;
    }
    .team {
        padding: 10px;
    }
    
    .teamContainer {
        h1 {
            font-size: 2rem !important;
            line-height: 2.5rem !important;
        }

        >p {
            font-size: 1rem !important;
            line-height: 1.5rem !important;
            max-width: 100% !important;
        }

        .teamCards {
            gap: 30px !important;
            margin: 0 !important;

            .MemberCard {
                width: 100% !important;
                top: 50px !important;
                    margin-bottom: 30px !important;
                    position: sticky;

                img {
                    height: auto !important;
                }
            }
        }
    }

}


.behind-the-scenes {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .behindContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
        margin-bottom: 50px;

        .behindLeft,
        .behindRight {
            width: 50%;
            height: 100%;
        }

        .behindLeft {

            h2 {
                font-size: 2.5rem;
                line-height: 3rem;
                font-weight: 500;
                margin-bottom: 25px;
                color: #0a0a0a;
            }

            p {
                font-size: 1.2rem;
                line-height: 1.8rem;
                color: #555;
                margin-bottom: 30px;
            }

            a {
                display: inline-block;
                padding: 10px 20px;
                background-color: none;
                color: #171717;
                text-decoration: none;
                border-radius: 5px;
                border: 1px solid #171717;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: #161616;
                    color: #fff;
                }
            }
        }

        .behindRight {
            padding: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

            .behindUp,
            .behindLow {
                width: 100%;
                height: 50%;
                gap: 20px;
                display: flex;
                margin: 10px 0;
                align-items: center;
                justify-content: space-between;
            }


            .firstImage {
                width: 70% !important;
                height: 200px !important;
                border-radius: 5px;
            }

            .secondImage {
                width: 30% !important;
                height: 100% !important;
                border-radius: 5px;
            }




        }
    }
}

@media only screen and (max-width:768px){
    .behind-the-scenes {
        padding: 10px;
    }

    .behindContainer {
        flex-wrap: wrap-reverse !important;

        .behindLeft,
        .behindRight {
            width: 100% !important;
            margin-top: 20px !important;
        }

        

        .behindLeft {
            margin-bottom: 40px;

            h2 {
                font-size: 2rem !important;
                line-height: 2.5rem !important;
            }

            p {
                font-size: 1rem !important;
                line-height: 1.5rem !important;
            }

            a {
                /* display: block !important; */
                width: fit-content !important;
                margin: 0 auto !important;
            }
        }

        .behindRight {
            padding: 0px !important;
            display: none !important;

            .behindUp,
            .behindLow {
                /* flex-direction: column !important; */
                height: auto !important;
            }

           
            /* .firstImage,
            .secondImage {
                width: 100% !important;
                height: auto !important;
            } */
        }
    }
}


/* yellow color #fdc700 */

.AwardsSection {
    width: 100%;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #171717;

    .AwardsContainer {
        width: 100%;
        max-width: 1400px;
        color: #fafafa;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 40px;
        margin-bottom: 40px;

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #fafafa;
        }

        >p {
            font-size: 1.2rem;
            line-height: 1.8rem;
            max-width: 800px;
            color: #ccc;
            margin-bottom: 40px;
            text-align: center;
        }

        .AwardsCards {
            width: 100%;
            height: auto;
            gap: 40px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;

            .AwCard {
                width: 30%;
                height: auto;
                padding: 20px;
                background-color: #262626;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 15px;

                .aw-left {
                    width: 20%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .aw-right {
                    width: 80%;
                }

                i {
                    font-size: 1.3rem;
                    color: #fdc700;
                    line-height: 2rem;
                    font-weight: 500;
                }

                h3 {
                    font-size: 1.1rem;
                    font-weight: 500;
                    color: #fafafa;
                }
            }
        }

    }
}

@media only screen and (max-width:768px){
    .AwardsSection {
        padding: 10px;
    }

    .AwardsContainer {
        h2 {
            font-size: 2rem !important;
            line-height: 2.5rem !important;
        }

        >p {
            font-size: 1rem !important;
            line-height: 1.5rem !important;
            max-width: 100% !important;
        }

        .AwardsCards {
            gap: 25px !important;

            .AwCard {
                width: 100% !important;

                .aw-left {
                    width: 25% !important;

                    i{
                        font-size: 2rem !important;
                    }
                }

                .aw-right {
                    width: 75% !important;
                }

                h3 {
                    font-size: 1rem !important;
                    line-height: 1.5rem !important;
                }
            }
        }
    }
}


.whyChoose {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


    .whyChooseContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        min-height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* text-align: center; */

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #0a0a0a;
            text-align: center;
        }

        >p {
            font-size: 1.2rem;
            line-height: 1.8rem;
            max-width: 800px;
            color: #555;
            margin-bottom: 40px;
            text-align: center;
        }

        .whyChooseCards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;

            .whyCard {
                width: 48.5%;
                height: auto;
                padding: 30px;
                border-radius: 25px;
                border: 1px solid #e0e0e0;
                display: flex;
                align-items: center;
                justify-content: center;

                .why-left {
                    width: 20%;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    i {
                        background-color: #161616;
                        padding: 15px;
                        font-size: 3rem;
                        border-radius: 50%;
                        color: #fafafa;
                        font-weight: 400;
                    }
                }

                .why-right {
                    width: 80%;
                    display: flex;
                    align-items: left;
                    justify-content: left;
                    flex-direction: column;
                    text-align: left !important;

                    h3 {
                        font-size: 1.6rem;
                        line-height: 2rem;
                        font-weight: 500;
                        margin-bottom: 5px;
                        color: #171717;
                    }

                    p {
                        font-size: 1rem;
                        line-height: 1.5rem;
                        color: #555;
                    }
                }

            }
        }

    }
}

@media only screen and (max-width:768px){
    .whyChoose {
        padding: 10px;
    }

    .whyChooseContainer {
        h2 {
            font-size: 2rem !important;
            line-height: 2.5rem !important;
        }

        >p {
            font-size: 1rem !important;
            line-height: 1.5rem !important;
            max-width: 100% !important;
            margin-bottom: 20px !important;
        }

        .whyChooseCards {
            gap: 20px !important;

            .whyCard {
                width: 100% !important;
                padding: 20px !important;

                .why-left {
                    width: 25% !important;

                    i {
                        font-size: 2rem !important;
                        padding: 10px !important;
                    }
                }

                .why-right {
                    width: 75% !important;

                    h3 {
                        font-size: 1.3rem !important;
                        line-height: 1.8rem !important;
                    }

                    p {
                        font-size: 1rem !important;
                        line-height: 1.5rem !important;
                    }
                }
            }
        }
    }
}



.cta-Section {
    width: 100%;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    flex-direction: column;


    .cta-Container {
        width: 100%;
        max-width: 1400px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: #171717;
            text-align: center;
        }

        p {
            font-size: 1.2rem;
            line-height: 1.8rem;
            max-width: 800px;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;

            a:nth-child(1) {
                display: inline-block;
                padding: 10px 20px;
                background-color: #171717;
                color: #fff;
                text-decoration: none;
                border: 1px solid #171717;
                border-radius: 5px;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: #fff;
                    color: #171717;
                }
            }

            a:nth-child(2) {
                display: inline-block;
                padding: 10px 20px;
                background-color: none;
                color: #171717;
                text-decoration: none;
                border-radius: 5px;
                border: 1px solid #171717;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: #161616;
                    color: #fff;
                }
            }
        }
    }
}

@media only screen and (max-width:768px){
    .cta-Section {
        padding: 10px;
    }

    .cta-Container {
        h2 {
            font-size: 2rem !important;
            line-height: 2.5rem !important;
        }

        p {
            font-size: 1rem !important;
            line-height: 1.5rem !important;
            max-width: 100% !important;
        }

        .cta-buttons {
            flex-direction: column !important;

            a {
                width: 100% !important;
                display: block !important;
                /* padding: 20px; */
                text-align: center !important;
            }
        }
    }
}