



a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: #242424;
}








/*--------team-area start --------*/
.team-area{
    padding: 120px 0px 90px;
}
.team-wrap{
    margin-bottom: 50px;
    position: relative;
}
.team-img img{
    width: 100%;
}
.team-content{
    position: absolute;
    left: 2.5%;
    width: 95%;
    text-align: center;
    background: #ffbf00;
    bottom: -20px;
    z-index: 99;
    padding: 25px 0px;
}
.team-wrap:hover .team-content{
    background: #ffbf00;
}
.team-content h4{
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
}
.team-content p{
    color: #fff;
    font-style: italic;
    font-size: 13px;
    font-weight: 500;
}
.team-content ul{
    visibility: hidden;
    transform: scaleY(0);
    transform-origin:bottom; 
    -webkit-transform: scaleY(0);
    -webkit-transform-origin:bottom; 
    -moz-transform: scaleY(0);
    -moz-transform-origin:bottom; 
    height: 0;
    transition: height .3s ease-in-out 1s;
    -webkit-transition: height .3s ease-in-out 1s;
    -moz-transition: height .3s ease-in-out 1s;
}
.team-wrap:hover .team-content ul{
    visibility: visible;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    height: auto;
    margin-top: 15px;
}
.team-content ul li{
    display: inline-block;
}
.team-content ul li a{
    display: block;
    height: 25px;
    width: 25px;
    background: #242424;
    color: #fff;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    font-size: 13px;
}
.team-content ul li a:hover{
    background: #fff;
    color: #ffbf00;
}
/*--------team-area end --------*/

