.h-homecard {
    font-size: 1.5rem;
}

.homecard-label {
    font-size: 1.2rem;
    color:#fff;
    margin-top: 10px;
}

.circular-icon{ 
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    line-height: 46px;
}
.circular-icon img{
    width: 30px; height: auto;
    margin:-10px;
}

.circular-icon-large{ 
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    line-height: 70px;
}
.circular-icon-large img{
    width: 60px; height: auto;
    margin:-10px;
}

.admin-bg{background-color: #b9c4c9;}
.general-bg{background-color: #128277;}
.project-bg{background-color: #004d47;}

.homecard	{
    margin: 1rem;
    padding-top: 1rem;
    background-color: #548e87;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.homecardmini {
    height:150px;
    margin: 1rem;
    padding-top: 1rem;
    background-color: #548e87;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.homecardcontrol {
    margin: 1rem;
    padding-top: 1rem;
    background-color: #548e87;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.ihomecard {
    font-size: 2.2rem;
    color: #fcad02;
}

/* 	Display two cards per row at 576px breakpoint */
@media (min-width: 576px)	{

    .homecard-cards-container	{
/* 	Set the display for the outer container to flex */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    }

    .homecard, .homecardmini,.homecardcontrol	{
        /* 	Set the flex-basis so that two cards are displayed in each row. */
        flex-basis: calc(50% - 3rem);
    }
}

/* 	Display four cards across one row at 992px breakpoint */
@media (min-width: 992px)	{

    .homecard, .homecardmini,.homecardcontrol	{
        /* 	Set the flex-basis so four cards are displayed across one row. */
        flex-basis: calc(25% - 3rem);
    }
}

@media (max-width: 576px)	{
    .homecard-label{
        font-size: 1.0rem;
        margin-top: 10px;
    }

    .homecard	{
        height:100px;
    }

    .homecardcontrol {
        height:110px;
    }

}