*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    --white-color: rgb(255, 255, 255);
    --blue-color:rgb(1, 73, 131);
    --blue-dim-color:rgb(1, 54, 104);
    --blue-dim-color-transparent:rgba(1, 34, 104, 0.77);
    --red-color: #ff4f40;
    --red-dim-color: #dd2f1f;
    --bg-grey: rgb(245, 241, 241);
    --black-color: rgb(38, 38, 38);
    --opacity-black: rgba(0, 0, 0, 0.726);
    --dark-black: rgb(15, 15, 15);
    --dark-grey: rgb(182, 180, 180);
    --green-color: rgb(1, 243, 102); 
    --nav-bg: #f2f8f3;
    --service-bg: rgb(17, 34, 49);
}
/***********          Fonts         ***********/
@font-face{
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-300italic - latin */
  @font-face{
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: normal;
    src: url('../fonts/poppins-v20-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  @font-face{
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-500italic - latin */
@font-face{
    font-display: swap; 
    font-family: 'Poppins';
    font-style: italic;
    font-weight: bold;
    src: url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'); 
}
/*
@font-face{
    font-family: "Roboto";
    src: url('../fonts/roboto-v30-latin-700.woff2');
    font-weight: bold;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/roboto-v30-latin-700italic.woff2');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-v30-latin-regular.woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-v30-latin-regular.woff2');
    font-weight: normal;
    font-style: italic;
}*/
/***********          Generals         ***********/
body{
    font-family: Poppins, Georgia, 'Times New Roman', Times, serif;
    background-color: var(--bg-grey);
    color: var(--black-color);
    margin: 0 auto;
    padding: 0 ;
    width: 100%;
    position: relative;
}
section{
    margin:20px auto;
    padding: 0 60px;
    max-width: 1300px;
    position: relative;
}
.socially{
    margin: 10px auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    font-size: 1em;
}
.align-center{
    text-align: center;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.white{ 
    color: var(--white-color);
}
.black{ 
    color: var(--black-color);
}
.blue{ 
    color: var(--blue-color);
}
.red{ 
    color: var(--red-color);
}
.green{
    color: var(--green-color)
}
.blue-bg{
    background: var(--blue-dim-color);
    font-weight: bold;
    padding: 10px;
    width: 100%;
    color: var(--white-color);
}
.completed{ 
    color: rgb(1, 243, 102);
    /* border: 1px solid rgb(1, 243, 102);
    background: rgba(99, 230, 154, 0.226); */
    font-weight: bold;
    padding: 5px 10px;
    width: 100%;
}
.failed{ 
    color: rgb(217, 28, 41);
    /* border: 1px solid rgb(217, 28, 41);
    background: rgba(218, 123, 129, 0.226); */
    font-weight: bold;
    padding: 5px 10px;
    width: 100%;
}
.pending{
    color: #740efa;
    /* border: 1px solid #740efa;
    background: rgba(172, 134, 221, 0.356); */
    font-weight: bold;
    padding: 5px 10px;
    width: 100%;
}
h1,h2,h3,h4,h5{
    font-family: Poppins, Arial, Helvetica, sans-serif;
}
h1{
    font-size: 2.5em;
    color: var(--black-color);
    margin: 5px auto;
    line-height: 120%;
}
h2{
    font-size: 2em;
    color: var(--black-color);
    margin: 5px auto;
}
h3{
    font-size: 1.5em;
    color: var(--black-color);
    margin: 5px auto;
}
h4{
    font-size: 1.3em;
    color: var(--black-color);
    margin: 5px auto;
}
h5{
    font-size: 1em;
    color: var(--black-color);
    margin: 5px auto;
}
p{
    font-size: 0.9em;
    color: var(--black-color);
    margin: 5px auto;
    line-height: 180%;
}
a{
    color: var(--red-color); 
    text-decoration: none; 
}
a:hover{ 
    text-decoration: none;
    font-style: normal; 
    font-weight: bolder;
}
i{
    color: var(--white-color);
    font-size: 1em;
    margin-right: 5px;
}
ul{
    margin-left: none;
    padding-left: none;
}
li{
    list-style-type: square;
    margin: 10px;
}
hr{
    margin: 10px auto;
    border: none;
    background: var(--red-color);
    width: 100%;
    height: 2px;
}
/***********          Header         ***********/
.hero-banner{
    position: relative;
    height: 650px; /* Adjust the height as needed */
    overflow: hidden;
    padding: 0 auto;
    margin: 0 auto; 
    background: url('../img/hd/happy-woman-her-husband.jpg') center center/cover no-repeat; /* Set your background image */
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%); Define the slant shape */
}
/*.hero-banner:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 650px; 
  
}*/
.header{
    position: relative;
    width: 100%;
    /* top: 0px; */
    padding: 10px;
    background: var(--blue-color);
    display: flex;
    justify-content: space-between;
    z-index: 3;
}
.header2{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    background: var(--blue-dim-color-transparent);
    z-index: 3;
}
.header2 a.nav-link{
    color: var(--white-color);
    font-weight: bold;
    text-decoration: none;
}
.header .left{
    align-self: center;
    display: flex;
    justify-content: center;
    width: auto;
}
.header .left .logo{
    width: 120px;
    height: 40px;
    margin: 0 10px;
}
.header .left #mobile-icon{
    display: none;
}
.header a{
    align-self: center;
    color: var(--white-color);
    margin: 0 5px;
    font-weight: none;
}
.header a:hover{
    text-decoration: underline;
    font-style: normal;
}
/* .header .center{
    align-self: center;
    margin: 0 20px;
} */
.header .right{
    align-self: center;
    margin: 5px;
    margin-left: 15px;
    position: relative;
}
.header .right a{
    margin: 0 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.header .reg-tool{
    display: none;
    position: absolute;
    top: 65px;
    right: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 5px;
    width: 300px;
    color: var(--white-color);
}
.header .reg-tool a{
    margin: 10px auto;
    display: block;
}
.nav-cont{
    display: none;
}
/*********** Admin Nav  ***********/
.admin-cont{
    display: block;
    position: fixed;
    background-color: var(--black-color);
    left: 0px;
    top: 65px;
    color: #fff;
    width: 20%;
    height: 100vh;
    z-index: 1;
    padding: 20px;
}
.admin-cont a{
    color: var(--white-color);
    margin: 10px auto;
    display: block;
}
.admin-section{
    margin: 7% auto 10% 21%;
    padding: 0 20px;
    max-width: 950px;
}
.admin-section-new{
    margin: 0px auto 10% 21%;
    padding: 0 20px;
    max-width: 950px;
}
.admin-section-new hr{
    margin: 7px auto;
    border: none;
    background: var(--dark-grey);
    width: 100%;
    height: 1.3px;
}
/************************************/
/*.reg-tool::before{
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%);
    border-top-color: var(--red-dim-color);
}*/
#red-button{
    width: 100%;
    background-color: var(--red-color);
    padding: 5px 20px;
    margin: 5px auto;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--white-color); 
}
#red-button>i{
    margin-right: 0px;
}
#red-button:hover{
    background-color: var(--red-dim-color);
}
.button2{
    background: var(--blue-color);
    color: var(--white-color);
    padding: 10px 20px;
    font-size: 1em;
    font-weight: var(--font-medium);
    box-shadow: 0 4px 8px hsla(216, 66%, 45%, 0.45);
    transition: .3s;
    cursor: pointer;  
    border: none;
    width: fit-content;
}
.del-button{
    background-color: var(--red-color);
    border-radius: 10px;
    border: none;
    text-decoration: none;
    color: var(--white-color); 
    padding: 5px 10px;
}
.side-button{
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 999;
    background: var(--red-color); 
    color: var(--white-color);
    padding: 12px 10px;
    border-radius: 0px 8px 8px 0px;
    writing-mode: vertical-lr;
    /* text-orientation: mixed; */
    font-weight: bold;
    cursor: pointer;
    transform: rotate(180deg);
    border: none;
}
.logged-footer{
   display: none; 
}
.side-button:hover{
    background: var(--red-dim-color);
}
/********************* Original Banner Center Styles*********************/
/* .hero-banner .banner-center{
    display: flex;
    align-items: center;
    flex-flow: column wrap;
    margin: 250px auto;
}
.hero-banner .banner-center a.banner-btn{
    background-color: var(--red-color);
    padding: 5px 30px;
    margin: 25px auto;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--white-color);
    transition: 1s; 
}
.hero-banner .banner-center a.banner-btn:hover{
    background-color: var(--red-dim-color);
    font-style:normal;
}
.banner-center h1{
    font-size: 3em;
    color: var(--white-color);
    text-align: center;
    margin: 5px auto;
}
.banner-center h3{
    font-size: 1.5em;
    color: var(--white-color);
    text-align: center;
    margin: 5px auto;
    font-weight: normal;
} */
/*******************************************/
.hero-banner .banner-center{
    text-align: left;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    margin: 200px auto;
    padding: 30px
}
.hero-banner .banner-center .left{
    flex: 1 350px;
}
.hero-banner .banner-center .right{
    flex: 1;
}
.hero-banner .banner-center .banner-btn{
    background-color: var(--red-color);
    font-size: 1em;
    padding: 10px 30px;
    margin: 25px 0px;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--white-color);
    transition: 1s; 
}
.hero-banner .banner-center a.banner-btn:hover{
    background-color: var(--red-dim-color);
    font-style:normal;
}
.banner-center h1{
    font-size: 3em;
    color: var(--white-color);
    text-align: left;
    margin: 5px auto;
}
.banner-center h3{
    font-size: 1em;
    color: var(--white-color);
    font-weight: bold;
    text-align: left;
    margin: 5px auto;
}
/*      buttons         */
.router{
    position: relative;
    width: 55%;
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    background: var(--blue-dim-color);
    overflow: hidden;
    border-radius: 20px 0px 20px 0px;
    margin: -50px auto 0px auto;
    z-index: 2;
}
.router h4{
    font-size: 1.1em;
    color: var(--white-color);
    text-transform: uppercase;
}
.router .left{
    flex: 1;
    width: 100%;
    padding: 20px;
    background: var(--blue-color);
    text-align: center;
    align-self: stretch;
}
.router .right{
    flex: 1;
    width: 100%;
    padding: 20px;
    text-align: center;
    align-self: center;
}
.router .right a{
    font-weight: bold;
    color: var(--white-color);
}
.router .right a:hover{
    color: var(--nav-bg);
}
.blue-button{
    background-color: var(--blue-color);
    text-decoration: none;
    color: var(--white-color);
    padding: 5px 25px;
    margin: 5px auto;
    border-radius: 20px;
    border: none;
    font-weight: bold;
}
.blue-button:hover{
    background-color: var(--blue-dim-color);
    color: var(--white-color);
}
.red-button{
    background-color: var(--red-color);
    padding: 10px 25px;
    margin: 5px auto;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--white-color); 
}
.red-button:hover{
    background-color: var(--red-dim-color);
    color: var(--white-color)
}
.black-button{
    background-color: var(--black-color);
    padding: 10px 25px;
    margin: 5px auto;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--white-color); 
    width: 100%;
}
.black-button:hover{
    background-color: var(--dark-grey);
    color: var(--black-color);
}
.submit-button{
    width: 100%;
    padding: 10px 25px;
    margin: 5px auto;
    border-radius: 5px;
    border: none; 
    text-decoration: none;
    background-color: var(--red-color);
}
.submit-button:hover{
    background-color: var(--red-dim-color);
}
.submit-blue{
    width: 100%;
    padding: 10px 25px;
    margin: 10px auto;
    border-radius: 5px;
    border: 1px solid var(--white-color); 
    text-decoration: none;
    text-align: center;
    background: transparent;
}
.submit-blue:hover{
    background-color: var(--black-color);
    border: none;
}
.skip{
    width: 100%;
    padding: 10px 25px;
    margin: 10px auto;
    border-radius: 5px;
    border: none; 
    text-decoration: none;
    text-align: center;
    background: transparent;
    color: var(--blue-color);
    cursor: pointer;
}
.submit-blue2{
    width: 100%;
    padding: 10px 25px;
    margin: 10px auto;
    border-radius: 5px;
    border: 1px solid var(--white-color); 
    text-decoration: none;
    text-align: center;
    background: var(--blue-color);
}
.submit-blue2:hover{
    background-color: var(--black-color);
    border: none;
}
.btn-center{
    margin: 20px auto;
}
.btn-right{
    right: 0px;
}
/*      Containers  [banking differently]    */
.bank-diff{
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    background: transparent;
    margin: 20px auto;
}
.bank-diff .items{
    flex: 1 1 280px;
    margin: 10px;
    align-self:stretch;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
}
.bank-diff .items:hover{
    box-shadow: -2px 2px 5px var(--nav-bg);
}
.bank-diff .items img{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin: 10px auto;
}
.bank-diff .items i{
    font-size: 2.5em;
    color: var(--red-color);
    text-align: center;
    margin: 10px auto;
}
.invest-cont{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-content: center; 
    align-items: center;
    flex-flow: row wrap;
    background: transparent;
}
.invest-cont .invest{
    background: var(--white);
    flex: 1 300px;
    align-self: stretch;
    border-radius: none;
    background: var(--white-color);
    color: var(--black-color);
    box-shadow: 0px 0px 5px var(--dark-grey);
    text-align: center;
    padding: 30px 20px;
    margin: 10px;
}
.invest-cont .invest:hover{
     box-shadow: 0px 0px 15px var(--dark-grey)
}
.invest h2{
    color: var(--blue-color);
    font-size: 1.2em;
    margin: 5px auto;
}
.invest p{
    color: var(--black-color);
    font-size: 0.8em;
    margin: 5px auto;
}
.fcss{
    width: 100%;
    display: flex;
    padding: 5px 30px;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    background: var(--white-color);
    border-radius: 20px;
}
.fcss .item{
    flex: 2 1 300px;
    padding: 10px; 
}
.fcss img{
    align-self: stretch;
    padding: 0 10px;  
    border-radius: 50%;
    height: 200px;
    width: 200px;
}
.content-features{
    display: flex;
    height: 400px;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}
