* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;

}

:root {
    --mainColor: #40196D;
    --9jaColor: #008751;

}

body {
    width: 100%;
    height: 100%;
    z-index: 9;
    overflow-x: hidden;
    background: #fff;

    /* .overlay2, .overlay1{
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #c2b5cc;
        opacity: 0.8;
        z-index: 10;
        display: none;
    } */
}


header {
    nav {
        display: flex;
        justify-content: space-between;
        padding: 35px;
        height: 8vh;
        position: fixed;
        z-index: 10;
        width: 100%;
        right: 0;
        background: #fff;
        box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);
    }

    nav .leftNav {
        display: flex;
        gap: 80px;
        align-items: center;

        ul {
            display: flex;
            gap: 50px;
        }

        ul li {
            list-style-type: none;
            color: #40196D;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            position: relative;
        }

        .company ul,
        .help ul {
            display: none;
            z-index: 12;
        }

        .companyList {
            display: block;
            position: absolute;
            top: 3vh;
            background: #d8d5d5;
            width: max-content;
            padding: 15px;
            box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
            border-radius: 5px;

        }

        .helpList {
            display: block;
            position: absolute;
            top: 3vh;
            background: #d8d5d5;
            width: max-content;
            padding: 15px;
            box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        .companyList li,
        .helpList li {
            padding: .9375rem;

            &:hover {
                color: #40196D;
                font-weight: 900;
            }
        }
    }

    nav .rightNav {
        display: flex;
        gap: 50px;
        align-items: center;

        .signIn {
            border: none;
        }

        .signIn a {
            text-decoration: none;
            color: #40196D;
            font-weight: 600;
            font-size: 14px;
        }

        .joinBtn button {
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            background: #40196D;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
        }

        .nijaLogo .logoContainer {
            width: 35px;
            height: 35px;
            background: #9bccb8;
            border-radius: 50%;
            position: relative;
            cursor: pointer;

        }

        .logoContainer img {
            position: absolute;
            top: 8px;
            left: 8px;
        }

    }

    .hamburger {
        display: none;
        cursor: pointer;
    }

    .cancel {
        display: none;
    }
}

