.contentus-link1 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}

.contentus-link1:hover {
    color: #fff;
    text-decoration: underline;
}

.contentus-one{
    border: 1px solid #87a7bd;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    z-index: 1;
    position: relative;
}
.contentus-one:before,
.contentus-one:after{
    content: "";
    width: 100%;
    height: 104%;
    background: #87a7bd;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.3);
    transition: all 0.3s ease 0s;
}
.contentus-one:after{
    width: 106%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.25);
}
.contentus-one:hover:before{ transform: translateY(-50%) scaleX(0.7); }
.contentus-one:hover:after{ transform: translate(-50%, -50%) scaleY(0.7); }
.contentus-one img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}
.contentus-one .team-content{
   width: 99%;
    padding: 35px 0 1px;
    background: #87a7bdb0;
    position: absolute;
    bottom: 50px;
    left: 50%;
    opacity: 0;
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.5, 0.2,0.1,0.9);
}
.contentus-one:hover .team-content{
    bottom: 20px;
    opacity: 1;
}
.contentus-one .title{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}
.contentus-one .post{
    display: block;
    font-size: 0px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.contentus-one .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.contentus-one .social li{
    display: inline-block;
    margin: 0 5px;
}
.contentus-one .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #ff3232;
    transition: all 0.3s ease 0s;
}
.contentus-one .social li a:hover{
    background: linear-gradient(to bottom,#ff3232, darkred);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
    color: #fff;
}
@media only screen and (max-width: 990px){
    .contentus-one{ margin-bottom: 30px; }
}