.content-features .items{
    max-width: 400px;
    flex: 1 1 350px;
    align-self: stretch;
    text-align: left;
    padding: 50px 10px;
    margin: 5px;
}
.content-features .items h1{
    color: white;
    font-size: 2em;
    font-weight: bold;
    margin: 10px auto;
    text-transform: uppercase;
}
.content-features .items p{
    color: var(--white-color);
    font-size: 0.9em;
    margin: 5px auto;
    line-height: 180%;
}
.service{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    background: transparent;
    margin: 20px auto;
}
.service .items{
    flex: 1 1 300px;
    margin: 10px;
    align-self:stretch;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.service .items:hover{
    box-shadow: -0px 0px 5px 5px var(--nav-bg);
}
.service .items img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 20px auto;
    padding: 5px 10px; 
} 
.service2{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    background: rgba(255, 255, 255, 0.761);
    margin: 20px auto;
    border-radius: 10px;
}
.service2 .items{
    flex: 1 1 300px;
    margin: 10px;
    align-self:center;
    color: var(--black-color);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
/* .service .items:hover{
    box-shadow: -2px 2px 5px var(--nav-bg);
} */
.service2 img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 20px auto;
    /* margin-left: -150px; */
    padding: 5px 10px; 
}
.service2 .items > p{
    color: var(--black-color);
}
.service2 .items > h4{
    color: var(--blue-color);
}
.bank-accounts{
    width: 100%;
    display: flex;
    padding: 5px 30px;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    background: transparent;
}
.bank-accounts .item{
    background-color: var(--white-color);
    margin: 10px;
    padding: 20px;  
    flex: 2 1 600px;
    align-self: stretch;
    border-radius: 10px;
}
.bank-accounts .item2{
    background-color: var(--white-color);
    margin: 10px;
    flex: 1 1 300px;
    padding: 20px;  
    align-self: stretch;
    border-radius: 10px;
}
.text-container{
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 20px;
    text-align: left;
    margin: 0 auto;
    color: var(--black-color);
}
.slanted{
    padding: 50px;
    color: var(--white-color);
    position: relative;
    background: var(--blue-color);
    color: var(--white-color);
    clip-path: polygon(0% 15%, 100% 0%, 100% 80%, 0% 100%); /* Define the slant shape */
    text-align: center;
}
.slanted h1{
    color: var(--white-color);
    margin: 30px auto;
}

