.us {
    width: 90%;
    margin: var(--sections-top-margin) auto 0 auto;
    transition: opacity 1.5s, transform 1.5s;
}

.us__profiles {
    display: flex;
    justify-content: center;
}

/* ------------------------------------ */

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.profile__img {
    width: 75%;
    height: auto;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 30px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px -10px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px -10px rgba(0,0,0,0.75);
}

.profile__name {
    font-family: var(--font-family);
    font-size: var(--h2-font-size);
}

.profile__desc {
    padding: 0 15px 0 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--us-profile-font-size);
    text-align: justify;
}

.profile__left {
    margin-right: 15px;
}

.profile__right {
    margin-left: 15px;
}

/* ------------------------------------ */

.profile__introduction {
    width: 35%;
    align-self: center;
    margin-left: 150px;
}

.introduction__title {
    font-family: var(--font-family);
    font-size: var(--p-font-size);
}

.introduction__text {
    font-family: 'Open Sans', sans-serif;
    font-size: var(--p-font-size);
    text-align: justify;
}