@mobile:  ~"(max-width: 767px)";
@tablet:  ~"(min-width: 768px) and (max-width: 979px)";
@normal:  ~"(min-width: 980px) and (max-width: 1199px)";
@wide:    ~"(min-width: 1200px)";

.doctor-container {
    padding: 50px 0px;
    background-color: #f6f6f6;

    @media @mobile {
        padding: 50px 15px 50px;
    }

    h2 {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .doctor-content {
        margin: 0px 12% 0px 12%;

        .row.flex-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .row.flex-row > [class*='col-'] {
            display: flex;
            flex-direction: column;
        }

        @media @mobile {
            margin: auto;
        }

        .clinic-doctor {
            margin: 15px;

            .row.flex-row {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .row.flex-row > [class*='col-'] {
                display: flex;
                flex-direction: column;
            }

            .doctor-info {
                display: flex;
                justify-content: center;
                flex-direction: column;
                word-wrap: break-word;

                .doctor-name {
                    padding: 10px 0px;

                    @media @mobile {
                        padding: 5px 0px;
                    }
                }
            }

            .doctor-profile-picture {
                border-radius: 100%;
                border: 2px #f1f1f1 solid;

                @media @tablet {
                    max-width: 150px;
                    min-width: 150px;
                }
            }

            h4 {
                text-align: left;
                @media @mobile {

                    margin-top: 0px;
                    margin-left: 20px;
                }
            }
        }
    }
}
