.employee {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  float: none;
  margin: 0 0 30px;
  min-width: 260px;
  overflow: hidden;
  position: relative;
  text-align: left;
  vertical-align: top;
}

.employee .image {
  background: #f2f2f2;
  display: block;
  line-height: 0;
  margin: 0;
}
.employee .image > img {
  width: 100%;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.employee .description {
  background: #f2f2f2;
  border-top-width: 1px;
  color: #505050;
  display: table;
  height: 72px;
  line-height: 18px;
  text-align: center;
  width: 100%;
}
.employee .description .vertical {
  display: table-cell;
  height: 72px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: middle;
}
.employee .name {
  color: #1e1e1e;
  font-weight: normal;
  line-height: 18px;
  margin: 0 0 4px;
}

.employee-hover {
  background: #1e1e1e;
  background: rgba(30,30,30,.9);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 0;
  opacity: 0;
  color: #7f7f7f;
  line-height: 20px;
  left: 4px;
  padding: 16px 20px 90px;
  position: absolute;
  right: 4px;
  top: 0;
}
.employee-hover p{
    color: #f1f1f1;
    font-size: 13px;
}
.employee-hover .name {
  color: #fff;
  font-weight: normal;
  line-height: 1.4;
  margin: 0 0 7px;
}
.employee .employee-hover .role {
  line-height: 1;
  margin: 0 0 24px;
}
.employee .employee-hover .contact {
  color: #fff;
}
.employee .employee-hover .image {
  background: #f7f7f7;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  height: 60px;
  float: right;
  line-height: 0;
  margin: 4px 0 0 5px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 60px;
  z-index: 1;
}

.employee-hover:hover {
  display: block;
  opacity: 1;
  height: inherit;
  -o-transition: all .6s ease-in-out;
  -ms-transition: all .6s ease-in-out;
  -moz-transition: all .6s ease-in-out;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 13;
}

.employee.employee-single {
  margin: 0;
  max-width: inherit;
  width: auto;
}
.employee-single .images-box .carousel-box {
  overflow: hidden;
}
.employee-single .images-box .image {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0 0 20px;
  text-align: center;
}
.employee-single .images-box img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.employee-single .images-box .pagination {
  margin-top: 0;
}
.employee-single .images-box .carousel-box.load {
  max-height: 390px;
  overflow: hidden;
}
.employee-single .employee-description .name {
  line-height: 1.3;
  margin: 0 0 5px;
}
.employee-single .employee-description .role {
  margin: 0 0 22px;
}

.employee-single-rotation .content-box {
  padding-left: 15px;
  padding-right: 15px;
}

.social-employee {
text-align: center;
  bottom: 20px;
  left: 20px;
  position: absolute;
}

.social-employee li {
    display: inline-block;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 30px;
    margin: 0 2px;
    background: #fff;
    padding-top: 10px;

    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.social-employee li a {
    display: block;
    color: rgb(53, 53, 53);
    font-size: 14px;
    overflow: hidden;
    height: 15px;  
}
.social-employee li i{
    display: block;
    position: relative;
     moz-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.social-employee li a .top{
    top:-15px;
}
.social-employee li a .bottom{
    top:-15px;
}
.social-employee li a:hover .bottom{
    top:15px;
}
.social-employee li a:hover .top{
    top:0px;
}