/*   
 * Template Name: Unify - Responsive Bootstrap Template
 * Description: Business, Corporate, Portfolio, E-commerce, Blog and One Page Template.
 * Version: 1.8
 * Author: @htmlstream
 * Website: http://htmlstream.com
*/

/*Breadcrumbs
------------------------------------*/ 
/*Default Breadcrumbs*/
.breadcrumbs {
  overflow: hidden;
  padding: 10px 0 6px;
  border-bottom: solid 1px #eee;
  background: url(../img/patterns/breadcrumbs.png) repeat;
}

.breadcrumbs h1 {
  color: #666;
  font-size: 22px;
  margin-top: 8px;
}

.breadcrumb { 
  top: 10px;
  padding-right: 0;
  background: none;
  position: relative;
}
.breadcrumb a {
  color: #777;
}
.breadcrumb li.active,
.breadcrumb li a:hover {
  color: #72c02c;
  text-decoration: none;
}

@media (max-width: 550px) {
  .breadcrumbs h1.pull-left,
  .breadcrumbs ul.pull-right {
    width: 100%;
    text-align: center;
  }

  .breadcrumbs h1.pull-left {
    margin-bottom: 0;
  }

  .breadcrumbs .breadcrumb {
    top: 0;
    margin-bottom: 10px;
  }
}

/*Team v1
------------------------------------*/
.team-v1 .team-v1__user {
    position: relative;
}

/*Team Image*/
.team-v1 .team-v1__user > .team-img {
    position: relative;
}

.team-v1 .team-v1__user > .team-img:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: transparent;
    transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.team-v1 .team-v1__user:hover > .team-img:after {
    background: rgba(0,0,0,0.5);
}

/*Team Socials*/
.team-v1 .team-v1__user > .team-img ul {
    left: 0;
    top: 45%;
    z-index: 1;
    padding: 0;
    width: 100%;
    height: 36px;
    list-style: none;
    margin-top: -18px;
    text-align: center;
    visibility: hidden;
    position: absolute;
    transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out; 
}

.team-v1 .team-v1__user:hover > .team-img ul {
    top: 50%;
    visibility: visible;
}

.team-v1 .team-v1__user > .team-img ul li {
    margin: 0 5px;
    text-align: center;
    display: inline-block;
}

/*Team Discription*/
.team-v1 .team-v1__user > h3 {
    color: #000;
    font-size: 18px;
    line-height: 20px;
    margin: 15px 0 7px;
    text-transform: uppercase;
}

.team-v1 .team-v1__user > h4 {
    color: #999;
    font-size: 11px;
    line-height: 16px;
    text-transform: uppercase;
}

.team-v1 .team-v1__user > p {
    margin: 20px 0;
    position: relative;
}

.team-v1 .team-v1__user > p:before {
    left: 0;
    top: -10px;
    height: 1px;
    width: 40px;
    content: " ";
    position: absolute;
    background: #bbb; 
    transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.team-v1 .team-v1__user:hover > p:before {
    width: 100%;
    background: #72c02c; 
}