.footer{
    padding: 30px 80px 5px 80px;
    color: var(--white-color);
    position: relative;
    background: var(--blue-dim-color);
    color: var(--white-color);
    /* clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 100%); Define the slant shape */
}
.before-footer{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    background: var(--blue-color);
    justify-content: center;
    padding: 20px;
}
.before-footer .foo{
    width: 100%;
    margin: 10px;
    background: transparent;
    align-self: stretch;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 5px;
    text-align: left;
}
.before-footer .foo i{
    font-size: 2em;
    color: var(--white-color);
}
.before-footer .foo p{
    text-align: left;
    font-size: 0.7em;
    color: var(--white-color);
}
.before-footer .foo a{
    color: var(--white-color);
}
.footer2{
    padding: 1px 80px;
    color: var(--white-color);
    background: var(--blue-dim-color);
    width: 100%;
    position: fixed;
    bottom: 0px;
}
.footer p{
    font-size: 0.9em;
    line-height: 130%;
}
.footer2 p{
    font-size: 0.9em;
    line-height: 130%;
}
.footer .flex-item{
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    margin: 10px auto;
}
.footer .flex-item a{
    flex: 1 250px;
    color: var(--white-color);
    font-size: 1em;
    font-weight: bold;
    margin: 5px auto;
}
.copyright{
    margin: 0 auto;
    margin-top: 25px;
    font-size: 0.8em;
    color: var(--white-color);
}
.about-us{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    align-content: center;
    background: transparent;
    margin: 20px auto;
}
.about-us .items{
    flex: 1 1 400px;
    margin: 10px;
    align-self: stretch;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-flow: row nowrap;
}
.about-us .items .left{
    text-align: left;
    flex: 2;
    align-self: center;
    padding: 5px 10px;
}
.about-us .items img{
    flex: 1;
    align-self: stretch;
    padding: 0 10px;  
    border-radius: 50%;
    height: 200px;
    width: 200px;
}
.about-us .items:hover{
    box-shadow: 2px 2px 5px 5px var(--dark-grey);
}
/*************************************************
************Registration and Login****************
**************************************************/
#admin-margin{
    background: rgba(0, 0, 0, 0.856);
    margin-top: 7%;
}
.reg-container{
    padding: 20px;
    max-width: 100%;
    height: 100%;
}
.reg-container #pin-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed var(--red-color);
    margin: 10px auto;
    display: block;
    padding: 5px;
    cursor: pointer;
}
.register{
    width: 80%; 
    border-radius: 10px !important;
    margin: 5% auto 15% auto;
    padding: 10px;
    background: var(--nav-bg);
}
/* .register form{
    
} */
 .register form{
    display: flex;
    flex-flow: row wrap
 }
