:root {
    --black: #000;
    --blue: #181a4b;
    --blue2: #5559c5;
    --white: white;
}

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

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

body {
    color: #333;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    line-height: 1.2rem;
}

h1 {
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 3.2rem;
    margin-bottom: 30px;
    margin-top: 0;
}

h2 {
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2.6rem;
    margin-bottom: 30px;
    margin-top: 0;
}

h3 {
    color: var(--blue2);
    font-family: Urbanist, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.8rem;
    margin-bottom: 30px;
    margin-top: 0;
}

h4 {
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2rem;
    margin-bottom: 15px;
    margin-top: 0;
}

h5 {
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2rem;
    margin-bottom: 15px;
    margin-top: 0;
}

p {
    font-weight: 300;
    line-height: 1.6rem;
    margin-bottom: 30px;
}

a {
    color: var(--blue2);
    text-decoration: none;
}

a:hover {
    color: #5f607a;
}

ul {
    line-height: 1.6rem;
    margin-bottom: 10px;
    margin-top: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.navbar {
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #ffffffb3;
    display: flex;
    inset: 0% 0% auto;
    justify-content: space-between;
    padding: 10px 2%;
    position: fixed;
    z-index: 1000;
}

.logo {
    margin-right: auto;
    width: 280px;
}

.navlink {
    border-radius: 5px;
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: .9rem;
    font-weight: 600;
    padding-left: 12px;
    padding-right: 12px;
    text-transform: uppercase;
}

.navlink:hover {
    background-color: #323aff00;
    color: var(--blue2);
}

.navlink.dropdown {
    padding-left: 12px;
    padding-right: 20px;
    text-transform: uppercase;
}

.navlink.dropdown.w--open {
    color: var(--blue2);
}

.hero_section {
    height: 100svh;
}

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

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

.main_tagline_wrapper {
    inset: auto 0% 45% auto;
    padding: 0 15% 0 0;
    position: absolute;
    width: 55%;
    z-index: 100;
}

.main_tagline {
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 4rem;
    margin-bottom: 0;
    margin-top: 0;
}

.callout_section {
    padding: 7% 5% 5%;
}

.phone_btn {
    align-items: center;
    color: var(--blue);
    display: flex;
    font-size: 1.3rem;
    font-weight: 700;
    justify-content: flex-start;
    margin-left: auto;
    text-decoration: none;
}

.phone_btn:hover {
    color: var(--blue2);
}

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

.callout_img_cell {
    align-items: stretch;
}

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

.hp_img_div.patient_callout {
    height: 600px;
    width: 85%;
}

.hp_img_div.testimonials {
    height: 600px;
}

.hp_img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
}

.patient_callout_cell {
    align-items: flex-start;
    justify-content: center;
}

.patient_callout_wrapper {
    background-color: var(--blue2);
    border-color: var(--blue2) #00000047 #00000047;
    border-radius: 10px;
    border-style: solid;
    border-width: 3px 1px 1px;
    box-shadow: 0 20px 20px #0003;
    color: var(--white);
    inset: 10% auto auto 0%;
    margin-left: 0;
    padding: 27px;
    position: absolute;
    width: 28%;
    z-index: 10;
}

