.breadcrumb{
    padding:30px 0px;
}
.account-menu a{
    padding:10px 20px;
    margin-bottom:10px;
    color:white;
    font-size:18px;
    border:none!important;
}
.account-menu a:hover{
    border:none!important;
    background-color:var(--color1);
    color:white;
    text-shadow:none;
}
.dashboard-list{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:0;
    padding-top:10px;
    margin-left:-0.5%;
    margin-right:-0.5%;
}
.dashboard-list li{
    width:24%;;
}
.dashboard-list li a{
    width:100%;
    height:0;
    padding-top:100%;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%), 0 6px 20px 0 rgb(0 0 0 / 9%);
    background:var(--color1);
    color:white;
    margin-bottom:20px;
    margin-left:0.5%;
    margin-right:0.5%;
    position:relative;
    display:block;
    transition:.3s;
}
.dashboard-list li a:hover{
    transform:scale(1.02);
}
.dashboard-list li a i{
    font-size:35px;
    margin-bottom:20px;
}
.dashboard-list li a span{
    padding:10px;
    text-align:center;
    position:absolute;
    height:100%;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
.bigtitle{
    margin-bottom:40px;
}
.iconbtn:not(.header-icon-btn){
    height:45px;
    width:45px;
    display:inline-block;
    outline:none;
    box-shadow:none;
    border:none;
}
.iconbtn i:not(.header-icon-btn i){
    font-size:18px;
}
@media (max-width: 992px) {
    .dashboard-list li{
        width:49%;;
    }
}
@media (max-width: 576px) {
    .dashboard-list li span{
        font-size:14px;
        line-height:16px;
    }
    .dashboard-list li a i{
        font-size:21px;
    }
    .dashboard-list li a{
        margin-bottom:10px;
    }
    .box{
        padding:15px;
    }
    .bigtitle{
        line-height:35px;
    }
    .bigtitle:after {
        bottom:-10px;
    }
}