main {
    width: 100%;
    padding: 50px;
    overflow-x: hidden;

    .container1 {
        display: flex;
        justify-content: space-between;
        padding: 50px;
        margin-top: 80px;

        .leftSide {
            width: 50%;

        }

        .leftSide h1 {
            font-size: 45px;
            font-weight: 800;
            color: #40196D;
        }

        .leftSide p {
            padding-top: 10px;
            padding-bottom: 20px;
        }

        .leftSide .assurance {
            display: flex;
            gap: 15px;
            align-items: center;
        }



        .rightSide .firstCircle {
            width: 450px;
            height: 450px;
            position: relative;
            border: 1px solid rgb(218, 214, 214);
            border-radius: 50%;


            img {
                position: absolute;
                bottom: 10px;
                right: 10px;
                width: 100%;
                height: auto;
            }
        }
    }

    .container2 {
        padding: 50px;


        .row1 {
            display: flex;
            padding: 30px;
            justify-content: space-around;
        }

        .row2 {
            display: flex;
            gap: 30px;
            justify-content: center;


        }

        .cardSlide,
        .cashlessSlide,
        .billsSlide,
        .transfersSlide,
        .saveSlide {
            background: #fff;
            padding: 30px;
            width: 30%;
            box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);


            .cardDiv,
            .cashlessDiv,
            .billsDiv,
            .transfersDiv,
            .saveDiv {
                width: 2.5rem;
                height: 2.5rem;
                padding: 10px;
                border-radius: 50%;
                background: #979797;
            }

            p {
                font-weight: 800;
                margin-top: 10px;
                color: #40196D;
            }
        }
    }

    .container3 {
        display: flex;
        justify-content: space-between;
        padding: 50px;
        margin-top: 50px;

        .leftSide {
            width: 25%;

            h1 {
                font-size: 35px;
                font-weight: 900;
                color: #40196D;
                margin-bottom: 10px;

            }

            p {
                margin-bottom: 10px;
                width: 400px;
            }

            a {
                color: #40196D;
                font-weight: 600;
            }
        }

    }

    .container4 {
        display: flex;
        padding: 50px;
        justify-content: space-between;

        .slides {
            display: flex;
            gap: 30px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: rgb(219, 248, 255);

            .right {
                margin-top: 30px;
            }
        }

        .kuda,
        .send,
        .airtime,
        .bill,
        .gift,
        .web,
        .meta,
        .spend,
        .frequently,
        .fixed {
            display: flex;
            gap: 3.125rem;
            padding: 5px;
            background: rgb(247, 245, 245);
            width: 220px;
            margin-top: 20px;
            transition: 2s ease-in-out;
            box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);



        }

        .kudaChild,
        .sendChild,
        .airtimeChild,
        .billChild,
        .giftChild,
        .webChild,
        .metaChild,
        .spendChild,
        .frequentlyChild,
        .fixedChild {
            display: flex;
            gap: 20px;

            .borderBtm {
                border-bottom: 5px solid #979797;
                border-radius: 5px;
            }

            p {
                font-size: 12px;
                font-weight: 700;
                color: #40196D;
                padding: 5px;
            }
        }

        .content {
            width: 40%;
            margin-top: 100px;

            h2 {
                font-size: 35px;
                color: #40196D;
                font-weight: 800;
            }

            p {
                font-size: 14px;
                padding-top: 15px;
                width: 80%;
            }
        }
    }

    .container5 {
        display: flex;
        justify-content: space-between;
        padding: 50px;

        .content {
            width: 39%;

            h1 {
                font-weight: 900;
                color: #40196D;
                margin-top: 25%;
            }

            p {
                margin-top: 20px;
                margin-bottom: 20px;
                width: 90%;
            }

            a {
                color: #40196D;
                font-weight: 600;
            }

        }

        .slide img{
            width: 100%;
        }
    }

    .container6 {
        display: flex;
        justify-content: space-between;
        padding: 50px;

        .content {
            width: 40%;

            h1 {
                font-weight: 900;
                color: #40196D;
                margin-top: 25%;
            }

            p {
                margin-top: 20px;
                margin-bottom: 20px;
                width: 80%;
            }

            a {
                color: #40196D;
                font-weight: 600;
            }

        }
    }

    .container7 {
        display: flex;
        justify-content: space-between;
        padding: 50px;

        .content {
            width: 35%;

            h1 {
                font-weight: 900;
                color: #40196D;
                margin-top: 25%;
            }

            p {
                margin-top: 20px;
                margin-bottom: 20px;
                width: 100%;
            }

            a {
                color: #40196D;
                font-weight: 600;
            }

        }
    }

    .container8 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 50px;

        .content {
            width: 40%;

            h1 {
                font-weight: 900;
                color: #40196D;
                margin-top: 25%;
            }

            p {
                margin-top: 20px;
                margin-bottom: 20px;
                width: 90%;
            }

            a {
                color: #40196D;
                font-weight: 700;
                letter-spacing: -2;
            }

        }

       
    }

    .container9 {
        padding: 50px;

        h1 {
            text-align: center;
            font-weight: 900;
            color: #40196D;
        }

        .sliders {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;

            .reviews {
                margin-top: 30px;
                margin-right: 20px;
                width: 35%;
                background: #fff;
                padding: 20px;
                border-radius: 5px;
                box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);

                .user {
                    margin-top: 20px;
                    align-items: center;
                    display: flex;
                    gap: 10px;
                    position: relative;
                }

                .profile {
                    width: 55px;
                    height: 55px;
                    border-radius: 50%;
                    background: #40196D;

                    p {
                        position: absolute;
                        bottom: 16px;
                        left: 12px;
                        font-weight: 900;
                        color: #faf6f6;

                    }
                }

            }
        }

        .companies {
            display: flex;
            flex-wrap: wrap;
            cursor: pointer;
            justify-content: center;
            align-items: center;
            margin-top: 8%;

        }
    }

    .container10 {
        background: #e8ecee;
        border-radius: 5px;
        padding: 50px;

        h1 {
            text-align: center;
            font-weight: 900;
            color: #40196D;
            padding-top: 5%;
        }

        .partners {
            display: flex;
            margin-top: 8%;
            gap: 30px;

        }
    }

    .container11 {
        margin-top: 5%;
        padding: 50px;

        h1 {
            text-align: center;
            font-weight: 900;
            color: #40196D;
        }

        .content {
            border: 1px solid #e0e0e0;
            margin: auto;
            border-radius: 10px;
            width: 85%;
            margin-top: 5%;
            background: #fff;
            padding-bottom: 20px;
            box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);

            table {
                width: 100%;
                border-collapse: collapse;


                .tHead {
                    font-weight: 800;
                    color: #40196D;
                    font-size: 20px;
                }

                td {
                    padding: 18px;
                    border-top: 1px solid #e0e0e0;
                }
            }
        }
    }

    .container12 {
        margin-top: 10%;
        padding: 50px;

        h1 {
            text-align: center;
            font-weight: 900;
            color: #40196D;
        }

        .contents {
            display: flex;
            justify-content: space-around;
            margin-top: 5%;

            .kudaBusiness,
            .transfer,
            .loans {
                background: #fff;
                padding: 25px;
                width: 30%;
                box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);


                .icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: #daece5;
                    position: relative;
                    margin-bottom: 20px;

                    .fa-briefcase,
                    .fa-paper-plane,
                    .fa-sack-dollar {
                        font-size: 20px;
                        position: absolute;
                        left: 10px;
                        top: 10px;
                    }
                }

                h2 {
                    font-weight: 800;
                    color: #40196D;
                    margin-bottom: 20px;
                }

                p {
                    margin-bottom: 25px;
                }

                a {
                    font-weight: 800;
                    color: #40196D;
                }
            }
        }
    }

    .container13 {
        display: flex;
        justify-content: space-around;
        padding: 50px;
        z-index: 10;
        background: #e8ecee;
        box-shadow: 10px 15px 5px rgba(0, 0, 0, 0.1);

        .content {
            margin-top: 3%;

            h1 {
                font-weight: 800;
                color: #40196D;
                width: 69%;
                margin-bottom: 20px;
            }

            button {
                margin-top: 20px;
                padding: 15px 45px;
                border-radius: 10px;
                color: #fff;
                font-weight: 800;
                font-size: 16px;
                background: #40196D;
                border: none;
            }
        }
    }

    .container14 {
        padding: 50px;
        border-top: 1px solid #bdcec7;
        margin-top: 8%;

        .top {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: space-between;

            .personal,
            .business,
            .company,
            .help,
            .transparency {
                color: #431972;
                font-weight: 800;


                li {
                    list-style: none;
                    padding-top: 15px;
                    font-weight: 500;
                    font-size: 13px;
                }

                li a {
                    text-decoration: none;
                    color: #383737;
                }
            }
        }

        .bottom {
            margin-top: 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

    }

    .container15 {
        padding: 50px;

        .header {
            text-align: center;
            color: #383737;
            font-size: 14px;


        }

        .locationsDiv {
            display: flex;
            margin-top: 4%;
            gap: 50px;

            .contacts {
                h4 {
                    font-weight: 800;
                    width: 20%;
                    color: #40196D;
                    margin-bottom: 20px;
                }

                a {
                    font-weight: 700;
                }

                .socialLinks {
                    display: flex;
                    justify-content: space-between;

                    .social {
                        width: 30px;
                        height: 30px;
                        border: 1px solid #9e81be;
                        border-radius: 50%;
                        background: #c0cbd4;
                        margin-right: 10px;
                        margin-top: 20px;
                        position: relative;

                    }

                    .fa-brands {
                        position: absolute;
                        left: 6px;
                        top: 5px;
                    }
                }
            }

            .lagos,
            .london,
            .capeTown,
            .canada {
                h4 {
                    font-weight: 800;
                    color: #40196D;
                    margin-bottom: 20px;
                }

                p {
                    font-size: 14px;
                }
            }
        }


    }
}

