.profile {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 5rem;
    /* margin: 0 auto 5rem auto; */
}

@media (min-width: 768px) { 
    .profile {
        flex-direction: row;
        justify-content:space-between;
        align-items: center;
    }
}

@media (min-width: 768px) { 
    .profile-info {
        max-width: 60%;
        display: flex;
        flex-direction: column;
        align-items:flex-start;
    }
}

/* .profile-title {
 
} */

.profile-description {
    /* margin: 2rem 0; */
    color: var(--grey); 
    /* font-size:1.8rem;
    line-height: 1.5; */
}

.profile-btn {
    /* font-weight:700; */
    background-color: var(--primary);
    color: var(--black);
}

@media (min-width: 480px) { 
    .profile-btn {
        display: inline-block;
    }
}

.profile-img{
    margin-bottom:4rem;
}

@media (min-width: 768px) { 
    .profile-img {
        margin-bottom:0;
        max-width: 40%;
    }
}

.profile-img img {
    width: 25rem;
    height: 25rem;
    border-radius:50%;
    overflow:hidden;
    object-fit: cover;
}

@media (min-width: 768px) { 
    .profile-img img{
        width: 30rem;
        height: 30rem;
    }
}

@media (min-width: 1200px) { 
    .profile-img img{
        width: 40rem;
        height: 40rem;
    }
}