.profile_container {
    margin: 6.25rem auto;
}
@media screen and (max-width:63.9375rem) {
    .profile_container {
        margin: 1.875rem 0.5rem;
    }
}
@media screen and (min-width:64rem) and (max-width:119.9375rem) {
    .profile_container {
        width: 61.5rem;
    }
}
@media screen and (min-width:120rem) {
    .profile_container {
        margin: 6.25rem 0;
    }
}

.item {
    display: flex;
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
}
@media screen and (max-width:63.9375rem) {
    .item {
        display: block;
        margin-bottom: 0.625rem;
        font-size: 0.875rem;
    }
}

.item .name {
    font-weight: bold;
    text-align: right;
    width: 8rem;
    margin-right: 3.125rem;
}
@media screen and (max-width:63.9375rem) {
    .item .name {
        text-align: left;
        width: 100%;
        margin-bottom: 0.375rem;
    }
}

.item .data {
    text-align: left;
    width: calc(100% - 12rem);
}
@media screen and (max-width:63.9375rem) {
    .item .data {
        width: 100%;
    }
}