footer {
    padding: 50px;

    .copyrights {
        font-size: 13px;
        margin-top: 5%;

        p {
            margin-top: 20px;
            color: #979797;
        }
    }
}

@media screen and (max-width:767px) {
    header {
        overflow-x: hidden;

        nav {

            .leftNav .navList ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 9vh;
                background: #fff;
                left: 0;
                padding: 3rem 2rem;
                color: #fff;
                width: 100%;
                height: 100vh;

                li {

                    margin-top: 3.25rem;
                    display: flex;
                    justify-content: space-between;
                }



            }

            .rightNav {

                .signIn {
                    background: lightblue;
                    padding: .75rem 1.875rem;
                    border: none;
                    border-radius: .625rem;
                    position: absolute;
                    top: 12vh;
                    left: 40%;
                    display: none;


                }

                .joinBtn {
                    display: none;
                    position: absolute;
                    top: 12vh;
                    left: 4%;

                }

                .nijaLogo .logoContainer {
                    margin-right: .75rem;
                }


            }
        }

        .hamburger {
            font-size: 1.5625rem;
            color: #40196D;
            display: block;
            position: absolute;
            right: .9375rem;
            top: 1.25rem;
        }

        .cancel {
            font-size: 1.5625rem;
            color: #40196D;
            position: absolute;
            right: .9375rem;
            top: 1.25rem;
            cursor: pointer;
        }
    }

    main {
        padding: 10px;
        width: 100%;

        .container1 {
            flex-direction: column;
            padding: 10px;
            margin: auto;
            margin-top: 20%;

            .leftSide {
                width: 100%;
                text-align: center;
                padding: 20px;

               
            }

            .rightSide .firstCircle {
                margin-top: 10%;
                width: 350px;
                height: 350px;
                margin: auto;


                img {
                    bottom: 10px;
                    width: 100%;
                    left: 1px;
                }

            }
        }

        .container2 {
            padding: 10px;
            margin-top: 10%;
            margin: auto;

            .row1,
            .row2 {
                flex-direction: column;
                padding: 0;
                padding: 20px;

                .cardSlide,
                .cashlessSlide,
                .billsSlide,
                .transfersSlide,
                .saveSlide {

                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    margin-top: 5%;
                }

                .cardDiv,
                .cashlessDiv,
                .billsDiv,
                .transfersDiv,
                .saveDiv {
                    padding: .625rem;
                    width: 2.1875rem;
                    height: 2.1875rem;

                    .fa-credit-card {
                        top: .3125rem;
                    }
                }
            }
        }

        .container3 {
            flex-direction: column;
            padding: 10px;
            width: 100%;
            align-items: center;
            
            .leftSide {
                width: 100%;
                padding: 20px;
                text-align: center;
                margin-top: 30%;

                p {
                    width: 100%;
                }
            }

            .rightSide {

                margin-top: 20%;
                justify-content: center;

                .advert img {
                    width: 100%;
                }
            }
        }

        .container4 {
            padding: 10px;
            margin: auto;
            align-items: center;
            flex-direction: column-reverse;

            .slides {
                gap: 10px;
                margin-top: 50px;

            }

            .kuda,
            .send,
            .airtime,
            .bill,
            .gift,
            .web,
            .meta,
            .spend,
            .frequently,
            .fixed {
                /* width: 100%; */
                gap: 1.25rem;

            }

            .content {
                width: 100%;
                text-align: center;

                p {
                    width: 100%;
                }
            }

        }

        .container5,
        .container7 {
            flex-direction: column;
            padding: 10px;
            width: 100%;
            margin: auto;
            align-items: center;

            .content {
                width: 100%;
                text-align: center;

                p {
                    width: 100%;
                }
            }

            .slide  {
                margin-top: 30px;
            }
        }

        .container6,
        .container8 {
            flex-direction: column-reverse;
            padding: 10px;
            margin: auto;
            align-items: center;

            .content {
                width: 100%;
                text-align: center;

                p {
                    width: 100%;

                }
            }

            .slide img{
                margin-top: 30px;
            }
        }

        .container9 {
            padding: 10px;
            margin: auto;


            h1 {
                margin-top: 10%;
            }

            .sliders {
                padding: 20px;
                .reviews {
                    width: 100%;
                    padding: 10px;

                    p {
                        font-weight: 500;
                    }
                }
            }

            .companies {
                margin: auto;
                margin-top: 5%;
            }

            .companies img {
                margin: auto;
            }

        }

        .container10 {
            padding: 0px;
            margin: auto;
        }

        .container11 {
            padding: 10px;


            .content {
                width: 100%;

                table td {
                    padding: .625rem;
                }
            }
        }

        .container12 {
            padding: 10px;
            margin: auto;
            .contents {
                flex-direction: column;

                .kudaBusiness,
                .transfer,
                .loans {
                    width: 100%;
                    height: auto;
                    margin-top: 10%;
                }
            }
        }

        .container13 {
            padding: 10px;
            flex-direction: column;

            .content {
                text-align: center;
                width: 100%;

                h1 {
                    width: 100%;
                }

                button {
                    margin-top: 15%;
                }
            }

            .slide img {
                display: none;
            }
        }

        .container14 {
            padding: 10px;

            .top {
                gap: 50px;
            }

        }

        .container15 {
            padding: 10px;

            .locationsDiv {
                flex-direction: column;
            }
        }
    }

    footer {
        padding: 15px;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {
    header {
        overflow-x: hidden;

        nav {

            .leftNav .navList ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 9vh;
                background: #fff;
                left: 0;
                padding: 3rem 2rem;
                color: #fff;
                width: 100%;
                height: 100vh;

                li {

                    margin-top: 3.25rem;
                    display: flex;
                    justify-content: space-between;
                }



            }

            .rightNav {

                .signIn {
                    background: lightblue;
                    padding: .75rem 1.875rem;
                    border: none;
                    border-radius: .625rem;
                    position: absolute;
                    top: 12vh;
                    left: 40%;
                    display: none;


                }

                .joinBtn {
                    display: none;
                    position: absolute;
                    top: 12vh;
                    left: 20%;

                }

                .nijaLogo .logoContainer {
                    margin-right: 1.25rem;
                }


            }
        }

        .hamburger {
            font-size: 1.5625rem;
            color: #40196D;
            display: block;
            position: absolute;
            right: .9375rem;
            top: 1.875rem;
        }

        .cancel {
            font-size: 1.5625rem;
            color: #40196D;
            position: absolute;
            right: .9375rem;
            top: 1.875rem;
            cursor: pointer;
        }
    }

    main {
        padding: 20px;

        .container1 {
            padding: 15px;
            gap: 1.25rem;
            margin-top: 10rem;

            .leftSide {
                width: 100%;
            }

            .rightSide .firstCircle {
                width: 18.75rem;
                height: 18.75rem;

                img {
                    width: 100%;
                }
            }
        }

        .container2 {
            padding: 15px;
            margin-top: 5%;

            .row1 {
                padding: 10px;
            }
        }

        .container3 {
            padding: 15px;
            flex-direction: column;
            align-items: center;

            .leftSide {
                width: 50%;
                text-align: center;
                margin-top: 5%;

                p {
                    width: 100%;
                    text-align: center;
                }
            }

            .rightSide {
                .advert img {
                    margin-top: 10%;
                }
            }

        }

        .container4 {
            padding: 15px;
            align-items: center;
            flex-direction: column-reverse;

            .content {
                width: 50%;

                h2,
                p {
                    text-align: center;
                    width: 100%;
                }
            }

            .slides {
                margin-top: 10%;
            }
        }

        .container5,
        .container7 {
            padding: 15px;
            flex-direction: column;
            align-items: center;

            .content {
                width: 50%;
                margin-bottom: 5%;

                h1,
                p {
                    width: 100%;
                    text-align: center;
                }

                a {
                    margin-left: 25%;
                }
            }
        }

        .container6,
        .container8 {
            padding: 15px;
            align-items: center;
            flex-direction: column-reverse;

            .content {
                width: 50%;
                margin-bottom: 10%;

                h1,
                p {
                    width: 100%;
                    text-align: center;
                }

                a {
                    margin-left: 25%;
                }
            }
        }

        .container9,
        .container10,
        .container11,
        .container12 {
            padding: 15px;
        }
    }
}