h1{
            font-size:25px;
            text-align:center;
        }
        .profile-card{
            margin-bottom:10px;
        }
        .profile-card .profile-img{
            position: relative;
            overflow: hidden;
        }
        .profile-card .profile-img::after{
            content:"";
            border: 1px solid #fff;
            position:absolute;
            width:100%;
            height:100%;
            left:0;
            top:0;
            opacity:0;
            transform: scale(1,1);
            transition: all 0.50s linear 0s;
        }
        .profile-card:hover .profile-img:after{
            transform:scale(0.9,0.9);
            opacity:1;
        }
        .profile-card .profile-img img{
            width:100%;
            height:auto;
            transform:scale(1,1);
            transition: all 0.50s linear 0s;
        }
        .profile-card:hover img{
            transform:scale(1.2,1.2);
        }
        .profile-card .profile-img .over-layer{
            position: absolute;
            width:100%;
            height:100%;
            top:0;
            left:0;
            opacity:0;
            padding:10% 9%;
            text-align:left;
            background:rgba(255,255,255,0.4);
            transform: scale(0,0);
            transition: all 0.50s ease 0.5s;
        }
        .profile-card:hover .over-layer{
            opacity:1;
            transform: scale(0.9,0.9);
        }
        .profile-card .profile-img .over-layer p{
            font-size:14px;
            color:#fff;
            text-transform:capitalize;
        }
        .profile-card .profile-img .over-layer-one .title > span{
            display: block;
            margin:5px 0;
        }
        .profile-card .profile-content{
            background:#E5771E;
            text-align:center;
            /*padding:15px;*/
			padding:5px;
        }
        .profile-card .profile-content .title{
            font-size:20px;
            color:#fff;
            margin:0 0 10px;
            text-transform: uppercase;
        }
        .profile-card .profile-content .title > span{
            font-size:16px;
            color:#FFFFff;
            margin:0 7px;
            text-transform: capitalize;
        }
        .profile-card .profile-content .social-link{
            margin:0;
            padding:0;
        }
        .profile-card .profile-content .social-link li{
            display:inline-block;
            list-style:none;
            margin:0 5px;
        }
        .profile-card .profile-content .social-link li a{
            display:inline-block;
            width:30px;
            height:30px;
            color:#FF3E78;
            line-height:30px;
            text-align: center;
            background: rgba(255,255,255,0.5);
        }
        .profile-card .profile-content .social-link li a:hover{
            text-decoration:none;
        }