* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    /*    font-family: Helvetica,sans-serif;*/
    background-color: #f1f1f1;
}

/*Start to Header*/

.header {
    width: 100%;
    height: 100px;


}


.header .myrow {
    display: flex;
    height: 100%;
    background-color: red;


}

.header .myrow > div {
    /*    background-color: gray;*/
    font-size: 30px;
    text-align: center;


}

.mycol-1,
.mycol-2,
.mycol-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}


.mycol-2 input[type="text"] {
    width: 120px;
     !important;
    height: 40px !important;
    border-radius: 5px;
    margin-right: 10px;
    padding: 10px;
    border: none;
    font-size: 20px;
}

.mycol-2 input::placeholder {
    font-size: 18px;
    font-style: italic;
}

.mycol-3 select {
    padding: 3px !important;
    font-size: 20px;
}

.mycol-4,
.mycol-5 {
    display: none;
    cursor: pointer;
}


@media only screen and (max-width:920px) {
    .logo1 {
        width: 160px;
        height: auto;
    }

    .onlinebanking {
        display: none;
    }

    .header {
        width: 100%;
        height: 60px;


    }
}

@media only screen and (max-width:600px) {

    .mycol-2,
    .mycol-3 {
        display: none;
    }

    .mycol-4,
    .mycol-5 {
        display: block;
    }
}

.mobilelogin {
    position: absolute;
    top: 0;
    width: 100%;
    height: 220px;
    z-index:99999 !important; 
    background-color: white;
    border: 2px solid gray;
    padding: 10px;
    
   
}


.mobilelogin input {
    box-sizing: border-box;
    width: 95%;
    display: block;
    margin: 0px auto 10px auto;
    padding: 8px;
    border: 2px solid black;
    border-radius: 8px;
}




/*End to Header*/





.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    background: url(../../images/1589296941246.jpg) no-repeat;

}

.topnav {
    position: absolute;
    width: 70em;
    top: 20px;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translate(-50%);
    border-radius: 30px;
    z-index: 9999;

}


/*Top Nav Bar*/

.topnav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 5px;

}

.topnav ul li {
    float: left;
}

.topnav ul li a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-right: 2px solid gray;
}

.topnav ul li a.active {
    background-color: red;
}


.topnav ul li a:hover {
    background-color: red;
    color: white;
}


.my-dropdown {
    display: inline-block;
   
}

.my-dropdown .my-dropdown-content {
    position: absolute;
    background-color: black;
    display: none;
    max-width: 200px;

    
   


}

.my-dropdown .my-dropdown-content a {
    display: block;
    border-bottom: 5px solid red;
}

.my-dropdown .my-dropdown-content a:first-child {
/*    background-color: green;*/
}

.my-dropdown:hover .my-dropdown-content {
    display: block;
     
}

@media only screen and (max-width:900px) {
    .topnav {
        display: none;
        position: relative;
        top: 0;
    }
}



/*End of Top nav bar*/


.bnk-8 {
    position: absolute;
    max-width: 500px;
    background-color: white;
    padding: 20px 30px;
    top: 35%;
    left: 30%;
    transform: translate(-30%);


}

.bnk-8-button {
    background-color: red;
    color: white;
    padding: 8px 16px;
    font-weight: 800;
    outline: none;
    border: none;
    border-radius: 6px;
}

@media only screen and (max-width:900px) {
    .bnk-8 {
        position: relative;
        max-width: 100%;
        display: block;
        margin-left: -15px;


    }
}




/*hambuger start*/

.container-hambuger {

    padding: 5px 5px 5px 9px;
    ;
    display: none;
}


.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 5px;
    background-color: red;
    margin: 4px 0;
    transition: 0.4s;
}

.change-hamburger .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
}

.change-hamburger .bar2 {
    opacity: 0;
}

.change-hamburger .bar3 {
    transform: translate(0, -9px) rotate(45deg);
}


@media only screen and (max-width:900px) {

    .container-hambuger {
        display: block;
        position: relative;


    }
}

/*hambuger end*/


/*offcanvas sidebar*/

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 18px 32px;
    text-decoration: none;
    font-size: 20px;
    color: black;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover:not(.closetopic, .closebtn) {
    color: #f1f1f1;
    background: red;
    color: white;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidenav .closetopic {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 20px;
    color: red;
    font-weight: bold;

}

@media only screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/* End of offcanvas sidebar*/





/*sticky social bar*/


.icon-bar {
    position: fixed;
    right: 0;
    top: 18%;
    z-index: 9999 !important;

}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}


@media screen and (max-width:600px) {


    .icon-bar {
        position: fixed;
        right: 0;
        top: 60px;
        z-index: 9999999999;

    }

    .icon-bar a {
        display: block;
        text-align: center;
        padding: 10px;
        transition: all 0.3s ease;
        color: white;
        font-size: 20px;
    }


}



