.tmm-team .item-square {
    background-color: #fff;
    text-align: center;
   border: 1px solid #c5c5c4;
display: inline-block;
margin: 0.2%;
box-shadow: 2px 2px 2px #ccc;
}
.tmm-team .item-square .face {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 175px;
}
.tmm-team .item-square .face img {
    -webkit-transition: -webkit-transform .35s ease .2s;
    transition: transform .35s ease .2s;
}
.tmm-team .item-square .face:hover img {
    /*-webkit-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);*/
}
.tmm-team .item-square .item-content {
    text-align: center;
    position: relative;
}
.tmm-team .item-square .title {
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.tmm-team .item-square .title h3 {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background-color: #e26659;
    position: absolute;
    width: 100%;
    padding: 8px 0px;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: background-color .35s ease, -webkit-transform .35s linear, opacity .35s ease;
    transition: background-color .35s ease, transform .35s linear, opacity .35s ease;
}
.tmm-team .item-square:hover .item-content .title h3 {
    opacity: 1;
    -webkit-transform: translateY(-36px);
    transform: translateY(-36px);
    -webkit-transition: background-color .35s ease, -webkit-transform .35s linear, opacity .35s ease;
    transition: background-color .35s ease, transform .35s linear, opacity .35s ease;
}
.tmm-team .item-square .title h4 {
    font-size: 24px;
    color: #1d1d1d;
    padding: 14px 5px 11px;
    font-weight: 500;
    background-color: #fff;
    position: relative;
    z-index: 2;
    -webkit-transition: color .35s ease, font-weight .35s ease;
    transition: color .35s ease, font-weight .35s ease;
}
.tmm-team .item-square:hover .title h4 {
    color: #79bd8f;
    font-weight: 700;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.tmm-team .item-square .item-content .text {
    display: block;
    overflow: hidden;
    width: 100%;
    max-height: 100px;
margin-bottom: 3%;
}
.tmm-team .item-square .item-content p {
    padding: 10px 17px 10px;
    text-align: left;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    color: #666666;
    font-weight: 300;
    /*-webkit-transition: -webkit-transform 1s linear;
    transition: transform 1s linear;*/
}
.tmm-team .item-square:hover .text p {
    /*-webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 6s linear .4s;
    transition: transform 6s linear .4s;*/
}
.tmm-team .item-square .footer {
    padding: 20px 5px 5px 5px;
}
.tmm-team .item-square .social-icons {
    padding: 10px 0;
	text-align: center;
}
.tmm-team .item-square .social-icons li {
    display: inline-block;
    list-style: none;
    padding: 0 8px;
    position: relative;
}
.tmm-team .item-square .social-icons li a {
    font-size: 20px;
    color: #807f7f;
    cursor: pointer;
    padding: 6px;
    position: relative;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: box-shadow 0.2s, color .2s ease;
    transition: box-shadow 0.2s, color .2s ease;
}
.tmm-team .item-square .social-icons li a:hover {
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}
.tmm-team .item-square .social-icons li:nth-child(1):hover a {
    color: #187dbd;
}
.tmm-team .item-square .social-icons li:nth-child(2):hover a {
    color: #1ed0d6;
}
.tmm-team .item-square .social-icons li:nth-child(3):hover a {
    color: #f55f25;
}
.tmm-team .item-square .social-icons li:nth-child(4):hover a {
    color: #fb7db5;
}
.tmm-team .item-square .social-icons li a:after {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -1px;
    left: 0;
    padding: 0;
    border: 1px solid #cccccc;
    content: "";
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}
.tmm-team .item-square .social-icons li a:hover:after {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}
.tmm-team .item-square .social-icons li a:hover {
    box-shadow: 0 0 0 5px rgba(198, 198, 198, .5);
    color: #c6c6c6;
    -webkit-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}