a {
    color: white;
    transition: 0.3s ease;
    text-decoration: none !important;
}

.card-items {
    width: 100%;
    margin: 100px auto;
}

.product-card-items {
    width: 100%;
    margin: 100px auto;
}

/* Float three columns side by side */
.column {
    float: left;
    width: 33.33%;
    padding: 40px 10px;
}

.flex_container {
    flex-wrap: nowrap wrap wrap-reverse;
}

.column h3 {
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
    font-size: 16px;
    color: #2f2f2f;
}


/* Remove extra left and right margins, due to padding */
/* .row {
    margin: 0 -5px;
} */

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive columns */



@media screen and (max-width: 768px) {

    .column {
        width: 50%;
    }
}

@media screen and (max-width: 550px) {

    .product-card-items {
        width: 100%;
    }

    .column {
        width: 80%;
        display: block;
        margin: 0 auto;
    }
}

/* Style the counter product-cards */
.product-card {
    padding: 5px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.product-card .profile {

    width: 80%;
    height: 80%;
    border-radius: 50%;
    transition: all 1s ease-out;

}


.product-card:hover .profile {
    transform: scale(1.02);
    filter: alpha(Opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}


.product-card .content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card .content .back {
    position: absolute;
    width: 100%;
    height: 20%;
    transition: 1s;
    z-index: 1;
    /* padding: 10px; */
    display: flex;
    justify-items: center;
    align-items: center;
}

.from-left {
    bottom: 0;
    left: -100%;
}

.from-left h2 {
    margin: 0 auto;
    color: #333;
    font-size: 20px !important;
    font-family: Work Sans, sans-serif !important;
    font-weight: 400
}

/* .product-card:hover .content .from-left {
    left: 0%;
} */

.from-bottom {
    top: 100%;
    left: 0;
}

/* .product-card:hover .content .from-bottom {
    top: 0%;
} */

.from-right {
    top: 0%;
    right: -100%;
}

/* .product-card:hover .content .from-right {
    right: 0;
} */

.product-card .content .back h3 {
    font-size: 15px;
    letter-spacing: 2px;
}

.product-card .content .back .tem-img {
    border-radius: 100%;
}

.product-card .content .back .des {
    font-size: 13px;
    padding: 20px 0px;
}

.product-card .content .back .social-icon {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.product-card .content .back .social-icon li {
    display: inline-block;
}

.product-card .content .back .social-icon li a {
    display: block;
    background: #333;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
}


/* content*/