﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Book Antiqua','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.MainContentBody {
    width: 80%;
    margin: 0 auto;
}

.LogoBody {
    height: 80px;
    padding: 10px 0 0 50px;
}

.Logo {
    height: 55px;
    width: 55px;
}

/* Navigation menu Section*/

.NavBody {
    display: flex;
    height: 85px;
    /*    background-color: #2F8F9D;*/
    justify-content: space-between;
}


.menubar a {
    display: flex;
    color: black;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 28px;
    border-radius: 10px;
    cursor:pointer;
}

.menubar a:hover{
    cursor:pointer;
}


.menubar ul {
    list-style: none;
    display: flex;
}

    .menubar ul li {
        position: relative;
        width: 100%;
    }


.submenu {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 200px;
    z-index: 2000;
    background-color: lightslategrey;
}


    .submenu li {
        display: none;
    }


.menubar li:hover .submenu li {
    top: 0;
    display: block;
    z-index: 2000;
    background-color: lightslategrey;
}


.submenu ul li {
    display: none;
    position: relative;
}














/** Home Page details      */

.BannerArea {
    height: 600px;
    background-color: black;
    overflow: hidden;
    position:relative;
}

    .BannerArea img {
        height: 600px;
        width:100%;
    }



.ImageBody {
    height: 80vh;
    border: 1px solid red;
}

.banner {
    height: 480px;
    width: 100%;
    opacity: 0.6;
   
}

.bannerInfor {
    position: absolute;
    right: 50px;
    top: 20px;
}

    .bannerInfor h1 {
        font-weight: bold;
        font-size: 34px;
        color: white;
    }

    .bannerInfor p {
        font-size: 12px;
        color: white;
        width:300px;
        float:right;
    }


/********************* Publication ***************************/

.Download-content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    width: 100%;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px black;
}

    .Download-content-table thead tr {
        background-color: #009879;
        color: #ffffff;
        text-align: left;
        font-weight: bold;
    }

    .Download-content-table th, .Download-content-table td {
        padding: 12px 15px;
    }

    .Download-content-table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .Download-content-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3f3;
        }

        .Download-content-table tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }







/*************** Payment Methods Pages *******************/
.paypointslist {
    width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr,1fr;
    grid-template-areas: "box1 box2";
}


.box1 {
    grid-area: box1;
}

.box2 {
    grid-area: box2;
}

.mobile {
    display: grid;
    grid-template-columns: 1fr,1fr;
    grid-template-areas: "AT MTN";
    background: #18978F;
    border-radius: 5px;
    padding: 10px;
}

    .mobile .AT h2 {
        text-align: center;
        color: red;
    }

.AT {
    grid-area: AT;
}

.mobile .MTN h2 {
    text-align: center;
    color: yellow;
}

.MTN {
    grid-area: MTN;
}


.Bank {
    margin-top: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "Bbox1 Bbox2 Bbox3";
    grid-column-gap: 20px;
    padding: 10px;
}

.Bbox1 {
    grid-area: Bbox1;
}

.Bbox2 {
    grid-area: Bbox2;
}

.Bbox3 {
    grid-area: Bbox3;
}

.Bank h2 {
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
}

/*************** Payment Methods Pages *******************/

.QuestionAnswer {
    display: grid;
    grid-template-rows: repeat(6,100px);
    grid-template-areas: "QuestionBox1" "QuestionBox2" "QuestionBox3" "QuestionBox4" "QuestionBox5" "QuestionBox6";
    grid-row-gap: 10px;
}



.QuestionBox1 {
    height: 100px;
    grid-area: QuestionBox1;
}

.QuestionBox2 {
    height: 100px;
    grid-area: QuestionBox2;
}

.QuestionBox3 {
    height: 100px;
    grid-area: QuestionBox3;
}

.QuestionBox4 {
    height: 100px;
    grid-area: QuestionBox4;
}

.QuestionBox5 {
    height: 100px;
    grid-area: QuestionBox4;
}

