:root {
    --black: #000;
    --white: white;
    --light-blue: #c1daf6;
    --blue: #7e87a3;
    --light-grey: #acabae;
    --color: #242529;
    --blue-grey: #96a0b5;
}

.w-layout-layout {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding: 20px;
}

.w-layout-cell {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

body {
    color: #222;
    font-family: Montserrat, sans-serif;
    font-size: 1em;
    line-height: 1.2em;
}

h1 {
    color: #4f5b80;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Taviraj, sans-serif;
    font-size: 3em;
    font-weight: 600;
    line-height: 1.1em;
}

h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Taviraj, sans-serif;
    font-size: 2.6em;
    font-weight: 600;
    line-height: 1.2em;
}

h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 30px;
}

h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.1em;
}

h5 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.1em;
}

p {
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.8em;
}

a {
    color: #4f5b80;
    font-weight: 500;
    text-decoration: none;
}

a:hover {
    color: #5571c7;
}

ul {
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 20px;
    line-height: 1.8em;
}

li {
    margin-bottom: 0;
}

.navbar {
    z-index: 1000;
    background-color: #242529;
    border: 1px #fff9;
    justify-content: space-between;
    align-items: stretch;
    height: 100px;
    margin-top: 0;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
}

.logo {
    background-color: #fff0;
    width: 230px;
    margin-right: 0;
}

.w-nav-button.w--open {
    background-color: #C8C8C8;
    color: #000000;
}

.navlink {
    color: var(--white);
    text-transform: uppercase;
    justify-content: flex-start;
    align-items: center;
    font-size: .9em;
    font-weight: 600;
    display: flex;
}

.navlink:hover {
    color: var(--light-blue);
}

