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

.top-bg-container {
    position: relative;
    background-color: #fff;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 1px;
    overflow: hidden;

    .clinic-banner {
        position: relative;
        position:relative;
        border-bottom-left-radius: 1000px 100px;
        border-bottom-right-radius: 1000px 100px;
        margin: auto -1%;
        max-width: 102%;

        @media @mobile {
            border-bottom-left-radius: 500px 100px;
            border-bottom-right-radius: 500px 100px;
            margin: auto;
            max-width: 100%;
        }
    }
}

.title-container {
    padding: 60px 0px;
    text-align: center;
    background-color: #fff;

    .title-content {
        margin: auto;

        @media @mobile {
            text-align: center;
        }

        .clinic-logo {
            width: 160px;
            margin: auto;

            @media @mobile {
                margin: auto;
            }
        }

        .clinic-name {
            h1 {
                font-size: 27px;
                font-weight: bold;
                margin: 20px 0px 0px 0px;

                @media @mobile {
                    font-size: 24px;
                    padding: 0px 10px;
                }
            }

            .line {
                border-top: 1px solid #cecccc;
                width: 50px;
                margin: 20px auto 8px;

                @media @mobile {
                    display: none;
                }
            }

            small {
                color: #606160;
                font-size: 16px;
            }
        }

        .clinic-status {
            display: inline-block;
            color: #fff;
            border-radius: 8px;
            padding: 2px 10px;
            text-transform: uppercase;
            margin-top: 10px;
        }
    }
}

.about-us-container {
    position:relative;
    background-color: #ffffff;
    padding: 30px 0px 50px 0px;

    h2 {
        text-align: center;
        margin: 0px 0px 20px;
        font-weight: bold;
    }

    .about-us-img {
        height: 500px;

        @media @mobile {
            height: auto;
        }

        @media @tablet {
            height: auto;
        }
    }

    .about-us-content {
        color: #000;

        .row {
            margin: 0px;
        }

        .row > [class*='col-'] {
            padding: 0px;
        }

        .description {
            height: 500px;
            background-color: #f6f6f6;
            padding: 20px 40px;

            // Vertical center align
            display: flex;
            justify-content: center;
            flex-direction: column;

            // Hide text that too long
            overflow: hidden;
            text-overflow: ellipsis;

            @media @mobile {
                height: auto;
                padding: 20px 25px;
            }

            @media @tablet {
                height: auto;
                padding: 20px 12%;
            }

            &.no-img {
                height: auto;
                padding: 20px 12%;
            }
        }
    }
}