.register input{
    flex: 1 350px;
    align-self: stretch;
    background: var(--nav-bg);
    border: 1px solid var(--blue-color);
    border-radius: 5px;
    padding: 5px;
    font-size: 1em;  
    margin: 10px;  
    color: var(--black-color);
}
.register select{
    flex: 1 350px;
    align-self: stretch;
    background: var(--nav-bg);
    border: 1px solid var(--blue-color);
    /* border-bottom: 1px solid var(--blue-color); */
    padding: 5px;
    font-size: 1em;  
    margin: 10px;  
    border-radius: 5px;
    color: var(--black-color);
}
.register h2{
    align-self: center;
    margin: 5px auto;
    color: var(--blue-color);
}
/* .register .details{
    flex: 1;
    align-self: stretch;
    background: url('../img/low-angle-friends-2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
}
.register .details h1{
    align-self: center;
} */
.login{
    max-width: 500px;
    height: auto;
    border-radius: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% auto;
    padding: 40px;
    background-color: var(--blue-dim-color-transparent);
}
.pin{
    max-width: 450px;
    height: auto;
    border-radius: 20px !important;
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    align-items: center;
    margin: 5% auto;
    padding: 40px;
    background-color: transparent;
    outline: 1px solid var(--blue-color);
}
.reg-container2{
    padding: 10px;
    width: 100%;
    height: 100vh;
    margin: 5% auto;
}
.pin2{
    max-width: 100%;
    height: auto;
    border-radius: 10px !important;
    margin: 5% auto;
    padding: 20px;
    background-color: transparent;
    outline: 1px solid var(--white-color);
}
.pin .profile{
    width: 150px;
    height: 150px;
    margin: 10px auto;
    border: 1px solid var(--red-color);
    border-radius: 50%;
    padding: 5px;
}
.input-container{
    margin: 0;
    position: relative;
}
.input-container .eye{
    position: absolute;
    right: 5px;
    top: 2px;
    color: var(--black-color);
    size: 1.5em;
    cursor: pointer;
}
.input-container i.details{
    position: absolute;
    left: 5px;
    top: 5px;
    color: var(--white-color);
    cursor: pointer;
    size: 1.5em;
}
i.details-black{
    position: absolute;
    left: 5px;
    top: 5px;
    color: var(--black-color);
    cursor: pointer;
    size: 1.5em;
}
#password{
    padding-right: 33px;
    padding-left: 30px;
}
#email{
    padding-left: 30px;
}
input, select{
    font-family: Poppins, 'Roboto', Georgia, 'Times New Roman', Times, serif;;
    width: 100%;
    background: transparent;
    border: 1px solid var(--blue-color);
    border-radius: 5px;
    /* border-bottom: 1px solid var(--blue-color); */
    padding: 5px;
    font-size: 1em;  
    margin: 10px auto;  
    color: var(--black-color);
}
input:focus, select:focus{
    color: var(--black-color);
    border: 1px solid var(--dark-grey);
    /* border-bottom: 2px solid var(--blue-dim-color); */
    border-radius: 5px;
    background: transparent;
    outline: none;
}
input::-ms-value{
    color: var(--black-color);
}
textarea{
    font-family: Poppins, 'Roboto', Georgia, 'Times New Roman', Times, serif;;
    width: 100%;
    background: transparent;
    border: 1px solid var(--blue-color);
    padding: 5px;
    font-size: 1em;  
    margin: 10px auto;
    color: var(--black-color);
    border-radius: 5px;
}
textarea:focus{
    color: var(--black-color);
    border: 2px solid var(--blue-dim-color);
    border-radius: 0px;
    background: transparent;
    border-radius: 5px;
    outline: none;
}
fieldset{
    box-shadow: 0px 0px 5px 5px var(--border-color);
    margin: 0 auto;
    border-radius: 10px;
    padding: 5px
}
legend{
    text-align: center;
    margin: 5px;
}
.login input::placeholder{
    color: var(--white-color);
}
.login input{
    color: var(--white-color);
    /* border-bottom: 2px solid var(--red-color) */
    border: 1px solid var(--dark-grey);
    border-radius: 5px;
}
.login a{
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
}
.login a:hover{
    color: var(--white-color);
}
.login p{
    text-align: right;
}
.check-cont{
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
}
.check-cont p{
    font-size: 0.8em;
    flex:2 ;
    align-self: stretch;
}
.check-cont #check{
    margin: 0;
    height: 20px;
    width: 20px;
    align-self: baseline;
    margin-right: 5px;
}
.error{
    width: 100%;
    background: transparent;
    border: 1px solid rgb(230, 1, 1);
    color: rgb(230, 1, 1);
    font-weight: bold;
    padding: 5px 10px;
    margin: 5px auto;
    text-align: center;
}
.success{
    max-width: 100%x;
    background: transparent;
    border: 1px solid rgb(1, 243, 102);
    color: rgb(1, 243, 102);
    font-weight: bold;
    padding: 5px 10px;
    margin: 5px auto;
    text-align: center;
    position: relative;
}
.close{
    position:absolute;
    width: 40px;
    height: 30px;
    top: 0;
    right: 5px;
    color: rgb(255, 255, 255);
    padding:auto auto;
    text-align:center;
    font-size: 1.5em ;
    cursor: pointer;
 }
 .center-to-page{
    margin: 30px auto;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--red-color);
    border-radius: 10px;
}
.reg-success{
    position: absolute;
    top: 0px;
    left: 30%;
    left: 30%;
    width: 500px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    padding: 20px;
    margin: 5% auto;
    z-index: 5;
    background: var(--white-color);
    /* box-shadow: -2px 2px 10px var(--dark-grey); */
}
.reg-success img{
    margin: 5px auto;
}
.dark-overlay-login{
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.925);
    filter: blur(70%);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 4;
    display: none;
}
.dark-overlay{
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.925);
    filter: blur(70%);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 4;
    transition: 1s;
}
/*******************Login and Reg. addition******************/
.login-box{
    border-radius: 20px;
    position: fixed;
    top: 15%;
    left: 30%;
    max-width: 550px;
    background: var(--white-color);
    padding: 30px 50px;
    z-index: 5;
    display: none;
}
.box-close{
    position: absolute;
    /* width: 40px;
    height: 30px; */
    top: 10px;
    right: 10px;
    color: var(--black-color);
    padding:auto auto;
    text-align:center;
    font-size: 1.5em ;
    cursor: pointer;
    z-index: 6;
 }
 .login-box input{
    background: var(--nav-bg);
    border-radius: 5px;
    padding: 10px;
    border: none;
    color: var(--black-color);
    margin: 10px auto;
    width: 100%;
 }
 .login-box input:focus{
    background: var(--nav-bg);
    border-radius: 10px;
    border: none;
    outline: 2px solid  var(--blue-color);
 }
 label{
    font-size: 1em;
    font-weight: bold;
    margin: 8px 0px;
    color: var(--black-color);
    text-align: left
 }
