@charset "utf-8";
/* CSS Document */

.our-team{
    border-left: 6px solid #ed1c24;
    border-bottom: 6px solid #ed1c24;
}
.our-team .team-image{
    position: relative;
    text-align: center;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .description{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    padding: 40px 50px;
    opacity: 0;
    background-color: rgba(247, 147, 30, 0.85);
    transition: all 0.5s ease 0s;
}
.our-team:hover .description{
    opacity: 1;
}
.our-team .social{
    padding: 10px 0 0 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 40px;
    left: -27px;
    background:#ed1c24;
    text-align: center;
    transform: translate(25px, 0px) rotateY(90deg);
    transition: all 0.5s ease 0s;
}
.our-team:hover .social{
    transform: translate(0px, 0px) rotateY(0deg);
}
.our-team .social li{
    display: block;
    margin-bottom: 10px;
}
.our-team .social li a{
    display: block;
    width: 40px;
    height: 35px;
    font-size: 17px;
    color: #fff;
    line-height: 30px;
    transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
    background: #d91b23;
}
.our-team .team-info{
    padding: 20px;
}
.our-team .title{
	font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #7a7a7a;
    letter-spacing: 4px;
    margin: 0 0 15px 0;
    transition: all 0.5s ease 0s;
}
.our-team .post{
    display: block;
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #7a7a7a;
    text-transform: capitalize;
}
.our-team .title:hover,
.our-team .post:hover{
    color: #ed1c24;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}
@media only screen and (max-width: 767px){
    .our-team .social{ left: -20px; }
}
@media only screen and (max-width: 480px){
    .our-team .social{ left: -20px; }
}