@charset "utf-8";
/* CSS Document */
.baskervville {
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  /* 400 - 700 */
  font-style: normal;
}

.unbounded {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  /* 200 - 900 */
  font-style: normal;
}

.our-team{
    text-align: center;
    overflow: hidden;
    position: relative;
    padding-bottom:10px; padding-left: 0; padding-right: 0; margin: 0;
	
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 100%;
    height: 100%;
    background-color:#55675C ;
    padding-top: 25%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.52, 1.64, 0.37, 0.66) 0s;
}
.our-team:hover .team-content{ transform: translateY(0); }
.our-team .title{
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 20px 0;
	font-family: "Unbounded", sans-serif;
}

.our-team .post{
    display: block;
    font-size: 14px;
	font-weight: 300; letter-spacing: 1px;
    color: #fff;
	font-family: "Unbounded", sans-serif;
	
}
.our-team .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.our-team .social li{
    display: inline-block;
    margin-top: 0px;
    padding-bottom:20px;
}
.our-team .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #4c5462;
    margin-right: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease 0s;
	
}
.our-team .social li a:hover{
    background: linear-gradient(to right, #7851a9 0%, #ffd700 100%);
    color: #fff;
    text-decoration:none;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 0; }
}