.doc_patient_headline {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.doc_patient_link {
    align-items: center;
    color: var(--white);
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}

.doc_patient_link:hover {
    color: #fff;
}

.doc_patient_link._2 {
    margin-bottom: 0;
}

.dot_div {
    align-items: center;
    background-color: #fff0;
    border: 1px solid var(--white);
    border-radius: 60px;
    display: flex;
    height: 20px;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    width: 20px;
}

.callout_text {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.docs_callout_wrapper {
    background-color: var(--blue);
    border-color: #00000047 #00000047 var(--blue);
    border-radius: 10px;
    border-style: solid;
    border-width: 1px 1px 3px;
    box-shadow: 0 20px 20px #0003;
    color: var(--white);
    inset: 50% 0% auto auto;
    padding: 27px;
    position: absolute;
    width: 28%;
}

.doc_callout_cell {
    align-items: flex-start;
    justify-content: center;
}

.doc_patient_main_wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.center_wrapper {
    margin-bottom: 5%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 95%;
}

.hp_headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hp_headline.testimonials {
    margin-bottom: 30px;
}

.header_text {
    color: #4d4e6f;
    letter-spacing: 10px;
    margin-bottom: 5px;
    padding-left: 10px;
    text-transform: uppercase;
}

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

.mission_section {
    overflow: hidden;
    padding-bottom: 7%;
    padding-left: 10%;
    padding-right: 10%;
}

.mission_cell {
    align-items: stretch;
    background-color: #0000;
    border: 1px solid #0003;
    border-radius: 10px;
    flex-flow: column;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    padding: 20px 40px 30px 20px;
}

.mission_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 0;
    padding: 0;
}

.mision_icon {
    display: block;
    margin-right: 20px;
    width: 80px;
}

.mission_headline {
    margin-bottom: 0;
}

.mission_header_div {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.mission_text {
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 0;
    margin-left: 100px;
}

.mission_text.margin {
    margin-bottom: 20px;
}

.value_grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-left: 100px;
    padding: 0;
    width: auto;
}

.value_header {
    border-left: 2px none var(--blue2);
    color: #66689e;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 0;
}

.value_text {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 0;
    margin-left: 0;
}

.value_cell {
    background-color: #fff0;
    border: 1px #0000003d;
    border-radius: 5px;
    padding: 0;
}

.docs_section {
    padding: 7% 15%;
}

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

.docs_headline {
    align-items: center;
    display: block;
    flex-flow: row;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    justify-content: flex-start;
    letter-spacing: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    width: 100%;
}

.doc_btn {
    align-items: center;
    background-color: #0000000d;
    border-radius: 10px;
    color: var(--blue);
    display: flex;
    flex-flow: column;
    font-weight: 600;
    padding: 20px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.doc_btn:hover {
    background-color: #00000008;
    color: var(--blue2);
}

.doc_img_div {
    border-radius: 100%;
    height: 200px;
    margin-bottom: 10px;
    overflow: hidden;
    width: 200px;
}

.docs_wrapper {
    align-items: stretch;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.docs_header_div {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.docs_title_div {
    width: auto;
}

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

.feature_section {
    padding: 7% 5%;
}

.parallax_section {
    background-attachment: fixed;
    background-image: url('../images/location-parallax-img2.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
    height: 600px;
    margin-left: 0%;
    margin-right: 0%;
}

.parallax_section._2 {
    background-image: url('../images/clinic-entrance.jpeg');
    background-position: 50%;
}

.parallax_section._3 {
    background-image: url('../images/clinic-lobby.jpeg');
    background-size: cover;
}

.feature_services_ajax {
    display: flex;
}

.tabs_menu {
    align-items: stretch;
    display: flex;
    flex-flow: column;
    inset: 0% auto 0% 0%;
    justify-content: center;
    position: absolute;
    width: 23%;
    z-index: 20;
}

.tabs_content {
    height: 750px;
    left: 20%;
    right: 0;
    width: 80%;
}

.tab_pane {
    height: 100%;
}

.feature_service_wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    position: relative;
}

.tablink {
    background-color: #fff0;
    border-radius: 5px;
    color: #181a4ba8;
    font-family: Urbanist, sans-serif;
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 25px 35% 25px 10%;
}

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

.tablink.w--current {
    background-color: var(--blue2);
    box-shadow: 0 0 20px 3px #0000001f;
    color: var(--white);
}

.tablink._2 {
    padding-right: 21%;
}

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

.feature_content_wrapper {
    align-items: center;
    display: flex;
    inset: 0% 0% 0% auto;
    justify-content: flex-start;
    position: absolute;
    width: 55%;
    z-index: 10;
}

.feature_text_wrapper {
    align-items: flex-start;
    background-color: var(--blue);
    border-radius: 10px;
    color: var(--white);
    display: flex;
    flex-flow: column;
    padding: 40px 10% 40px 40px;
    width: 100%;
}

.feature_headline {
    color: var(--white);
    font-size: 2rem;
}

.key_text {
    font-weight: 500;
    margin-bottom: 5px;
}

.feature_list {
    font-weight: 300;
    line-height: 1.4rem;
    margin-bottom: 30px;
}

.feature_list_item {
    margin-bottom: 5px;
}

.feature_btn {
    background-color: #3898ec00;
    border: 1px solid #ffffff80;
    border-radius: 5px;
    color: var(--white);
    display: block;
    font-size: .9rem;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 12px 25px;
    text-transform: uppercase;
}

.feature_btn:hover {
    background-color: var(--blue2);
    border-color: var(--blue2);
    color: var(--white);
}

.feature_img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
}

.feature_img._1 {
    border-radius: 10px;
    object-position: 85% 50%;
}

.feature_img._3 {
    object-position: 0% 50%;
}

.feature_img_div2 {
    height: 100%;
    overflow: hidden;
    width: 55%;
}

.feature_text_wrapper3 {
    align-items: flex-start;
    background-color: var(--blue);
    border-radius: 10px;
    color: var(--white);
    display: flex;
    flex-flow: column;
    padding: 47px;
    width: 100%;
}

.feature_img_div3 {
    height: 100%;
    overflow: hidden;
    width: 55%;
}

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

.feature_text_wrapper2 {
    align-items: flex-start;
    background-color: var(--blue);
    border-radius: 10px;
    color: var(--white);
    display: flex;
    flex-flow: column;
    padding: 47px;
    width: 100%;
}

.testimonials_section {
    padding: 7% 10%;
}

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

.testimonials_content_cell {
    align-items: flex-start;
    justify-content: center;
}

.testimonials_slider {
    background-color: #ddd0;
    height: auto;
    margin-bottom: 10%;
    margin-top: 0;
    width: 100%;
}

.slidenav {
    font-size: .8rem;
    height: 30px;
    inset: auto 0% -30px auto;
    padding-bottom: 8px;
    padding-top: 8px;
}

.arrow {
    background-color: var(--blue);
    border-radius: 5px;
    font-size: .8rem;
    height: 30px;
    inset: auto auto -30px 0%;
    width: 30px;
}

.arrow:hover {
    background-color: var(--blue2);
}

.arrow.right {
    left: 35px;
}

.testimonials_wrapper {
    height: 100%;
    padding-bottom: 5%;
    padding-right: 5%;
}

.button {
    background-color: var(--blue);
    border-radius: 5px;
    color: var(--white);
    padding: 12px 30px;
}

.button:hover {
    background-color: var(--blue2);
    color: var(--white);
}

.testimonials_source_wrapper {
    align-items: center;
    display: flex;
    justify-content: flex-start;
}

.testimonials_logo {
    margin-right: 10px;
    width: 30px;
}

.testimonials_name {
    font-weight: 600;
}

.powered_wrapper {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 5%;
    width: 100%;
}

.stat_number_div {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-right: 10px;
    width: auto;
}

.stat_number {
    color: var(--blue2);
    font-size: 3rem;
    line-height: 3rem;
    margin-right: 10px;
}

.ratings_text {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer_section {
    background-color: var(--blue);
    color: var(--white);
    padding: 5% 10% 7%;
}

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

.contact_form_wrapper {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border: 1px solid var(--blue2);
    border-radius: 10px;
    box-shadow: 0 0 40px 9px #00000057;
    margin: 0;
    padding: 5%;
    width: 100%;
}

.label_name {
    color: var(--white);
    font-weight: 300;
}

.text_field {
    background-color: var(--white);
    border: 1px solid var(--blue2);
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 15px;
}

.text_area {
    background-color: var(--white);
    border: 1px solid var(--blue2);
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 15px;
    min-height: 120px;
}

.submit_brn {
    background-color: var(--blue2);
    border-radius: 5px;
    padding: 13px 32px;
}

.submit_brn:hover {
    background-color: var(--black);
}

.form_columns {
    padding: 0;
}

.contact_headline {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 10%;
}

.location_grid {
    grid-column-gap: 20px;
    margin-top: 5%;
    padding: 0;
    width: 100%;
}

.location_name {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    height: auto;
    margin-bottom: 15px;
}

.address_text {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.line_div {
    background-color: var(--blue2);
    height: 1px;
    margin-bottom: 25px;
    margin-left: -16px;
    margin-top: 0;
    width: 35%;
}

.footer_grid {
    border-top: 1px #ffffff12;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 0%;
    padding: 5% 0 0;
}

.footer_cell {
    padding-left: 10%;
}

.quick_links_cell {
    padding-left: 5%;
}

.footer_logo {
    margin-bottom: 15px;
    width: 250px;
}

.footer_text {
    font-size: .9rem;
    font-weight: 300;
    margin-left: 0;
}

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

.quick_links_grid.docs_title_div {
    flex: 0 auto;
}

.quick_links_header {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.quick_link {
    color: var(--white);
    font-weight: 300;
    margin-bottom: 0;
}

.quick_link:hover {
    color: #abaeff;
}

.s_wrapper {
    margin-top: 3%;
    width: 20%;
}

.utility-page-wrap {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    width: 100vw;
}

.utility-page-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 260px;
}

.utility-page-form {
    align-items: stretch;
    display: flex;
    flex-direction: column;
}

.s_btn {
    display: none;
}

.s-input {
    background-color: #0003;
    border: 1px solid var(--blue2);
    border-radius: 5px;
    color: var(--white);
    font-weight: 300;
}

.s-input::placeholder {
    color: var(--white);
}

.dropdown_icon {
    font-size: .8rem;
    margin-right: 5px;
}

.dropdown_list {
    z-index: 10;
}

.dropdown_list.w--open {
    background-color: var(--blue2);
    border-radius: 5px;
}

.dropdown_link {
    color: var(--white);
    text-transform: uppercase;
}

.dropdown_link:hover {
    background-color: var(--blue);
    color: var(--white);
}

.dropdown_link.first {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.dropdown_link.last {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.dot_overlay_div {
    background-color: var(--white);
    border-radius: 25px;
    height: 15px;
    width: 15px;
}

.dropdown_navlink {
    font-size: .9rem;
}

.phone_icon {
    margin-right: 5px;
    width: 24px;
}

.static_btns_wrapper {
    align-items: stretch;
    background-color: #06073000;
    display: flex;
    flex-flow: row;
    height: auto;
    inset: auto 0% 0%;
    justify-content: space-around;
    position: fixed;
    width: auto;
    z-index: 500;
}

.static_btn {
    align-items: center;
    background-color: #060730;
    border-bottom: 1px solid #ffffff63;
    color: var(--white);
    display: flex;
    flex: 1;
    font-size: .95rem;
    font-weight: 300;
    justify-content: center;
    padding: 10px;
    text-transform: uppercase;
    width: auto;
}

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

.static_btn_icon {
    height: 26px;
    margin-right: 10px;
    width: 26px;
}

.quick_links_wrapper {
    align-items: center;
    background-color: var(--blue);
    background-image: linear-gradient(#00000030, #00000030);
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    margin-top: 0%;
    padding: 32px 15%;
}

.footer_wrapper {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin-top: 0%;
}

.footer_div {
    text-align: center;
    width: 60%;
}

.contact_btn {
    align-items: center;
    color: var(--white);
    display: flex;
    font-size: 1.3rem;
    justify-content: flex-start;
    line-height: 1.4rem;
    margin-bottom: 15px;
}

.contact_btn:hover {
    color: #8e92ff;
}

.fax_icon {
    margin-right: 5px;
    width: 24px;
}

.mail_icon {
    margin-right: 9px;
    width: 20px;
}

.fcb_btn {
    align-items: center;
    color: var(--white);
    display: flex;
    height: auto;
    justify-content: flex-start;
    margin-top: 2%;
    width: auto;
}

.fcb_btn:hover {
    color: #8e92ff;
}

.fb_icon {
    height: 30px;
    margin-right: 0;
    width: 30px;
}

.feature_img_div4 {
    height: 100%;
    overflow: hidden;
    width: 55%;
}

.feature_text_wrapper4 {
    align-items: flex-start;
    background-color: var(--blue);
    border-radius: 10px;
    color: var(--white);
    display: flex;
    flex-flow: column;
    padding: 40px 10% 40px 40px;
    width: 100%;
}

.contact_section {
    background-attachment: scroll, fixed;
    background-image: linear-gradient(#040418d9, #040418d9), url('../images/contact-bg-img.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    color: var(--white);
    padding: 7% 15%;
}

.contact_form_cell {
    align-items: flex-start;
    justify-content: flex-end;
}

.history_list {
    font-size: 1.1rem;
    font-weight: 400;
    margin-left: 100px;
}

@media screen and (max-width: 991px) {
    .navlink {
        padding-bottom: 16px;
        padding-left: 20px;
        padding-top: 16px;
    }

    .navlink.dropdown {
        display: block;
        padding-left: 20px;
    }

    .hero_section {
        overflow: hidden;
    }

    .hero_img {
        object-position: 40% 50%;
    }

    .main_tagline_wrapper {
        bottom: auto;
        padding-right: 5%;
        top: 35%;
        width: 60%;
    }

    .main_tagline {
        font-size: 3rem;
        line-height: 3rem;
    }

    .callout_section {
        padding-bottom: 20%;
    }

    .phone_btn {
        margin-left: 0;
        margin-right: 20px;
    }

    .hp_img_div.patient_callout {
        height: 450px;
        margin-top: 146px;
    }

    .hp_img_div.testimonials {
        height: 500px;
    }

    .hp_img {
        object-position: 50% 25%;
    }

    .patient_callout_wrapper {
        top: 0%;
        width: 45%;
    }

    .docs_callout_wrapper {
        top: 75%;
        width: 45%;
    }

    .doc_patient_main_wrapper {
        flex-flow: column;
    }

    .mission_section {
        padding-top: 5%;
    }

    .mission_grid {
        grid-column-gap: 30px;
        grid-row-gap: 30px;
    }

    .mision_icon {
        width: 50px;
    }

    .mission_text, .value_grid {
        margin-left: 70px;
    }

    .docs_grid {
        width: 100%;
    }

    .docs_wrapper {
        flex-flow: column;
    }

    .docs_header_div {
        flex-flow: column;
        margin-bottom: 42px;
        width: 100%;
    }

    .parallax_section {
        height: 500px;
    }

    .parallax_section._2 {
        height: 400px;
    }

    .tabs_menu {
        align-items: stretch;
        bottom: auto;
        flex-flow: row;
        height: 120px;
        justify-content: flex-start;
        left: auto;
        position: absolute;
        width: 100%;
    }

    .tabs_content {
        height: auto;
        left: 0%;
        width: 100%;
    }

    .tab_pane {
        padding-top: 120px;
    }

    .feature_service_wrapper {
        flex-flow: column;
    }

    .tablink {
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 14px 5%;
        text-align: center;
        width: 33.33%;
    }

    .feature_img_div {
        height: 400px;
        width: 100%;
    }

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

    .feature_img._1 {
        object-position: 85% 25%;
    }

    .feature_img._4 {
        object-position: 50% 0%;
    }

    .feature_img_div2, .feature_img_div3 {
        height: 400px;
        width: 100%;
    }

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

    .footer_cell {
        padding-left: 0%;
        padding-top: 40px;
    }

    .quick_links_cell {
        padding-left: 0%;
    }

    .quick_link {
        margin-bottom: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .s_wrapper {
        margin-left: 0;
        margin-top: 40px;
        width: 50%;
    }

    .dropdown_icon {
        margin-right: 20px;
    }

    .dropdown_list.w--open {
        border-radius: 0;
        position: relative;
    }

    .menu_btn {
        border: 1px solid var(--blue);
        border-radius: 5px;
        color: var(--blue);
    }

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

    .menu_btn.w--open {
        background-color: var(--blue2);
        border-color: var(--blue2);
    }

    .navmenu {
        background-color: var(--white);
    }

    .dropdown_navlink {
        display: block;
    }

    .static_btn {
        font-size: .85rem;
        line-height: 1rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    .static_btn_icon {
        height: 22px;
        width: 22px;
    }

    .quick_links_wrapper {
        flex-flow: wrap;
        justify-content: space-between;
    }

    .footer_wrapper {
        flex-flow: column;
        margin-top: 0%;
    }

    .footer_div {
        width: 100%;
    }

    .feature_img_div4 {
        height: 400px;
        width: 100%;
    }

    .contact_section {
        padding-bottom: 10%;
        padding-top: 10%;
    }
}

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

    .hero_section {
        height: 250px;
    }

    .main_tagline_wrapper {
        padding-left: 37px;
        top: 220px;
    }

    .main_tagline {
        font-size: 2rem;
        line-height: 2rem;
    }

    .callout_section {
        padding-bottom: 180px;
    }

    .phone_btn {
        margin-right: 15px;
    }

    .patient_callout_wrapper, .docs_callout_wrapper {
        width: 70%;
    }

    .mission_grid {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .doc_img_div {
        height: 150px;
        width: 150px;
    }

    .parallax_section {
        height: 350px;
    }

    .parallax_section._2 {
        height: 450px;
    }

    .tablink {
        font-size: 1.2rem;
    }

    .feature_img_div, .feature_img_div2, .feature_img_div3 {
        height: 300px;
    }

    .footer_section {
        padding: 5% 10%;
    }

    .s_wrapper {
        width: 70%;
    }

    .s-input {
        margin-bottom: 0;
    }

    .static_btns_wrapper {
        flex-flow: wrap;
        height: auto;
        position: static;
    }

    .static_btn {
        flex: 0 auto;
        padding-bottom: 8px;
        padding-top: 8px;
        width: 50%;
    }

    .quick_links_wrapper {
        margin-top: 0%;
        padding: 24px 21px;
    }

    .feature_img_div4 {
        height: 300px;
    }

    .search {
        margin-bottom: 0;
    }

    .history_list {
        margin-left: 70px;
    }
}

@media screen and (max-width: 479px) {
    .logo {
        margin-right: 0;
    }

    .main_tagline_wrapper {
        padding-left: 3px;
        top: 306px;
    }

    .main_tagline {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .callout_section {
        padding-bottom: 60px;
        padding-top: 15%;
    }

    .phone_btn {
        margin-right: 10px;
    }

    .phone_btn:hover {
        opacity: .79;
    }

    .hp_img_div.patient_callout {
        height: 300px;
        margin-top: 20px;
        width: 100%;
    }

    .hp_img_div.testimonials {
        height: 300px;
    }

    .patient_callout_wrapper {
        position: static;
        width: 100%;
    }

    .doc_patient_headline {
        margin-top: 0;
    }

    .callout_text {
        font-size: 1rem;
    }

    .docs_callout_wrapper {
        margin-top: 20px;
        position: static;
        width: 100%;
    }

    .hp_headline {
        font-size: 2.4rem;
        line-height: 2.4rem;
    }

    .heading {
        font-size: 1.3rem;
        line-height: 1.3rem;
    }

    .mission_section {
        padding-bottom: 15%;
    }

    .mission_header_div {
        align-items: flex-start;
        flex-flow: column;
        justify-content: flex-start;
    }

    .mission_text {
        margin-left: 0;
    }

    .value_grid {
        margin-left: 0;
        margin-top: 20px;
    }

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

    .docs_header_div {
        flex-flow: column;
    }

    .feature_section {
        padding-bottom: 10%;
        padding-top: 10%;
    }

    .parallax_section, .parallax_section._2 {
        background-attachment: scroll;
        height: 150px;
    }

    .parallax_section._3 {
        background-attachment: scroll;
        background-position: 50%;
        background-size: 100%;
    }

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

    .tab_pane {
        padding-top: 208px;
    }

    .tablink {
        width: auto;
    }

    .feature_img_div {
        height: 250px;
    }

    .feature_text_wrapper {
        padding: 26px;
    }

    .feature_headline {
        font-size: 2rem;
        line-height: 2rem;
    }

    .feature_img_div2 {
        height: 250px;
    }

    .feature_text_wrapper3 {
        padding: 25px;
    }

    .feature_img_div3 {
        height: 250px;
    }

    .feature_text_wrapper2 {
        padding: 25px;
    }

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

    .testimonials_slider {
        height: auto;
        margin-bottom: 19%;
        width: 280px;
    }

    .powered_wrapper {
        align-items: flex-start;
        flex-flow: column;
        justify-content: flex-start;
        margin-bottom: 14%;
    }

    .ratings_text {
        font-size: 1rem;
    }

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

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

    .contact_headline {
        font-size: 2.4rem;
    }

    .location_name {
        font-size: 1.2rem;
        height: auto;
    }

    .line_div {
        margin-bottom: 15px;
    }

    .footer_text {
        margin-left: 0;
    }

    .quick_link {
        margin-bottom: 10px;
        margin-left: 0;
        margin-right: 0;
    }

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

    .top_phone_btn_txt {
        display: none;
    }

    .phone_icon {
        margin-left: 10px;
        margin-right: 0;
        width: 40px;
    }

    .phone_icon.footer {
        margin-left: 0;
        margin-right: 5px;
        width: 24px;
    }

    .static_btn {
        align-items: center;
        justify-content: flex-start;
        padding-left: 20px;
        width: 100%;
    }

    .quick_links_wrapper, .footer_wrapper {
        flex-flow: column;
        margin-top: 0%;
    }

    .footer_div {
        width: 100%;
    }

    .fcb_btn {
        margin-top: 12%;
    }

    .feature_img_div4 {
        height: 250px;
    }

    .feature_text_wrapper4 {
        padding: 26px;
    }

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

    .history_list {
        margin-left: 0;
    }
}

#w-node-_6d60ecbf-f540-5b99-9725-f84ebc9f7f54-c584e5f9 {
    display: none;
    grid-template-columns: 1fr 1.75fr 1fr;
    grid-template-rows: auto;
}

#w-node-_8a11b7f9-27b9-ea32-5f13-1fc1345f1fd1-c584e5f9 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
}

#w-node-_8a11b7f9-27b9-ea32-5f13-1fc1345f1fd2-c584e5f9, #w-node-_138257ff-ae2c-a273-ec0c-c1113c606c14-c584e5f9 {
    grid-column: span 2 / span 2;
}

#w-node-d6b333d5-1f71-efdb-70ab-2dbeae567942-c584e5f9 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}

#w-node-a29fd344-c71e-3ea5-e80c-52b1cb312faf-c584e5f9 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
}

#w-node-_44de044c-923f-17cc-7a8c-e688a39d51c5-c584e5f9 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

#w-node-_01db2379-452e-da83-da20-3f1d4dd9d4b3-c584e5f9 {
    grid-template-columns: .75fr 1fr;
    grid-template-rows: auto;
}

#w-node-f6250a34-c7f0-57b9-5bf8-2a6e7e50efca-c584e5f9 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

#w-node-_7a5dc400-49e4-8ac4-966a-910e659615a2-c584e5f9, #w-node-_7a5dc400-49e4-8ac4-966a-910e659615ab-c584e5f9 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

#w-node-cf393163-98fe-4253-e974-c1ee0bec297a-c584e5f9 {
    display: none;
    grid-template-columns: .5fr 1fr;
    grid-template-rows: auto;
}

#w-node-_08fcba43-0dd8-a0c0-fc48-20611fdbb999-c584e5f9 {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
}

@media screen and (max-width: 991px) {
    #w-node-_8a11b7f9-27b9-ea32-5f13-1fc1345f1fd1-c584e5f9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    #w-node-_27574b58-0529-bc07-822b-40c4c8455e00-c584e5f9 {
        grid-column: span 1 / span 1;
    }

    #w-node-d6b333d5-1f71-efdb-70ab-2dbeae567942-c584e5f9 {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }

    #w-node-a29fd344-c71e-3ea5-e80c-52b1cb312faf-c584e5f9 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    #w-node-_44de044c-923f-17cc-7a8c-e688a39d51c5-c584e5f9, #w-node-_01db2379-452e-da83-da20-3f1d4dd9d4b3-c584e5f9, #w-node-f6250a34-c7f0-57b9-5bf8-2a6e7e50efca-c584e5f9, #w-node-cf393163-98fe-4253-e974-c1ee0bec297a-c584e5f9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

@media screen and (max-width: 767px) {
    #w-node-_8a11b7f9-27b9-ea32-5f13-1fc1345f1fd1-c584e5f9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    #w-node-_8a11b7f9-27b9-ea32-5f13-1fc1345f1fd2-c584e5f9, #w-node-_138257ff-ae2c-a273-ec0c-c1113c606c14-c584e5f9 {
        grid-column: span 1 / span 1;
    }

    #w-node-d6b333d5-1f71-efdb-70ab-2dbeae567942-c584e5f9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    #w-node-_08fcba43-0dd8-a0c0-fc48-20611fdbb999-c584e5f9 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

@media screen and (max-width: 479px) {
    #w-node-a29fd344-c71e-3ea5-e80c-52b1cb312faf-c584e5f9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    #w-node-_7a5dc400-49e4-8ac4-966a-910e659615a2-c584e5f9, #w-node-_7a5dc400-49e4-8ac4-966a-910e659615ab-c584e5f9, #w-node-_08fcba43-0dd8-a0c0-fc48-20611fdbb999-c584e5f9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}