.login-box h2{
    text-align: center;
    color: var(--blue-color);
    font-size: 2em;
    font-weight: bold;
    margin: 10px auto;
 }
 .login-box a{
    color: var(--blue-color);
    font-size: 0.8em;
    text-align: center;
    margin: 10px;
    display: block;
 }
 .login-box .submit-btn{
    padding: 15px 25px;
    margin: 10px auto;
    border-radius: 25px;
    border: none; 
    text-decoration: none;
    color: var(--white-color);
    background-color: var(--blue-color);
    font-size: 1.1em;
    font-weight: bold;
    display: block;
}
.submit-btn:hover{
    background-color: var(--blue-dim-color);
}
/******************article-container******************/
.article-cont{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    position: relative;
}
.article-cont .main-article{
    flex: 2;
    padding: 30px;
    align-self: stretch;
    height: auto;
    width: 100%;
    position: relative;
}
.main-article .text-content{
    padding: 20px;
    margin: 10% auto 0px auto;
    z-index: 2;
    bottom: 0px;
    position: absolute;
}
.main-article .text-content h2{
    color: var(--white-color);
    font-size: 2.2em;
}
.main-article .text-content p{
    color: var(--white-color);
    font-size: 1em;
}
.article-cont .side-articles{
    width: 100%;
    flex: 1;
    display: flex;
    flex-flow: column;
    align-self: stretch;
}
.side-articles .side-article{
    position: relative;
    padding: 20px;
}

.article-dark{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.26); 
    z-index: 1;
    transition: 1s;
    cursor: pointer;
}
.article-dark:hover{
    background: rgba(0, 0, 0, 0.466); 
}
/* .side-article::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.158); 
    z-index: 1;
}
.side-article:hover::before {
    background: rgba(0, 0, 0, 0.6);
} */
.side-article .text-content{
    padding: 20px;
    margin: 10% auto 0px auto;
    z-index: 2;
    position: relative;
}
.text-content h2{
    color: var(--white-color);
    font-size: 1.2em;
}
/************************************************/
.keypad-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.keypad {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row wrap;
    padding: 10px;
}
.keypad > button {
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 90px;
    margin: 3px;
}
.keypad > button:active{
    background: var(--red-color);
    color: var(--white-color);
}
.action-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 100px;
    margin-top: 15px;
}
/***********************************************/

  /*************************************************
************Dashboard Utilities****************
**************************************************/
.top-section{
    margin: 5% auto;
    padding: 10px 60px;
    max-width: 1300px;
}
.close2{
    position: absolute;
    top: 0;
    right: 5px;
    color: var(--black-color);
    padding:auto auto;
    text-align:center;
    font-size: 1.5em;
    z-index: 3;
    margin: 10px;
    cursor: pointer;
 }
.account-head{
    position: fixed;
    width: 100%;
    top: 0px;
    padding: 10px;
    background: var(--white-color);
    display: flex;
    justify-content: space-between;
    z-index: 3;
    color: var(--black-color)
}
.account-head .left{
    align-self: center;
    display: flex;
    justify-content: center;
    width: auto;
}
.account-head .left .logo{
    width: 120px;
    height: 40px;
    margin: 0 5px;
}
.account-head a{
    align-self: center;
    color: var(--white-color);
    margin: 0 5px;
    font-weight: none;
}
.account-head a:hover{
    text-decoration: underline;
    font-style: normal;
}
.account-head .right{
    align-self: center;
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    margin-left: auto;
}
.account-head .right #user-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dashed var(--red-color);
    padding: 5px;
    cursor: pointer;
}
.account-head .right p{
    font-size: 1em;
    color: var(--red-color);
    font-weight: bold;
    margin: 0 auto;
    margin-right: 5px;
    align-self: center; 
}
.account-foot{
    display: none;
}
.user-nav{
    position: fixed;
    background-color: var(--blue-dim-color);
    right: -2000px;
    color: var(--white-color);
    width: 30%;
    height: 100%;
    z-index: 4;
    padding: 40px 20px;
    transition: all 0.5s ease;
    overflow-y: scroll;
}
.user-nav.show-user{
    top: 0;
    right: 0;
    transition: all 0.5s ease;
}

