.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-two{
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
}
.damaestro-two .pic{
    background: #130c64;
    transition: all 0.3s ease 0s;
}
.damaestro-two:hover .pic{
    padding: 10px;
    border-radius: 10px;
    transform: scale(0.5) translateY(-30%);
}
.damaestro-two .pic img{
    width: 100%;
    height: auto;
}
.damaestro-two .team-content{
    width: 100%;
    padding: 7px 15px;
    background: #0f1062;
    position: absolute;
    bottom: -30%;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.damaestro-two:hover .team-content{
    opacity: 1;
    bottom: -10px;
}
.damaestro-two .title{
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.damaestro-two .post{
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-style: italic;
    text-transform: capitalize;
    margin: 0 0 5px 0;
}
.damaestro-two .social{
    padding: 0;
    margin: 0;
    list-style: none;
    transition: all 0.35s ease 0s;
}
.damaestro-two .social li{
    display: inline-block;
    margin: 0 5px 0 0;
}
.damaestro-two .social li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 15px 0 15px 0;
    font-size: 20px;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    position: relative;
    transition: all 0.35s ease 0s;
}
.damaestro-two .social li a:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #e06f06;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    transition: all 0.3s ease-in-out 0s;
}
.damaestro-two .social li a:hover:before{ left: 0; }
@media only screen and (max-width: 990px){
    .damaestro-two{ margin-bottom: 30px; }
}