.damaestro-link1 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}

.damaestro-link1:hover {
    color: #fff;
    text-decoration: underline;
}

.damaestro-one{
   // border: 2px solid #446c38;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    z-index: 1;
    position: relative;
}
.damaestro-one:before,
.damaestro-one:after{
    content: "";
    width: 100%;
    height: 104%;
    background: #226043;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.3);
    transition: all 0.3s ease 0s;
}
.damaestro-one:after{
    width: 106%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.25);
}
.damaestro-one:hover:before{ transform: translateY(-50%) scaleX(0.7); }
.damaestro-one:hover:after{ transform: translate(-50%, -50%) scaleY(0.7); }
.damaestro-one img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}
.damaestro-one .team-content{
    width: 93%;
    padding: 25px 0 10px;
    background: #199d28;
    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);
}
.damaestro-one:hover .team-content{
    bottom: 10px;
    opacity: 1;
}
.damaestro-one .title{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}
.damaestro-one .post{
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.damaestro-one .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.damaestro-one .social li{
    display: inline-block;
    margin: 0 5px;
}
.damaestro-one .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #226043;
    transition: all 0.3s ease 0s;
}
.damaestro-one .social li a:hover{
    background: linear-gradient(to bottom,#226043, darkred);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
    color: #fff;
}
@media only screen and (max-width: 990px){
    .damaestro-one{ margin-bottom: 30px; }
}