.attorney {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.5), 2px 2px 3px #00000080, inset -3px -3px 19px -4px #042f4e;
    background-color: #f3f3f3;
    color: #4a92e0;
    font-weight: 700;
    font-size: 20px;
}

.attorney:hover {
    background-color: #5aa2f0;
    color: #f3f3f3;
}
.attorney.active {
    background-color: #4a92e0;
    color: #f3f3f3;
}

.attorney + .attorney {
    margin-top: 25px;
}

.attorney-profile {
    display: none;
}

.attorney-profile.active {
    display: block;
    text-align: center !important;
    justify-content: center;
}

.profile-details {
    padding: 20px;
    font-weight: 700;
    font-size: 1.5em;
}
.profile-text {
    text-align: justify;
    font-size: 22px;
    padding: 25px 50px;
}
.profile-img {
    height: 300px;
    width: 300px;
    margin: auto;
}

.profile-img > img {
    object-fit: cover;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 2px 1px #000000;
}

@media screen and (min-width: 1020px) /* Desktop */ {

}

@media screen  and (max-width: 1019px) /* Tablet */ {

    .section.left.top > div:first-child {
        width: 40% !important;
    }
    .section.left.top > div:last-child {
        width: 60% !important;
    }
    .attorney {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgba(0,0,0,.5), 2px 2px 3px #00000080, inset -3px -3px 19px -4px #042f4e;
        font-weight: unset;
        font-size: 12px;
        white-space: nowrap;
    }


    .profile-img {
        height: 100px;
        width: 100px;
        margin: auto;
    }
    .profile-details {
        padding: 5px;
        font-weight: 700;
        font-size: 1em;
    }
    .profile-text {
        text-align: justify;
        padding: 0 15px;
        font-size: 12px;
    }

}

@media screen and (max-width: 575px) /* Mobile */ {

}