.user-nav .list{
    background: var(--blue-color);
    padding: 20px 15px;
    margin: 5px;
    display: flex; 
    justify-content: center;
    flex-flow: row nowrap;
    width: 100%;
}
.user-nav .list .key{
    flex: 1;
    text-align: center;
    color: var(--white-color);
}
.user-nav .list .value{
    flex: 1;
    text-align: center;
    color: var(--white-black);
}
.user-nav img{
    width: 100px;
    height: 100px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    margin: 10px auto;
    padding: 5px; 
}
.balance{
    width: 100%;
    background: var(--blue-color);
    border: 1px solid var(--blue-dim-color-transparent);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    color: var(--white-color);
    padding: 50px 10px;
    text-align: center;
}
.balance i{
    font-size: 1.2em;
    color: var(--white-color);
}
.balance p{
    font-size: 0.8em;
    color: var(--white-color);
}
.balance a{
    font-size: 0.8em;
    color: var(--white-color);
    margin: 5px auto;
    border-radius: 15px;
    background: var(--blue-color);
    padding: 5px 10px;
}
.balance .left{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.balance .right{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.bold-amount{
    font-size: 2em;
    font-weight: bold;
}
.balance2{
    width: 100%;
    background: var(--blue-color);
    border: 1px solid var(--white-color);
    border-radius: 10px;
    color: var(--white-color);
    padding: 30px 20px;
    margin: 7% auto 0px 21%;
    max-width: 950px;
    text-align: left;
}
.balance2 p{
    font-size: 0.8em;
    color: var(--white-color);
    margin: 5px;
}
.balance2 h2{
    font-size: 1.5em;
    font-weight: bold;
    color: var(--white);

}
.balance2 h4{
    font-size: 1em;
    text-transform: uppercase;
    color: var(--white);
    margin: 5px;
}
.balance2 i{
    font-size: 1.2em;
    color: var(--white-color);
}
.balance2 a{
    font-size: 0.8em;
    color: var(--white-color);
    margin: 5px auto;
    border-radius: 15px;
    background: var(--blue-dim-color);
    padding: 5px 10px;
}
#confirmation{
    border: 1px solid rgb(3, 145, 62);
    color: var(--white-color);
    padding: 5px 10px;
    margin-top: 10px;
    background: rgb(1, 243, 102);
    font-weight: normal;
    display: none;
    width: fit-content;
    /* animation: confirmation 2s alternate ease-in-out; */
  }
  #confirmation2{
    border: 1px solid rgb(3, 145, 62);
    color: var(--white-color);
    padding: 5px 10px;
    margin-top: 10px;
    background: rgb(1, 243, 102);
    font-weight: normal;
    display: none;
    width: fit-content;
  }
