.square {
    height: 150px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.main-text {
    font-size:x-large;
    font-weight:500;
}


.descc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-width: 100%;
    overflow-y: auto;
    -webkit-line-clamp: 5;
    height: 160px
}

.square2 {
    height: 250px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.trunc-single-line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.circular {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

    .circular img {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.card{
    min-width:100%;
}

.pull {
    float: left;
}

.push {
    float: right;
}

.img_card_custom {
    width: 100%;
    display: block;
        background: #f5f5f5; 
    border-bottom: 1px solid #ccc;
}
/*Card Styling*/
.card__wrap--inner {
    padding: 12px;
}

.card__item {
    padding: 12px 18px 12px 18px;
    font-family: Dosis, arial, sans-serif;
}

.card__item h2 {
    font-family: "Open Sans", arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    font-stretch: 86%;
    color: #313131;
    text-transform: capitalize;
}

.card__sub {
    padding: 0 18px;
}

.card__footer {
    padding: 18px;
    overflow: hidden;
    border-top: 1px solid #dedede;
}
/*Card Flex Code*/



.card__wrap--outer {
    *{
        box-sizing: border-box;
    }
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}


.card__wrap--inner {
    display: flex;
    flex-direction: row;
    width: 100%;
}

@media (min-width: 560px) {
    .card__wrap--inner {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (min-width: 995px) {
    .card__wrap--inner {
        flex: 1 1 33.33%;
        max-width: 33.33%;
    }
}

.custom_flexible {
    flex-grow: 1;
}