.hero_section {
    height: 100svh;
    min-height: 100svh;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero_img_div {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.hero_img {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}

.decor_container {
    z-index: 10;
    width: 100%;
    position: relative;
    inset: 0 auto 0% 0%;
}

.decor_div {
    background-image: url('../images/decor-darkgrey.svg'), url('../images/decor-grey-semitransparent.svg');
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, 100%;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 150px;
    display: flex;
    position: absolute;
    top: -150px;
}

.decor_div.inner {
    height: 100px;
    top: -100px;
}

.main_tagline_div {
    z-index: 50;
    text-align: center;
    position: absolute;
    inset: auto 0% 36%;
}

.main_tagline {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Taviraj, sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    line-height: 1.2em;
}

.hero_overlay {
    z-index: 5;
    background-image: linear-gradient(#00000057, #0000 37%, #0000006b 54%, #0000);
    display: block;
    position: absolute;
    inset: 0%;
}

.static_btns_div {
    z-index: 500;
    background-color: #242529;
    border-top: 1px solid #fff0;
    justify-content: space-between;
    align-items: stretch;
    width: auto;
    height: 45px;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 0;
    display: flex;
    position: fixed;
    inset: auto auto 0% 0%;
}

.static_btn {
    color: var(--light-blue);
    text-transform: uppercase;
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: .9em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
}

.static_btn:hover {
    color: var(--white);
}

.welcome_wrapper {
    background-image: url('../images/decor-darkblue2.svg');
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100svw;
    width: auto;
    padding: 5% 10% 12%;
    position: static;
    inset: 35% 0% auto;
}

.welcome_headline {
    color: var(--white);
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Taviraj, sans-serif;
    font-size: 2.8em;
    font-weight: 600;
    line-height: 1.2em;
}

.services_section {
    min-height: auto;
    padding-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
}

.white_text {
    color: var(--white);
}

.white_text.center {
    text-align: center;
}

.section_header_div {
    flex-flow: column;
    align-items: center;
    margin-bottom: 5%;
    display: flex;
}

.section_header_div.center {
    text-align: center;
}

.section_header_div.no_margin {
    text-align: center;
    margin-bottom: 0%;
}

.section_header_text {
    color: var(--blue);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-left: 10px;
}

.services_headline {
    text-transform: none;
    font-size: 2.8em;
    font-weight: 600;
}

.services_grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding: 0;
}

.services_wrapper {
    width: 100%;
    position: relative;
}

.services_img_div {
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 0 20px 6px #00000026;
}

.services_button {
    color: #0037e2;
    width: 100%;
    font-family: Taviraj, sans-serif;
    font-size: 2em;
    font-weight: 600;
    line-height: 1em;
    display: none;
    position: relative;
    overflow: hidden;
}

.services_button:hover {
    filter: none;
}

.services_description_text {
    z-index: 5;
    text-align: left;
    background-color: #fff0;
    width: 100%;
    height: 41%;
    padding: 40px 20px;
    position: static;
    inset: auto 0% 0%;
}

.services_description_text.bottom {
    background-color: #fff0;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.services_desc_text {
    color: var(--black);
    text-align: left;
    margin-top: 15px;
    font-family: Montserrat, sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.8em;
}

.services_img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.services_btn_title {
    color: #001452;
    text-align: left;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.1em;
}

.services_overlay {
    background-image: linear-gradient(#0000 29%, #00000075);
    position: absolute;
    inset: 0%;
}

.featured_services_section {
    grid-column-gap: 5svh;
    grid-row-gap: 5svh;
    flex-flow: column;
    padding: 0%;
    display: block;
}

.featured_services_wrapper {
    box-shadow: none;
    color: #fff;
    background-color: #6d758f;
    border: 1px #00000030;
    margin-bottom: 0;
    padding: 80px 10% 0;
    position: relative;
    top: auto;
}

.featured_services_wrapper._2 {
    background-color: #6d758f;
    background-image: linear-gradient(#0000001a, #0000001a);
    margin-bottom: 0;
    padding-bottom: 0;
    top: 0;
}

.featured_services_wrapper._3 {
    color: #fff;
    background-color: #6d758f;
    background-image: linear-gradient(#0003, #0003);
    margin-bottom: 0;
    padding-bottom: 0;
    top: 0;
}

.featured_services_wrapper._4 {
    color: #fff;
    background-color: #6d758f;
    background-image: linear-gradient(#0000004d, #0000004d);
    margin-bottom: 0;
    padding-bottom: 0;
    top: 0;
}

.featured_services_wrapper._5 {
    color: #fff;
    background-color: #6d758f;
    background-image: linear-gradient(#0006, #0006);
    margin-bottom: 0;
    padding-bottom: 0;
    top: 0;
}

.feature_columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 0;
}

.feature_text_cell {
    background-color: #0000;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0%;
    padding-right: 15%;
}

.feature_headline {
    letter-spacing: 2px;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Taviraj, sans-serif;
    font-size: 3em;
    font-weight: 500;
    display: block;
}

.feature_img_div {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.feature_img {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
}

.feature_main_container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    height: auto;
    margin-top: 100px;
    display: flex;
}

.section_number_div {
    z-index: 5;
    opacity: .67;
    background-color: #0000;
    border-bottom: 1px solid #ffffff2b;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 80px;
    padding: 10px 5%;
    display: flex;
    position: absolute;
    inset: 0 auto auto 0%;
}

.section_number {
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-left: 1px;
    font-size: 1.2em;
    font-weight: 500;
}

.doc_section {
    padding: 8% 10% 5%;
}

.docs_grid {
    border-bottom: 3px solid #000;
    margin-bottom: 5%;
    padding: 0;
}

.doc_cell {
    align-items: stretch;
}

.doc_btn {
    color: #3b4050;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    display: flex;
}

.doc_img_div {
    aspect-ratio: auto;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.doc_img {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
}

.doc_name_div {
    text-align: center;
    background-color: #59607500;
    border-top: 1px solid #596075;
    border-bottom: 1px #00000054;
    width: 100%;
    padding: 12px 0;
}

.doc_overlay {
    background-color: #ffffffe0;
    position: absolute;
    inset: 0%;
}

.appointment_section {
    background-color: #ececec00;
    background-image: url('../images/decor-lightgrey.svg'), url('../images/decor-darkblue3.svg');
    background-position: 0 0, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-size: 120%, 120%;
    padding: 10% 10% 0%;
}

.appointment_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    color: #fff;
    padding: 0;
}

.appointment_text_cell {
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 15%;
}

.appointment_headline {
    color: #fff;
    margin-bottom: 0;
}

.appointment_subheadline {
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: 15%;
    font-size: 1.4em;
    line-height: 1.1em;
}

.italic-text {
    color: #fff;
    font-size: 1.2em;
    font-weight: 200;
    line-height: 1.2em;
}

.clearwave_logo {
    width: 180px;
    margin-top: 16px;
    display: block;
}

.clearwave_div {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding-right: 5%;
    display: flex;
}

.cataract_callout_section {
    padding: 0%;
    position: relative;
}

.cataract_callout_img_div {
    height: 800px;
    position: relative;
    overflow: hidden;
}

.cataract_callout_img {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
}

.img_overlay {
    background-image: linear-gradient(96deg, #000000c2 20%, #0000 65%);
    position: absolute;
    inset: 0%;
}

.cataract_callout_text {
    z-index: 5;
    color: #fff;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 38%;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 10%;
}

.list_no_margin {
    margin-bottom: 0;
}

.appointment_img_div {
    width: 100%;
    overflow: hidden;
}

.appointment_img {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
}

.appointment_img_cell {
    justify-content: flex-end;
    align-items: center;
}

.footer_section {
    color: #fff;
    background-color: #242529;
    padding: 10%;
}

.footer_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 0;
}

.footer_header {
    color: var(--light-blue);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1em;
}

.address_text {
    color: var(--white);
    font-size: .9em;
}

.phone_link {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.phone_link:hover {
    box-sizing: content-box;
    color: var(--light-blue);
}

.hours_text {
    margin-top: 20px;
    font-size: .85em;
}

.phone_info_tct {
    margin-top: 10px;
    font-size: .8em;
}

.quick_links_grid {
    width: 100%;
    padding: 0;
}

.quick_link {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: .75em;
    text-decoration: none;
}

.quick_link:hover {
    color: var(--light-blue);
}

.footer_wrapper {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5%;
    display: flex;
}

.footer_logo {
    width: 150px;
    margin-bottom: 40px;
}

.footer_text {
    font-size: .8em;
}

.disclaimer_text {
    margin-top: 20px;
    font-size: .7em;
}

.btt_link {
    color: var(--light-blue);
    margin-top: 20px;
    text-decoration: none;
}

.btt_link:hover {
    color: var(--white);
}

.top_phone_btn {
    color: #fff;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.4em;
    font-weight: 600;
    text-decoration: none;
    display: flex;
}

.top_phone_btn:hover {
    color: var(--light-blue);
}

.phone_icon, .side_btn_icon {
    width: 26px;
    margin-right: 5px;
}

.dropdown_navlink {
    color: var(--white);
    text-transform: uppercase;
    justify-content: flex-start;
    align-items: stretch;
    font-size: .9em;
    font-weight: 600;
    display: flex;
}

.dropdown_toggle {
    color: var(--white);
    justify-content: flex-start;
    align-items: center;
    padding-right: 20px;
    display: flex;
}

.dropdown_toggle.w--open {
    color: var(--light-blue);
}

.dropdown_icon {
    margin-right: 5px;
    font-size: .7em;
}

.dropdown_list.w--open {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    inset: 100px auto auto 0;
}

.dropdown_grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 80%;
    min-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.dropdown_cell {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    justify-content: flex-start;
    align-items: stretch;
}

.dropdown_cell.line {
    border-right: 1px solid #00000026;
}

.dropdown_cell.doc {
    text-align: center;
    border-right: 1px solid #00000026;
    justify-content: flex-start;
    align-items: center;
}

.dropdown_cell.doc.last {
    border-right-style: none;
}

.dropdown_link {
    margin-left: 0;
    margin-right: 0;
    font-size: .85em;
}

.dropdown_link:hover {
    color: #0047db;
}

.dropdown_link.sub {
    color: #505050;
    margin-left: 30px;
    font-size: .75em;
}

.dropdown_link.sub:hover {
    color: #3677ff;
}

.dropdown_link.center {
    text-align: center;
}

.nav-menu {
    display: flex;
}

.dropdown_headline {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    line-height: 1.1em;
}

.dropdown_text {
    text-transform: none;
    font-weight: 500;
}

.dropdown_text.small {
    margin-bottom: 0;
    font-size: .9em;
}

.dropdown_img {
    width: 150px;
    display: block;
    margin: 4px auto;
}

.ajax_text {
    color: var(--white);
    margin-bottom: 0;
}

.callout_text {
    color: var(--white);
}

.doc_bio_hero_section {
    justify-content: space-between;
    align-items: stretch;
    height: 80svh;
    display: flex;
    position: relative;
}

.bio_hero_img_div {
    width: 50%;
    height: 100%;
    margin-left: 0%;
    overflow: hidden;
}

.bio_img {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
    margin-top: 57px;
}

.bio_hero_text_wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    padding-bottom: 0%;
    padding-left: 10%;
    display: flex;
}

.hero_btns_grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
    padding: 0;
}

.button {
    background-color: var(--blue);
    text-transform: uppercase;
    padding: 15px 25px;
    font-size: .9em;
}

.button.bio {
    color: #000;
    font-weight: 600;
    text-align: left;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none;
    display: flex;
}

.button:hover, .button.bio:hover {
    background-color: var(--color);
    color: #fff;
}

.btn_cell {
    align-items: flex-start;
}

.bio_icon {
    width: 26px;
    margin-right: 5px;
}

.innerpage_section {
    padding: 10%;
}

.innerpage_section.overview {
    background-color: #5c637700;
    background-image: url('../images/decor-darkblue2.svg');
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 5%;
    padding-bottom: 10%;
}

.innerpage_section.top_margin {
    padding-top: 5%;
}

.bio_headline {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.1em;
}

.bio_headline.white {
    color: var(--white);
    font-weight: 600;
}

.bio_grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding: 0;
}

.bio_list {
    margin-bottom: 0;
}

.expertise_wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    display: flex;
}

.bio_link {
    color: var(--white);
    margin-right: 20px;
    text-decoration: none;
}

.bio_link:hover {
    color: var(--light-blue);
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.6em;
    }

    h2 {
        font-size: 2.2em;
    }

    .navbar {
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-right: auto;
    }

    .navlink {
        padding-left: 40px;
    }

    .decor_div.inner {
        height: 70px;
        top: -70px;
    }

    .main_tagline {
        font-size: 2.8em;
        font-weight: 600;
    }

    .static_btns_div {
        justify-content: space-around;
        width: 100%;
    }

    .welcome_wrapper {
        background-position: 0 -150px;
        background-size: 220%;
        padding-top: 10%;
    }

    .services_section {
        padding-top: 5%;
    }

    .services_wrapper {
        margin-top: 40px;
    }

    .services_img_div {
        height: 450px;
    }

    .services_description_text {
        height: auto;
    }

    .services_description_text.bottom {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        justify-content: flex-start;
        align-items: flex-start;
        height: auto;
    }

    .featured_services_wrapper {
        margin-bottom: 0;
        padding-left: 5%;
        padding-right: 5%;
    }

    .featured_services_wrapper._2, .featured_services_wrapper._3, .featured_services_wrapper._4 {
        margin-bottom: 0;
        top: 0;
    }

    .featured_services_wrapper._5 {
        top: 0;
    }

    .feature_text_cell {
        padding-right: 5%;
    }

    .feature_headline {
        margin-bottom: 20px;
        font-size: 2em;
    }

    .feature_img_div {
        height: 350px;
    }

    .section_number_div {
        height: 50px;
    }

    .section_number {
        font-size: 1em;
    }

    .doc_section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .doc_btn {
        font-size: .9em;
    }

    .appointment_section {
        background-size: 340%, 340%;
        padding-top: 0%;
    }

    .appointment_subheadline {
        margin-left: 10%;
        font-size: 1.2em;
    }

    .cataract_callout_img_div {
        height: 900px;
    }

    .img_overlay {
        background-image: linear-gradient(96deg, #000000e0 29%, #0000 77%, #00000005 78%);
    }

    .cataract_callout_text {
        width: 45%;
    }

    .appointment_img_div {
        border-bottom: 1px solid #fffefe;
        margin-top: 0;
    }

    .top_phone_btn {
        margin-right: 40px;
    }

    .dropdown_navlink {
        display: block;
    }

    .dropdown_toggle {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 40px;
        padding-right: 20px;
        display: block;
    }

    .dropdown_icon {
        margin-right: 20px;
    }

    .dropdown_list.w--open {
        width: auto;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }

    .dropdown_grid {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .dropdown_cell.line {
        border-right-style: none;
    }

    .dropdown_link.sub {
        margin-left: 20px;
    }

    .nav-menu {
        background-color: #242529;
    }

    .menu_btn {
        color: var(--white);
        justify-content: center;
        align-items: center;
        display: block;
    }

    .menu_btn:hover {
        color: var(--light-blue);
    }

    .menu_btn.w--open {
        color: var(--light-grey);
        background-color: #c8c8c800;
    }

    .doc_bio_hero_section {
        height: 60svh;
    }

    .bio_hero_img_div {
        width: 100%;
        margin-left: 0%;
        padding-left: 0;
    }

    .bio_img {
        margin-top: 36px;
        margin-left: 23%;
    }

    .bio_hero_text_wrapper {
        padding-bottom: 0%;
        position: absolute;
        inset: 0% auto 0% 0%;
    }

    .innerpage_section.overview {
        background-repeat: no-repeat;
        background-size: 200%;
        padding-top: 10%;
        padding-bottom: 16%;
    }
}

@media screen and (max-width: 767px) {
    .navbar {
        position: static;
    }

    .logo {
        padding-left: 0;
    }

    .hero_section {
        height: 400px;
        min-height: auto;
    }

    .decor_div {
        height: 80px;
        top: -80px;
    }

    .main_tagline_div {
        top: 369px;
        bottom: auto;
    }

    .main_tagline {
        font-size: 2em;
    }

    .hero_overlay {
        background-image: linear-gradient(#0000 41%, #000);
    }

    .static_btns_div {
        background-color: #191a1b;
        justify-content: space-between;
        padding-left: 0;
        position: static;
    }

    .static_btn {
        margin-left: 0;
        margin-right: 0;
        padding-left: 5px;
        padding-right: 5px;
        font-size: .8em;
    }

    .welcome_wrapper {
        background-size: 280%;
    }

    .welcome_headline {
        font-size: 2em;
    }

    .white_text.center {
        font-size: .9em;
    }

    .services_wrapper {
        margin-top: 0;
    }

    .services_img_div {
        height: 350px;
    }

    .featured_services_wrapper {
        margin-bottom: 0;
        padding-top: 0;
        padding-left: 10%;
        padding-right: 10%;
        position: static;
        top: 0;
    }

    .featured_services_wrapper._2 {
        margin-bottom: 0;
        padding-left: 10%;
        padding-right: 10%;
        top: 50px;
    }

    .featured_services_wrapper._3 {
        margin-bottom: 0;
        padding-left: 10%;
        padding-right: 10%;
        top: 100px;
    }

    .featured_services_wrapper._4 {
        margin-bottom: 0;
        padding-left: 10%;
        padding-right: 10%;
        top: 150px;
    }

    .featured_services_wrapper._5 {
        top: 200px;
    }

    .feature_img_div {
        height: 300px;
    }

    .feature_main_container {
        margin-top: 0;
    }

    .section_number_div {
        margin-bottom: 26px;
        margin-left: -10%;
        position: static;
    }

    .doc_section {
        padding-top: 10%;
    }

    .appointment_section {
        background-size: 450%, 450%;
        padding-top: 0%;
    }

    .cataract_callout_img_div {
        height: auto;
    }

    .img_overlay {
        display: none;
    }

    .cataract_callout_text {
        background-color: #000;
        width: 100%;
        padding: 10%;
        display: block;
        position: static;
    }

    .appointment_img_div {
        border-bottom: 1px solid #fff;
        height: 350px;
    }

    .side_btn_icon {
        width: 20px;
    }

    .doc_bio_hero_section {
        flex-flow: column;
        height: auto;
    }

    .bio_img {
        margin-top: 0;
        margin-left: 0%;
    }

    .bio_hero_text_wrapper {
        width: 100%;
        padding-top: 10%;
        padding-bottom: 10%;
        padding-right: 10%;
        position: static;
    }

    .btn_cell {
        align-items: center;
    }

    .innerpage_section.overview {
        background-size: 500%;
        padding-bottom: 200px;
    }

    .expertise_wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.3em;
    }

    .navbar {
        height: auto;
    }

    .logo {
        width: 150px;
    }

    .hero_section {
        height: 500px;
    }

    .decor_div {
        height: 50px;
        inset: auto 0% 0%;
    }

    .main_tagline_div {
        top: 407px;
    }

    .main_tagline {
        font-size: 1.8em;
        line-height: 1em;
    }

    .static_btns_div {
        flex-flow: column;
        height: auto;
    }

    .static_btn {
        height: 40px;
        padding-left: 22px;
    }

    .welcome_wrapper {
        background-position: 0 -250px;
        background-size: 800%;
    }

    .welcome_headline {
        font-size: 1.8em;
    }

    .services_section {
        padding: 15% 10%;
    }

    .services_headline {
        font-size: 1.8em;
        font-weight: 700;
    }

    .services_grid {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        margin-bottom: 0;
    }

    .services_img_div {
        height: 250px;
        margin-top: 39px;
        margin-bottom: 27px;
    }

    .services_description_text {
        padding: 0;
    }

    .services_description_text.bottom {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        padding: 0;
    }

    .services_btn_title {
        font-size: 1.3em;
    }

    .feature_img_div {
        height: 250px;
    }

    .section_number_div {
        margin-top: 17px;
    }

    .appointment_section {
        background-size: 800%, 800%;
    }

    .footer_section {
        padding-top: 15%;
        padding-bottom: 15%;
    }

    .quick_links_grid {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .footer_wrapper {
        text-align: left;
    }

    .top_phone_btn {
        display: none;
    }

    .bio_hero_img_div {
        height: 400px;
    }

    .bio_hero_text_wrapper {
        text-align: center;
    }

    .button.bio {
        padding-left: 10px;
        padding-right: 10px;
        font-size: .8em;
    }

    .bio_icon {
        width: 24px;
    }

    .innerpage_section.overview {
        background-color: #313a51;
        background-image: none;
        background-repeat: repeat;
        background-size: auto;
        padding-top: 15%;
        padding-bottom: 15%;
    }

    .expertise_wrapper {
        flex-flow: wrap;
    }

    .bio_link {
        margin-bottom: 10px;
    }
}

#w-node-_734007f7-ace1-9db8-7974-8d1787e4303f-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_640833b6-fed8-7311-beb1-2b84aaa235f1-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-d7c0a2a5-b8f3-3b1c-3982-73c00e517607-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_99ce5d66-84a5-d6ce-03e0-3549d60124d4-e045a014, #w-node-_4315974d-eecc-f04c-1d32-a7b5cdd932d9-e045a014, #w-node-b68089ac-44d7-b2be-63bd-abd62f7b2661-e045a014, #w-node-_1d4f1494-f367-cea5-5a7c-6b3d31a7af0c-e045a014, #w-node-a4774616-60c4-9d66-6b31-0fe7b3970bbf-e045a014, #w-node-_09affb26-bb59-009b-bc5b-67d5b2077df2-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

#w-node-_3ea71e63-b94a-27c0-5bc1-2888c045b9e0-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#w-node-a705846d-6c61-8e64-99db-84f59f490a19-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

#w-node-_1cdb9bbb-9200-1a2d-7cc9-00eb532d88c9-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr .5fr;
}

#w-node-_3ae6f645-766e-6de4-50bd-50e9ec43ddb8-e045a014 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

#w-node-_0f2aa010-6d5a-772e-d00d-063981129ca0-b63e1630 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_0f2aa010-6d5a-772e-d00d-063981129ccf-b63e1630 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_0f2aa010-6d5a-772e-d00d-063981129cea-b63e1630 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_8dea41a9-130e-1105-31ae-d26497a586a4-b63e1630 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
}

#w-node-a6f76759-1c1c-9b62-f29a-2e90cdfb2cec-b63e1630 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
}

#w-node-a475c5e2-98db-2a10-ebdf-9625f65da2fe-b63e1630 {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr .5fr;
}

#w-node-a475c5e2-98db-2a10-ebdf-9625f65da321-b63e1630 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
    #w-node-_734007f7-ace1-9db8-7974-8d1787e4303f-e045a014, #w-node-_640833b6-fed8-7311-beb1-2b84aaa235f1-e045a014, #w-node-d7c0a2a5-b8f3-3b1c-3982-73c00e517607-e045a014 {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }

    #w-node-_99ce5d66-84a5-d6ce-03e0-3549d60124d4-e045a014, #w-node-a705846d-6c61-8e64-99db-84f59f490a19-e045a014, #w-node-_1cdb9bbb-9200-1a2d-7cc9-00eb532d88c9-e045a014 {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    #w-node-_0f2aa010-6d5a-772e-d00d-063981129ca0-b63e1630, #w-node-_0f2aa010-6d5a-772e-d00d-063981129ccf-b63e1630, #w-node-_0f2aa010-6d5a-772e-d00d-063981129cea-b63e1630 {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }

    #w-node-a475c5e2-98db-2a10-ebdf-9625f65da2fe-b63e1630 {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    #w-node-_4315974d-eecc-f04c-1d32-a7b5cdd932d9-e045a014, #w-node-b68089ac-44d7-b2be-63bd-abd62f7b2661-e045a014, #w-node-_1d4f1494-f367-cea5-5a7c-6b3d31a7af0c-e045a014, #w-node-a4774616-60c4-9d66-6b31-0fe7b3970bbf-e045a014, #w-node-_09affb26-bb59-009b-bc5b-67d5b2077df2-e045a014 {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    #w-node-_3ea71e63-b94a-27c0-5bc1-2888c045b9e0-e045a014 {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }

    #w-node-a705846d-6c61-8e64-99db-84f59f490a19-e045a014 {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    #w-node-a6f76759-1c1c-9b62-f29a-2e90cdfb2cec-b63e1630 {
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 479px) {
    #w-node-_3ea71e63-b94a-27c0-5bc1-2888c045b9e0-e045a014, #w-node-_3ae6f645-766e-6de4-50bd-50e9ec43ddb8-e045a014, #w-node-a475c5e2-98db-2a10-ebdf-9625f65da321-b63e1630 {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }
}


