/* starting of table */
@media (max-width: 32rem) {
.table__heading {
  display: none;
}
.table__content {
  display: block;
  padding: .5rem 0;
}
.table__row {
  margin: .25rem 1rem;
  padding: .5rem 0;
  display: block;
  border-bottom: 2px solid #FFC842;
}
.table__content:before {
  content: attr(data-heading);
  display: inline-block;
  width: 7rem;
  margin-right: .5rem;
  color: #999;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
}
/* ending of table */

.our-team{
    text-align: center;
    overflow: hidden;
    padding: 5px 5px 5px 5px;
    border: 1px solid #ebebeb;
    transition:all 0.3s ease 0s;
    max-width: 318px; max-height: 458px;
}
.pic img{
    border: 10px solid #f8f8f8;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    width:  170px;
    height: 170px;
    background-position: 50% 50%;
    background-repeat:   no-repeat;
    background-size: cover;
}
.post-title{
    position: relative;
    margin: 38px 0 18px 0;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    color:#333;
}
.border{
    width: 100px;
    border-bottom: 3px solid orange;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}
.border:after{
    content: "";
    width: 34px;
    display: block;
    position: relative;
    top:3px;
    border-bottom: 3px solid orange;
    margin: auto;
}
.post{
    overflow: hidden;
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: orange;
    text-transform: capitalize;
    opacity: 1;
    transition: all 0.3s ease 0s;
}
.team_social{
    list-style: none;
    padding: 0;
    text-align: center;
    position: relative;
    bottom: -100px;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.team_social > li{
    display: inline-block;
    margin-right: 20px;
}
.team_social > li:last-child{
    margin-right: 0;
}
.team_social > li > a{
    font-size: 15px;
    font-weight: 400;
    color:#333;
    transition: all 0.3s ease 0s;
}
.team_social > li > a:hover{
    color: orange;
}
.our-team:hover{
    background: #E8E8E8;
    padding: 5px 5px 5px 5px;
}
.our-team:hover .pic img{
    border-color: orange;
}
.our-team:hover .border{
    border-color: orange;
}
.our-team:hover .border:after{
    border-color: orange;
}
.our-team:hover .post{
    margin-top: 0;
    opacity: 0;
}
.our-team:hover .team_social{
    opacity: 1;
    bottom: 0;
}
@media screen and (max-width: 990px){
    .our-team{
        margin-bottom: 30px;
    }
}