/* ===== DOCTOR PRENSENTATION PART ==== */

#place_whoweare {
    width: 90%;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}

#doctor_presentation {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 10vh;
}

#doctor_presentation>p {
    width: 90%;
    max-width: 600px;
    font-style: italic;
    font-size: 18px;
}

#doctor_presentation>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
    min-width: 300px;
    margin-bottom: 40px;
}

#doctor_presentation>div>h3 {
    margin-top: 20px;
}

#doctor_presentation>div>p {
    text-align: justify;
    margin: 0px;
    max-width: 350px;
    margin-bottom: 40px;
    margin-right: 30px;
    margin-left: 20px;
}

#doctor_presentation img {
    height: 250px;
    border-radius: 25px;
    box-shadow: 0px 0px 30px 0px grey;
    opacity: 0.9;
    transition: 0.5s;
}

#doctor_presentation img:hover {
    opacity: 1;
    transition: 0.5s;
}

#doctor_presentation a {
    padding: 15px 20px;
    color: white;
    background-color: rgba(0, 153, 51, 0.6);
    border-radius: 25px;
}