.flex{
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
}
.flex .partition{
    flex: 1;
    align-self: center;
    margin: 0 auto;
    color: var(--white-color);
    /* background: var(--blue-dim-color);
    border-radius: 10px; */
}
.acct-details{
    width: 100%;
    background: var(--white-color);
    border-radius: 20px; /*Continue from here*/
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    color: var(--white-color);
    margin: 10px auto;
    padding: 20px 10px;
    text-align: center;
}
.acct-details .item{
    flex: 1; 
    align-self: stretch;
    text-align: center;
    margin: 0 5px;
}
.acct-details .item h4{
    font-size: 0.9em;
    color: var(--dark-grey);
    margin: 5px auto;
    text-transform: uppercase;
}
.acct-details .item p{
    font-size: 0.9em;
    font-weight: bolder;
    color: var(--opacity-black);
    margin: 5px auto;
    line-height: 100%;
}
.acct-services{
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    color: var(--red-color);
    margin: 5px auto;
    padding: 5px 10px;
}
.acct-services .items{
    max-width: 180px;
    flex: 1 1 100px; 
    align-self: stretch;
    text-align: left;
    margin: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
    border-radius: 10px;
    /* background: var(--white-color); */
    transition: 1s;
}
.acct-services .items:hover{
    background: var(--opacity-black);
    color: var(--white-color);
    font-style: normal;
}
.acct-services .items:hover p{
    color: var(--white-color);
}
.acct-services .items .i-bg{
    background: var(--blue-dim-color); 
    color: var(--white-color);
    border-radius: 12px;
    padding: 10px;
    margin: 0px auto;
    width: 60px;
    height: 60px 
}
.acct-services .items .i-bg i, .numb{
    text-align: center;
    font-size: 35px;
    color: var(--white-color); 
    border-radius: 5px;
    align-self: center;
    display: block;
    margin: 0px auto
}
.acct-services .items>p{
    text-align: left;
    font-size: 1em;
    font-weight: bold;
}
.history{
    width: 100%;
    background: var(--dark-white);
    border-radius: 10px; 
    border: 1px solid var(--red-color);
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    color: var(--opacity-black);
    padding: 10px;
    text-align: center;
    margin: 5px auto;
}
.history .left{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.history .right{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.history p{
    font-size: 0.7em;
    color: var(--opacity-black);
}
.bold-history{
    font-size: 1.2em;
    font-weight: bold;
    color: var(--opacity-black);
}

/************** History Table *****************/
.table-container{
    overflow-x: auto;
}
table{ 
    border-collapse: separate;
    width: 75%;
    border-radius: 10px;
    border: 1px solid var(--red-color);
    margin: 15px auto;
    padding: 5px 10px;
}
tr:nth-of-type(odd){
   background: var(--dark-grey);
}
tr:nth-of-type(even){
    background: var(--bg-grey);
}
.bg-red{
    background: var(--blue-color)
}
th{
    font-weight: bold;
    font-size: 0.8em;
    background: var(--red-color);
    color: var(--white-color);
    padding: 5px;
    text-align: center;
}
td{
    text-align: center;
    padding: 5px;
    font-size: 0.8em
}
td i{
    color: var(--red-color);
    text-align: center;
    font-size: 1em
}
/***********************************************
******************** Cards *********************
************************************************/

.card-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.card-container .card{
    flex: 1 1 400px;
    margin: 5px;
    width: 100%;
    background: var(--blue-color);
    border-radius: 10px;
    color: var(--white-color);
    padding: 10px;
    height: 250px;
}
.card .content{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
}
.card .content .left{
    flex: 1;
    text-align: center;
    margin: 0 auto;
}
.card .content .right{
    flex: 1;
    text-align: center;
    margin: 0 auto;
}
.card .content .left .logo{
    width: 50px;
    height: 50px;
    margin: 5px auto;
}
.card .content .right .card-icon{
    width: 90px;
    height: 40px;
    margin: 5px auto;
}
.card-container .card-details{
    flex: 1 1 400px;
    margin: 5px auto;
}
.card-details .content{
    width: 100%;
    background: var(--white-color);
    border-radius: 10px; 
    /* display: flex;
    justify-content: center;
    flex-flow: row nowrap; */
    color: var(--opacity-black);
    padding: 10px 5px;
    text-align: left;
    margin: 5px auto;
}
.card-details .withdraw{
    width: 100%;
    background: var(--white-color);
    border-radius: 10px; 
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    color: var(--opacity-black);
    padding: 10px 5px;
    text-align: left;
    margin: 5px auto;
}
.withdraw a{
    text-decoration: none;
    font-size: 1em;
}
.withdraw a:hover{
    text-decoration: none;
    font-style: normal;
    color: var(--red-color);
    font-size: 1em;
}
.withdraw i{
    color: var(--red-color);
    font-size: 1.2em;
}
.withdraw .left{
    padding: 5px;
    
}
.withdraw .right{
    flex: 2;
    text-align: left;
    align-self: center;
    margin: 0 auto;
}
.withdraw p{
    font-size: 1em;
    color: var(--opacity-black);
    margin: 0 3px;
}
.card-details .content p{
    font-size: 1em;
    color: var(--opacity-black);
    margin: 0 3px;
}
/************************************************
****************** Welcome Page******************
**************************************************/
.highlights{
    margin: 15px auto;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}
.highlights i{
    font-size: 2.3em;
    margin-right: 8px;
    color: var(--black-color);
}
.highlights .right{
    flex: 2 1;
}
/*************************************************
************Tablet view****************
**************************************************/
@media(max-width: 1024px){
    .header .center{
        display: none;
    }
    .header .left #mobile-icon{
        margin: 0 auto;
        font-size: 2em;
        color: var(--white-color);
        display: inline-block;
        align-self: center;
    }
    .nav-cont{
        display: block;
        position: absolute;
        background-color: var(--blue-dim-color);
        left: -1000px;
        top: 60px;
        color: #fff;
        width: 80%;
        height: 100vh;
        z-index: 1;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .nav-cont.show-nav{
        left: 0;
        transition: all 0.5s ease;
    }
    .nav-cont a{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
        /* border-bottom: 2px solid var(--red-dim-color); */
    }
        .user-nav{
        width: 45%;
    }
    .reg-container{
        max-width: 100%;
        height: 100vh;
        padding: 20px;
    }
    .register{
        width: 100%;
     }
    .login{
        max-width: 50%;
        margin: 15% auto;
    }
    .account-foot{
        padding: 5px 80px;
        background: var(--white-color);
        width: 100%;
        position: fixed;
        bottom: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow:  row nowrap
    }
    .account-foot .item{
        flex: 1;
        align-self: stretch;
        padding: 5px;
        margin: 0 auto;
        text-align: center;
    }
    .account-foot .item a{
        color: var(--blue-color);
        text-decoration: none;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column nowrap;
    }
    .account-foot .item a i{
        font-size: 1.2em;
        color: var(--blue-color);
        align-self: center;
    }
    .account-foot .item a i:hover{
        color: var(--blue-dim-color);
    }
    .account-foot .item a p{
        align-self: center;
        font-size: 0.8em;
        color: var(--blue-dim-color);
    }
    .footer .flex-item{
        display: flex;
        justify-content: center;
        margin: 10px auto;
    }
    .bank-accounts{
        flex-flow: row nowrap;
        padding: 0;
    }
    .top-section, .admin-section{
        margin: 15% auto;
        padding: 0px 20px;
        max-width: 100%;
    }
    .admin-section-new{
        margin: 0px auto 15% auto;
        padding: 0px 20px;
        max-width: 100%;
    }
    .balance-cont{
        padding: 30px 20px;
        margin: 0px auto;
        max-width: 100%;
        background: var(--blue-dim-color);
        border-radius: 0px 0px 20px 20px;
    }
    .balance2{
        padding: 30px 20px;
        margin: 10% auto 0px auto;
        max-width: 100%;
    }
      /*********** Admin Nav  ***********/
    .admin-cont{
        display: block;
        position: fixed;
        background-color: var(--black-color);
        left: -2000px;
        top: 65px;
        color: #fff;
        width: 30%;
        height: 100vh;
        z-index: 1;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .admin-cont a{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
    }
    .admin-cont.show-nav{
        left: 0;
        transition: all 0.5s ease;
    }
    #admin-margin{
        background: var(--dark-black);
        margin-top: 5%;
    }
    .footer{
        margin-bottom: 40px;
    }
    .logged-footer{
        width: 100%;
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        display: flex;
        flex: row nowrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
        background: var(--blue-dim-color);
    }
    .logged-footer .item{
        flex: 1;
        align-self: center;  
    }
    .logged-footer .item a{
        color: var(--white-color);
        font-size: 0.9em;
        font-weight: bold;
    }
    #textToSee{
        letter-spacing: 6px;
        font-weight: bold;
    }
/************************************/
}
/*************************************************
****************Mobile View***********************
**************************************************/
@media(max-width: 500px){
    .header .left #mobile-icon{
        margin: 0 auto;
        font-size: 2em;
        color: var(--white-color);
        display: inline-block;
        align-self: center;
    }
    h1{
        font-size: 2em;
        color: var(--black-color);
        margin: 5px auto;
        line-height: 120%;
    }
    p{
        font-size: 0.8em;
    }
    .fcss{
        padding: 10px;
        text-align: center;
    }
    .fcss img{
        display: none;
    }
    section{
        margin: 20px auto;
        padding: 0 20px;
        max-width: 100%;
        position: relative;
    }
    .top-section, .admin-section{
        margin: 22% auto;
        padding: 0px 20px;
        max-width: 100%;
    }
    .admin-section-new{
        margin: 0px auto 22% auto;
        padding: 0px 20px;
        max-width: 100%;
    }
    .balance2{
        padding: 30px 20px;
        margin: 20% auto 0px auto;
        max-width: 100%;
    }
    .acct-services .items{
        max-width: 120px;
    }
    .header .center{
        display: none;
    }
    #hide-mobile{
        display: none;
    }
    .bank-diff .items{
        margin: 10px auto;
    }
    .invest-cont .invest{
        margin: 10px auto;
    }
    .service .items{
        margin: 10px auto;
    }
    .service2 .items{
        order: 2;
        padding: 20px;
        margin: 10px auto;
    }
     .service2 img{
        order: 1;
    }
     .article-cont{
        flex-direction: column;
        height: auto;
    }
    .main-article,
    .side-articles{
        width: 100%;
    }
    .side-articles{
        flex-direction: column;
    }
    .main-article .text-content{
        position: relative;
    }
    .main-article .text-content p{
        display: none
    }
    .side-article .text-content h2{
        font-size: 1.5em
    }
    .nav-cont{
        display: block;
        position: absolute;
        background-color: var(--blue-dim-color);
        left: -600px;
        top: 65px;
        color: #fff;
        width: 100%;
        height: 100vh;
        z-index: 1;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .nav-cont.show-nav{
        left: 0;
        transition: all 0.5s ease;
    }
    .account-head{
        position: fixed;
        width: 100%;
        top: 0px;
    }
    .account-foot .item{
        padding: 5px;
        margin: 0 20px;
        width: 100%;
        text-align: center;
    }
    .user-nav{
        position: fixed;
        background-color: var(--white-color);
        border-radius: 15px;
        bottom: -2000;
        color: var(--black-color);
        width: 100%;
        height: 100vh;
        z-index: 4;
        padding: 40px 20px;
        transition: all 0.5s ease;
    }
    .user-nav.show-user{
        bottom: 0;
        transition: all 1s ease-in-out;
    }
    .user-nav .list{
        background: var(--dark-grey);
        border-radius: 10px;
        padding: 15px 10px;
        margin: 5px;
        display: flex; 
        justify-content: center;
        flex-flow: row nowrap;
        width: 100%;
    }
    .user-nav .list .key{
        text-align: left;
        color: var(--black-color);
    }
    .user-nav .list .value{
        flex: 2;
        text-align: right;
        color: var(--opacity-black);
    }
    .user-nav img{
        border: 2px solid var(--red-color);
        border-radius: 50%;
        margin: 10px auto;
        padding: 10px; 
    }
    .header .reg-tool{
        width: 90%;
        margin: 0 auto;
        right: 0;
        left: 0;
    }
    .header2{
        display: none;
    }
    .nav-cont a{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
        /* border-bottom: 2px solid var(--red-dim-color); */
        font-size: 1.3em;
    }
    .nav-cont p{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
        font-size: 1em;
    }
    .login-box{
        width: 95%;
        left: 10px;
        right: 10px;
    }
    .router{
        display: none;
    }
    .hero-banner{
        height: 700px;
    }
    .hero-banner .banner-center{
        margin: 200px auto 400px auto;
    }
    .slanted{
        padding: 60px 20px;
    }
    .footer{
        padding: 10px 20px 5px 20px;
    }
    .footer .flex-item{
        display: flex;
        justify-content: center;
        margin: 10px auto;
    }
    .footer p{
        font-size: 0.8em;
        line-height: 130%;
        padding: 20px 30px;
    }
    .before-footer{
        flex-flow: column wrap
    }
    .before-footer .foo p{
        font-size: 1em;
        color: var(--white-color);
    }
    .reg-container{
        padding: 20px;
        max-width: 100%;
        height: auto;
    }
    .register{
       width: 100%;
       margin: 5% auto 10% auto;
       padding: 20px 5px;
       overflow-y: scroll
    }
    /* .register .details{
        display: none;
    } */
    .login{
        max-width: 95%;
        margin: 10% auto;
    }
    .about-us .items{
        flex-flow: column wrap;
    }
    .about-us .items .left{
        text-align: center;
        order: 2;
    }
    .about-us .items img{
        order: 1;
        margin: 10px auto;
        height: 120px;
        width: 120px;
    }
    .bank-accounts{
        flex-flow: row wrap;
        padding: 0;
    }
    .bank-accounts .item,.item2{
        text-align: center;
        margin: 5px auto;
    }
    .reg-success{
        width: 90%;
        left: 0;
        right: 0;
    }
    .table-container{
        overflow-x: scroll;
    }
    /*********** Admin Nav  ***********/
    .admin-cont{
        display: block;
        position: fixed;
        background-color: var(--black-color);
        left: -2000px;
        top: 65px;
        color: #fff;
        width: 40%;
        height: 100vh;
        z-index: 1;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .admin-cont a{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
    }
    .admin-cont.show-nav{
        left: 0;
        transition: all 0.5s ease;
    }
    #admin-margin{
        background: var(--dark-black);
        margin-top: 22%;
    }
    .card-container .card{
        height: 200px;
    }
    
/************************************/
}
@media(max-width: 490px){
    .keypad > button {
        padding: 15px;
        font-size: 1.2rem;
        cursor: pointer;
        width: 80px;
        margin: 3px;
    }
}
@media(max-width: 390px){
    .keypad > button {
        padding: 15px;
        font-size: 1.2rem;
        cursor: pointer;
        width: 60px;
        margin: 3px;
    }
}