.us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.doctors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 42px;
    max-width: 1300px;
}

.doctor {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: initial;
    flex-wrap: wrap;
    margin: 20px 10px;
    width: 540px;
}

.doctor-description {
    display: flex;
    flex-direction: column;
    max-width: 344px;
    align-items: baseline;
    margin: 18px;
}

.doctor-description > * {
    margin-bottom: 5px;
}


@media (max-width: 800px) {
    .doctor-description {
        align-items: center;
    }

    .doctor {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 300px;
    }
}