.tenants {
    .card {
        .card-img-bottom, .card-img-top {
            height: 5rem;
            width: fit-content;
            align-self: center;
        }
        .text-blue{
           color: #7DA0FA;
        }
        .text-purple{
            color: #7978E9;
        }

        .stats-tile {
            padding: 1.5rem 1.5rem;
            margin: 0 0 24px 0;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
            background: #fff;
            display: flex;
            align-items: center;
            flex-direction: row;
            position: relative;
            box-shadow: 0 3px 5px rgba(0, 10, 10, .05);

            p, h3 {
                margin: 0;
            }
            h3 {
                font-weight: bold
            }
            .icon {
                height: 60px;
                width: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 15px;
                text-align: center;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                border-radius: 50px;

                i {
                    font-size: 1.8rem;
                    color: #fff;
                }

                &.blue {
                    background: #7DA0FA;
                }
                &.purple {
                    background: #7978E9;
                }
            }
        }
    }
}