.Question {
    background: grey;
    height: 50px;
    display: grid;
    grid-template-columns: 2px 50px 1fr;
    grid-template-areas: "LineQ QSymbol LineAsk";
}

    .Question .LineQ {
        height: 50px;
        width: 5px;
        background: red;
        grid-area: LineQ;
    }

    .Question .QSymbol {
        font-size: 10px;
        font-weight: bold;
        padding: 0;
        grid-area: QSymbol;
        margin-left: 5px;
    }

        .Question .QSymbol h1 {
            font-size: 18px
        }

    .Question .LineAsk {
        font-weight: bold;
        grid-area: LineAsk;
    }

        .Question .LineAsk h3 {
            font-size: 18px;
        }



.Answer {
    background: wheat;
    height: 50px;
    display: grid;
    grid-template-columns: 2px 50px 1fr;
    grid-template-areas: "LineQA ASymbol LineAns";
}

    .Answer .LineQA {
        height: 50px;
        width: 5px;
        background: Black;
        grid-area: LineQA;
    }

    .Answer .ASymbol {
        margin-left: 5px;
        grid-area: ASymbol;
    }

    .Answer .LineAns {
        font-weight: bold;
        grid-area: LineAns;
    }

    .Answer .ASymbol h1 {
        font-size: 18px;
    }

    .Answer .LineAns h3 {
        font-size: 15px;
    }

/********************** Water Services *****************************/

.Services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 350px 350px;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-areas: "Bulangililo Kafue Mwambashi" "Bulangililo ";
}

.Bulangililo, .Kafue, .Mwambashi, .Chambishi, .Sewerage {
    border: 5px solid Gray;
    border-radius: 10px;
    padding: 10px;
}

    .Bulangililo h2, .Kafue h2, .Mwambashi h2, .Chambishi h2, .Sewerage h2 {
        font-size: 20px;
        text-align: center;
        border-bottom: 1px solid red;
    }


    .Sewerage ul {
        margin-left: 20px;
    }


/************************** Company Profile *************************/
.MissionArea {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "Vision Mission Values Function";
    grid-column-gap: 10px;
    height: 400px;
    margin-bottom:30px;
}

    .MissionArea h2 {
        text-align: center;
        border-bottom: 1px solid red;
    }

    .MissionArea .Vision, .MissionArea .Mission, .MissionArea .Values, .MissionArea .Function {
        border: 2px solid gray;
        border-radius: 10px;
    }



    .MissionArea .Vision {
        grid-area: Vision;
        padding: 10px;
    }


    .MissionArea .Mission {
        grid-area: Mission;
        padding: 10px;
    }


    .MissionArea .Values {
        grid-area: Values;
        padding: 10px;
    }

        .MissionArea .Values ul {
            margin-left: 30px;
        }

    .MissionArea .Function {
        grid-area: Function;
        padding: 10px;
    }

        .MissionArea .Function ul {
            margin-left: 30px;
        }


/*********************** Peri Urban ****************/


.PUBody {
    display: grid;
    width: 100%;
}


.BodyOne {
    display: grid;
    grid-template-areas: "BO_One BO_Two";
    grid-template-columns: 1fr 1fr;
    /*   border: 1px solid black;
    border-radius: 20px;*/
    grid-gap: 10px;
    overflow: hidden;
 
}

.BO_One {
    grid-area: BO_One;
    padding: 20px;
    justify-content: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.BO_Two {
    height: 450px;
    width: 100px;
    grid-area: BO_Two;
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)),url(../Img/Kidsdrawingwater.jpg),no-repeat;*/
}

    .BO_Two img {
        height: 350px;
    }



.BodyTwo {
    display: grid;
    grid-template-areas: "BT_One BT_Two";
    grid-template-columns: 1fr 1fr;
    /*   border: 1px solid black;
    border-radius: 20px;*/
    grid-gap: 10px;
    overflow: hidden;
}

.BT_One {
    height: 450px;
    width: 100px;
    grid-area: BT_One;
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)),url(../Img/Kidsdrawingwater.jpg),no-repeat;*/
}

    .BT_One img {
        height: 350px;
    }


.BT_Two {
    grid-area: BT_Two;
    padding: 20px;
    justify-content: center;
}




.BodyThree {
    display: grid;
    grid-template-areas: "BTH_One BTH_Two";
    grid-template-columns: 1fr 1fr;
    /*   border: 1px solid black;
    border-radius: 20px;*/
    grid-gap: 10px;
    overflow: hidden;
}

