#contacts .content {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.2);
    margin-top: 220px;
    padding: 20px 20px 15px 20px;
    border-radius: 50px;
    max-width: 800px;
}

#contacts .content .image {
    width: 350px;
    height: 350px;
    min-width: 300px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 50%;
    margin-top: -150px;
    border: 10px solid rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

#contacts .content .image img {
    width: 100%;
    height: auto;
}


#contacts .content .fname,
#contacts .content .lname {
    font-size: 50px;
    color: #fff;
}

#contacts .content .lname {
    margin-top: -20px;
    font-weight: 700;
}

#contacts .content .bio {
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    width: 95%;
}

#contacts .content .bio span {
    font-weight: 800;
}


#contacts .content .bio p {
    padding-bottom: 50px;
}

#contacts .content .row {
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 25px;
    padding: 10px 25px 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#contacts .content .row .row-name {
    font-weight: 600;
    width: 130px;
}

#contacts .content .panorama {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

#contacts .content .panorama img {
    width: 100%;
    height: auto;
    border-radius: 40px;
}

@media only screen and (max-width: 900px) {
    #contacts .content {
        width: 100%;
        border-radius: 0px;
        padding: 0;
    }

    #contacts .content .panorama {
        width: 90%;
    }

    #contacts .content .row {
        font-size: 20px;
    }
    #contacts .content .row .row-name {
        width: fit-content;
    }
}
