
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
  font-family: 'Poppins', sans-serif;
  margin:0;
  padding: 0;
  box-sizing: border-box;
  /* overflow: hidden; */
}

:root{
  --blue:#574f9c;
  --white:#fff;
  --gray:#f5f5f5;
  --black1:#222;
  --black2:#999;
}
.container{
  position: relative;
  width: 100%;
}
.navigation{
  position: fixed;
  width:300px;
  height: 100%;
  background: var(--blue);
}
.navigation ul{
  position: absolute;
  top:0;
  left:0;
  width:100%;
}
.navigation ul li{
  position: relative;
  width:100%;
  list-style: none;
}
.navigation ul li:hover
{
  background-color: var(--white);
}


.navigation ul li a{
  position: relative;
  display: block;
  /* width: 100%; */
  display: flex;
  text-decoration: none;
  color: var(--white);
}
.navigation ul li a:hover{
  color:var(--blue);
}

.navigation ul li a .icon{
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 75px;
  text-align: center;
}  
.navigation ul li a .icon ion-icon{
  font-size: 1.75rem;
}
.navigation ul li a .title{
  position: relative;
  display: block;
  padding: 0 10px;
  line-height: 60px;
  text-align: start;
  /* white-space: nowrap; */
}
.cardBox{
position: relative;
width: 100%;
padding:20px;
display: grid;
grid-template-columns: repeat(4,1fr);
margin-left: 280px;
gap: 20px;
font-weight: 700;


}

.cardBox .card{
  position: relative;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.data{
   /* background-color: #222;
  height: 100px;
  width: 100px;  */
   margin-left: 100px;
}
