footer:not(article footer) {
    background: var(--c-5b85db);
    padding: 40px 0;
}

.footer_links_wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    padding-bottom: 40px;
    align-items: center;
}

.footer_link_list ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 20px;
}

.footer_link_list ul li a {
    color: var(--c-ffffff);
    font-size: var(--fs-14);
    line-height: var(--lh-25);
    text-transform: uppercase;
}

.footer_icons ul {
    display: flex;
    justify-content: end;
    column-gap: 15px;
    align-items: center;
}

.hospitals_place {
    padding: 40px 0;
    border-bottom: 1px solid #a4adc0;
    border-top: 1px solid #a4adc0;
}

.hospitals_place ul {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5%; */
    color: var(--c-ffffff);
}

.hospitals_place ul li p {
    line-height: var(--lh-24);
    font-size: var(--fs-14);
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 0;
}

.hospitals_place ul li h2,
.hospitals_place ul li:first-child p:first-of-type {
  font-size: var(--fs-16);
  line-height: var(--lh-24);
  /* text-transform: uppercase; */
  font-weight: 900;
  /* margin-bottom: 20px; */
}


.hospitals_place .read_more_btn {
    display: none;
}

/* doctors section css end */

.popular_searches_sec {
    background: var(--c-5b85db);
    padding-top: 40px;
}

.popular_searches_sec .section_heading {
    margin-bottom: 20px;
}

.popular_searches_sec .section_heading h2, .popular_searches_sec .section_heading p {
    color: var(--c-ffffff) !important;
    font-size: var(--fs-30);
    /* line-height: var(--lh-25); */
    text-transform: uppercase;
    font-weight: 900;
}

.popular_searches_sec ul li {
    display: inline-block;
    color: var(--c-ffffff);
}
.popular_searches_sec ul li p{
    display: inline-block;
}

.popular_searches_sec ul li a {
    color: var(--c-ffffff);
    font-size: var(--fs-15);
    line-height: var(--lh-24);
}

/* popular searches section css  */

@media screen and (max-width: 768px) {
    .footer_links_wrap {
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 30px;
        gap: 20px;
    }

    .footer_links_wrap .footer_link_list ul {
        row-gap: 10px;
    }

    .footer_link_list li {
        width: 100%;
        display: block;
    }

    .footer_icons ul {
        justify-content: flex-start;
        column-gap: 10px;
    }
    
    .footer_icons ul li img {
        max-width: 40px;
    }

    .hospitals_place {
        padding: 30px 0;
    }

    .hospitals_place ul {
        display: block;
    }

    .hospitals_place ul li:not(:first-child) {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: 0.5s;
    }

    .footer_link_list ul li a {
        font-size: var(--fs-18);
    }
    
    .hospitals_place ul li h2 {
        font-size: var(--fs-25);
    }

    .hospitals_place ul li p {
        font-size: var(--fs-15);
        margin-top: 10px;
    }

    .hospitals_place.show_con li:not(:first-child) {
        max-height: 2000px;
        opacity: 1;
        margin-top: 20px;
    }

    .hospitals_place .read_more_btn {
        display: block;
        margin-top: 20px;
    }

    .hospitals_place .read_more_btn button {
        color: var(--c-ffffff);
        text-decoration: none;
    }

    .popular_searches_sec {
        padding-top: 30px;
    }

    body:has(.sticky_footer) .footerdesclaimer {
        padding-bottom: 90px;
    }

    section.sticky_footer {
        background: var(--c-333333);
        display: block;
        padding: 0;
        position: fixed;
        width: 100%;
        bottom: 0;
        /* border-top: 2px solid var(--c-ffffff); */
        z-index: 99;
    }

    section.sticky_footer .sticky_grid ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* align-items: center; */
    }
    
    section.sticky_footer .sticky_grid ul li {
        display: inline-block;
        padding: 10px;
        text-align: center;
        height: 100%;
    }

    section.sticky_footer .sticky_grid ul li a {
        display: inline-block;
    }

    section.sticky_footer .sticky_grid ul li a img {
        max-width: 25px;
        min-height: 25px;
        margin: auto;
        aspect-ratio: 3 / 2;
        object-fit: contain;
    }

    section.sticky_footer .sticky_grid ul li a span {
        font-size: var(--fs-12);
        line-height: var(--lh-24);
        color: var(--c-ffffff);
        opacity: 0.5;
        display: block;
        margin-top: 5px;
        text-align: center;
    }

    section.sticky_footer .sticky_grid ul li:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .footerdesclaimer {
        padding: 10px 0 85px 0;
    }
    
    .call_us ul li a {
        display: flex;
        align-items: center;
    }

    .footerdesclaimer p {
        font-size: 15px !important;
        padding: 0 10px;
        line-height: 28px;
    }

    /* .footerdesclaimer h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    } */
}

@media only screen and (max-device-width: 375px) {
    section.sticky_footer .sticky_grid ul li a img {
        max-width: 23px;
        min-height: 23px;
    }
    
    section.sticky_footer .sticky_grid ul li a span {
        font-size: var(--fs-10);
        line-height: normal;
    }
}

.footerdesclaimer h3 {
    text-align: center;
    font-size: 18px;
    line-height: initial;
    margin-bottom: 5px;
}

.footerdesclaimer p {
    font-size: 15px !important;
    text-align: center;
    color: #666;
    line-height: 21px;
}

.footerdesclaimer p:last-child {
    margin-bottom: 0;
}

div#bookAppointmentForm form#PopForm ul li {
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
    list-style: none;
}

html div#bookAppointmentForm form#PopForm ul li label {
    display: block;
}

div#bookAppointmentForm {
    width: 100%;
    max-width: 430px;
    height: 100%;
    background-color: #5c85dc;
    color: #fff;
    padding: 15px;
}

div#bookAppointmentForm {
    /* width: 330px;
    max-width: 100%; */
    overflow-x: hidden;
}

#bookAppointmentForm .logo_white {
    width: 100%;
    text-align: center;
}

.call-backForm {
    width: 100%;
    font-family: 'Gotham Book';
}

div#bookAppointmentForm form {
    align-self: center;
}

div#bookAppointmentForm form#PopForm ul {
    padding: 0;
}

div#bookAppointmentForm input, div#bookAppointmentForm select, div#bookAppointmentForm textarea {
    margin-bottom: 10px;
    color: #000;
    border: 0;
}

div#bookAppointmentForm #PopFormBtn {
    background: #3b5d9a;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

div#bookAppointmentForm input, div#bookAppointmentForm select, div#bookAppointmentForm textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    padding: 7px 10px;
    color: #000;
    font-size: 14px;
    height: 30px;
    outline: 0;
}

p#termsConditions {
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
}

div#bookAppointmentForm h2 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 0px;
}

div.modalContent-shroff p, .modalContent-shroff .fields ul li input[type="button"], a.moreless-button {
    font-family: inherit !important;
}