.BTH_One {
    grid-area: BTH_One;
    padding: 20px;
    justify-content: center;
}

.BTH_Two {
    grid-area: BTH_Two;
    height: 450px;
    width: 100px;
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)),url(../Img/Kidsdrawingwater.jpg),no-repeat;*/
}

    .BTH_Two img {
        height: 350px;
    }







/********* NWSSP1 ******/

.NWSSP1 h2 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid blue;
}


.NWSSP1 h3 {
    font-size: 18px;
    font-weight: bold;
}

.NWSSP1 p {
    font-size: 14px;
}



/********* NWSSP ******/

.nwssp h2 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid blue;
}


.nwssp h3 {
    font-size: 18px;
    font-weight: bold;
}

.nwssp p {
    font-size: 14px;
}







/******* FOOT Area ********/
footer {
    height: 100px;
    width: 100%;
    display: grid;
    grid-template-areas: "FT1 FT2 FT3";
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid black;
}

.FT1 {
    grid-area: FT1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.FT2 {
    grid-area: FT2;
}

.FT3 {
    grid-area: FT3;
}


footer .FT3 a {
    padding: 18px 24px;
}

    footer .FT3 a img {
        height: 28px;
        width: 28px;
    }




/** Select list area*/
.selection-list {
    height: 180px;
    width: 70%;
    overflow: hidden;
    display: grid;
    margin: 10px auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-template-areas: "ListOne ListTwo ListThree Listfour";

}

.ListOne, .ListTwo, .ListThree, .ListFour {
    text-align: center;
    border-radius: 10px;
    margin: 15px;
}

.selection-list a, .selection-list a, .selection-list a, .selection-list a {
    padding: 20px 20px;
    transition: 0.4s ease-in-out;
    color: black;
    font-size: 18px;
}

    .selection-list a:hover, .selection-list a:hover, .selection-list a:hover, .selection-list a:hover {
        box-shadow: 0px 0px 12px black;
        transition: 0.4s ease-in-out;
        text-decoration: none;
        list-style: none;
    }

    .selection-list a img {
        height: 50px;
        width: 50px;
    }


.ServicesInfor {
    height: 250px;
    width: 100%;
    background-color: white;
    overflow: hidden;
    display: grid;
    grid-auto-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "SI1 SI2 SI3 SI4";
    grid-column-gap: 10px;
    padding: 15px;
}

.SI1 {
    grid-area: SI1;
}

    .SI1 h1 {
        border-bottom: 1px solid black;
    }


.SI2 {
    grid-area: SI2;
}

    .SI2 h1 {
        border-bottom: 1px solid black;
    }


.SI3 {
    grid-area: SI3;
}

    .SI3 h1 {
        border-bottom: 1px solid black;
    }

.SI4 {
    grid-area: SI4;
}

    .SI4 h1 {
        border-bottom: 1px solid black;
    }


.ServicesInfor h1 {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}









.Bill-Check {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "BC-Information BC-Details";
    height: 200px;
}

.BC-Information {
    width: 70%;
    text-align: center;
    margin-bottom: 10px;
}

    .BC-Information h1 {
        text-align: center;
        border-bottom: 1px solid red;
    }


.BC-Details {
    width: 70%;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

    .table td, .table th {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: center;
    }

    .table tbody tr:nth-child(odd) {
        background-color: #f5f5f5;
    }





















.NWSSP {
    background-color: #2F8F9D;
    height: 450px;
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
}

    .NWSSP .NWSSP-Content {
        width: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .NWSSP h1 {
        border-bottom: 1px solid red;
    }


.Option-List {
    margin-top: 10px;
    margin-bottom: 45px;
    display: grid;
    height: 350px;
    width: 100%;
    grid-auto-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-template-areas: "OL1 OL2 OL3 OL4";
}

    .Option-List .OL1 {
        grid-area: OL1;
        width: 100%;
        height: 380px;
        border: 1px solid red;
        border-radius: 5px;
        padding: 15px;
    }

        .Option-List .OL1 img, .Option-List .OL2 img, .Option-List .OL3 img, .Option-List .OL4 img {
            height: 200px;
            width: 100%;
        }

    .Option-List .OL2 {
        grid-area: OL2;
        width: 100%;
        height: 380px;
        border: 1px solid red;
        border-radius: 5px;
        padding: 15px;
    }

    .Option-List .OL3 {
        grid-area: OL3;
        width: 100%;
        height: 380px;
        border: 1px solid red;
        border-radius: 5px;
        padding: 15px;
    }

    .Option-List .OL4 {
        grid-area: OL4;
        width: 100%;
        height: 380px;
        border: 1px solid red;
        border-radius: 5px;
        padding: 15px;
    }



        .Option-List .OL1 .OLInfor h1, .Option-List .OL2 .OLInfor h1, .Option-List .OL3 .OLInfor h1, .Option-List .OL4 .OLInfor h1 {
            font-size: 22px;
            font-weight: bold;
            text-align: center;
        }










.POOLS {
    height: 350px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-template-areas: "Pool-Img Pool-Infor";
    margin-bottom: 20px;
    position: relative;
    background-color: #2F8F9D;
}

.Pool-Img {
    grid-area: Pool-Img;
}

    .Pool-Img Img {
        height: 350px;
    }

.POOLS .Pool-Infor {
    grid-area: Pool-Infor;
    position: absolute;
    /* border: 1px solid black;*/
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Pool-Infor h1 {
    font-size: 34px;
    text-align: center;
    border-bottom: 1px solid red;
}

.Pool-Infor p {
    font-size: 15px;
    text-align: center;
}

.POOLS a {
    border: 1px solid Red;
    padding: 12px 15px;
    border-radius: 10px;
    color: white;
    transition: 0.4s linear;
}

    .POOLS a:hover {
        background-color: white;
        color: black;
        text-decoration: none;
        box-shadow: 0px 0px 15px black;
    }


.Bill_Understand {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-template-areas: "Bill-Under Cut-Bill";
    height: 350px;
    position: relative;
}

.Bill-Under {
    grid-area: Bill-Under;
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.Cut-Bill {
    grid-area: Cut-Bill;
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

    .Bill-Under h1, .Cut-Bill h1 {
        font-size: 35px;
        text-align: center;
        border-bottom: 1px solid Red;
    }

    .Bill-Under p, .Cut-Bill p {
        text-align: center;
        font-size: 15px;
        margin-bottom: 55px;
    }


    .Bill-Under a, .Cut-Bill a {
        border: 1px solid Red;
        padding: 12px 15px;
        border-radius: 10px;
        color: black;
        transition: 0.4s linear;
    }

        .Bill-Under a:hover, .Cut-Bill a:hover {
            background-color: white;
            text-decoration: none;
            box-shadow: 0px 0px 15px black;
        }




/********************** MEDIA QUERIES ****************************/

@media(max-width: 980px) {

    /*  .NavigationBody {
        height:100vh;
        width:100%;
        background-color: white;
        padding-right: 20px;
    }
*/
    .LogoBody {
        height: 40px;
        width: 40px;
        padding: 10px 0 0 50px;
    }

    .Logo {
        height: 80px;
        width: 80px;
    }


    .NavBody .menuCheck {
        display: block;
    }


    .NavBody ul {
        display: block;
        position: fixed;
        height: 100vh;
        width: 100%;
        z-index: 100;
    }

        .NavBody ul li {
            display: block;
        }


    .NavBody #check:checked ~ ul {
        display: block;
    }

    .NavBody #check:checked ~ .NavigationBody {
        height: 100vh;
        width: 100%;
    }
}






@media(max-width: 500px) {


    .Logo {
        height: 50px;
        width: 50px;
    }







    .Download-content-table thead {
        display: none;
    }

    .Download-content-table, .Download-content-table tbody, .Download-content-table tr, .Download-content-table td {
        display: block;
        width: 100%;
    }


        .Download-content-table tbody td {
            text-align: right;
            padding-left: 50%;
            text-align: right;
            position: relative;
        }

            .Download-content-table tbody td::before {
                content: attr(data-label);
                position: absolute;
                left: 0;
                width: 50%;
                padding-left: 15px;
                font-weight: bold;
                text-align: left;
            }
}
