*{
    box-sizing: border-box;
}   

.intro{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: row wrap;
}

.intro .card{
    font-family: 'ABeeZee', sans-serif;
    position: relative;
    width: 500px;
    margin: 20px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    border-radius: 15px;
    background: rgba(0, 140, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 243px;
}

.intro .card > div{
    padding: 20px;
}

.intro .card h2{
    font-family: 'ABeeZee', sans-serif;
    position: absolute;
    top: -27px;
    right: -15px;
    font-size: 45px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.intro .card .image{
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid white;
    border-radius: 50%;
    margin: 20px;
}

/* ------adding images ------------- */
.intro .card #shiva_image::before{
    content: "";
    position: absolute;
    background: url(pics/shiva-min.jpeg);
    background-size: cover;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.intro .card #pratibha_image::before{
    content: "";
    position: absolute;
    background: url(pics/pratibha.jpeg);
    background-size: cover;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.intro .card #rocky_image::before{
    content: "";
    position: absolute;
    background: url(pics/rocky-min.JPG);
    background-size: cover;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}
/* ---------------------------------------- */

.intro .card .content{
    /* padding: 0px; */
}

.intro .card .content p{
    font-size: 15px;
    font-weight: lighter;
    margin: 10px 0px;
}

.intro .card .content .social{
    position: relative;
    bottom: -15px;
    margin: 20px 0px 10px 0px;
    text-align: left;
    font-size: 18px;
}

.intro .card .content .social > a{
    text-decoration: none;
    color: white;
}

footer{
    border-top: 1px dotted rgb(172, 169, 169);
    position: relative;
    padding: 10px 10px;
    margin: 0px;
    background-color: black;
    bottom: -15px;
}

footer > p {
    margin: 0px;
}