section.first{
    padding: 0;
    display: flex;
    overflow-y: hidden;
}

header{
    padding: 0rem 3rem 0rem 3rem;
    z-index: 100000;
}

.content{
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title{
    font-size: 4rem;
    font-weight: 600;
    color: rgb(62, 136, 90);
}

.cards{
    display: flex;
    width: 100%;
    height: 60%;
    align-items: center;
    justify-content: space-around;
}

.profile-card{
    position: relative;
    width: 290px;
    height: 290px;
    background-color: rgb(30, 70, 45);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: -5px 8px 45px rgba(51, 51, 51, 0.126);
    transition: all .4s;
    margin: 0 20px;
}
.profile-card:hover{
    border-radius: 10px;
    height: 320px;
}
.profile-card .img{
    position: relative;
    width: 100%;
    height: 100%;
}
.profile-card:hover img{
    border-radius: 10px;
    transform: translateY(-90px);
    height: 80%;
}
.img img{
    object-fit: fill;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all .4s;
    z-index: 99;
    box-shadow: -5px 8px 45px rgba(51, 51, 51, 0.126);
}
.caption{
    text-align: center;
    transform: translateY(-90px);
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}
.profile-card:hover .caption{
    opacity: 1;
    pointer-events: all;
}
.caption h3{
    font-size: 21px;
    color: rgb(19, 192, 85);
    font-weight: 600;
}
.caption p{
    font-size: 1rem;
    width: 100%;
    font-weight: 500;
    margin: 2px 0 12px 0;
    color: #fff;
}

.caption .links{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.caption .links a{
    font-size: 0.8rem;
    cursor: pointer;
    color: #ffffff;
    transition: all .4s;
    text-decoration: none;
    text-align: center;
}
.caption .links a:hover{
    color: rgb(19, 192, 85);
}