.icon-bar a:hover {
    background-color: #000;
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: #55ACEE;
    color: white;
}

.google {
    background: #dd4b39;
    color: white;
}

.linkedin {
    background: #007bb5;
    color: white;
}

.youtube {
    background: #bb0000;
    color: white;
}



/* End of sticky social bar*/





.breadcrum {
    display: none;
    padding-top: 10px;
}

@media only screen and (min-width: 900px) {
    .breadcrum {
        display: block;
    }
}



@media only screen and (max-width: 600px) {
    .col-4 {
        width: 100%;
        margin-bottom: 20px;
    }
}



.footer {
    background-color: gray;
    padding-top: 20px;
    width: 100%;
    height: auto;
    margin-top: 40px;
}


ul.footerlinks {
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}

ul.footerlinks li {
    text-align: left;
    padding-left: 40px;


}

ul.footerlinks li:first-child {
    padding-bottom: 10px;
    font-weight: bold;
}

ul.footerlinks li a {
    text-decoration: none;
    color: white;
}

ul.footerlinks li a.active {
    color: red;
}



@media only screen and (max-width: 600px) {

    .footer {
        height: auto;
    }

    .container .row .col-3 {
        width: 100%;
        display: block;
        position: relative;
        margin: 20px;

    }
}


.downfooter {
    text-align: center;
    color: white;
    font-weight: bold;

}

.cardlist li {
    padding: 5px;
}





/* start of footer collapsible*/



.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active-collapse,
.collapsible:hover {
    background-color: #555;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active-collapse:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}


.footerlinks-collapsible {
    list-style-type: none;
}

.footerlinks-collapsible li {
    padding: 10px;
}

.footerlinks-collapsible li a {
    color: red;
    text-decoration: none;

}


.footercollapsible {
    display: none;
    padding-bottom: 40px;
}


.topfooter {
    display: ;
}

.copyright {
    display: none;
}


@media only screen and (max-width: 600px) {

    .footercollapsible {
        display: block;
    }

    .topfooter {
        display: none;
    }


    .downfooter {
        display: none;

    }

    .copyright {
        display: block;
        color: white;
    }


}


/* End start of footer collapsible*/



/*start of form*/


input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=date],
select,
textarea {
    width: 100%;
    padding: 7px;
    margin-bottom: 15px;
    border: 2px solid #666;
    border-radius: 4px;
    resize: vertical;
    background-color: white;
}

label {
    padding: 9px 12px 0px 0;
    display: inline-block;
}


input[type=submit] {
    background-color: red;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: darkred;
}

.container-2 {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}



/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

    .col-25,
    .col-75,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }


    input[type=text],
    select,
    textarea {

        margin-bottom: 0px;
        padding: 2px 7px 4px 7px;
        width: 100%;

    }



}



@media screen and (min-width: 1000px) {

    label.login-23 {
        float: right;
    }

}


/*End start of form*/



/*start of profile page css*/


@media screen and (max-width: 600px) {

    .sm-tw {
        width: 100%;
        font-size: 16px;
    }

    .yt-tp {
        display: none;
    }

}




.transac-bt {
    display: flex;
    justify-content: space-around;
    /*    border: 2px solid green;*/
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
}


.transac-bt a {
    float: left;
    padding: 10px;
    padding-right: 20px;
    font-size: 13px;
    color: black;
    text-decoration: none;
    border-left: 5px solid red;
    margin-right: 20px;
}


@media screen and (max-width: 600px) {



    .transac-bt {
        display: block;
        width: 100%;
        padding-top: 0px;

    }


    .transac-bt a {
        float: none;
        display: block;
        background-color: #f0f0f0;
        padding: 10px;
        font-size: 17px;
        color: black;
        text-decoration: none;
        margin-bottom: 20px;
        margin: 10px -20px;

    }

}



/*profile table css*/

th {
    color: green;
}

td {
    background-color: #f0f0f0;
    color: black;

}

tr {
    margin-bottom: 120px;
}

table,
th,
td {
    padding: 10px;
    max-width: 100%;
    border: 1px solid green;
}



.cs-sh {
    border-left: 10px solid #f1f1f1
}



@media screen and (max-width: 600px) {

    .cs-sh {

        border-left: none;
        margin-top: 10px;

    }

    .jd-dj {
        display: block;
    }

}



.sidenar_link ul{
    display: block;
    list-style-type: none;
    padding-bottom: 20px
    
    
}


.sidenar_link ul{
    text-align: right;
    padding-right: 20px;
}

.sidenar_link ul li a{
    display: block;
    text-decoration: none;
    color:#666;
    padding: 6px;
    font-weight: 600;

}


















