@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    /*color*/
    --accent-color: #142e84;
    --nav-hover-color: #142e84;
    --nav-dropdown-hover-color: #142e84;
    --nav-dropdown-hover-color: #142e84;
    --background-color: #142e84;
    --color: #142e84;
    --border-color: #142e84;
    --pure-white: #ffffff;
    /*Typography*/
    --font-poppins: Poppins, sans-serif;
}

*,
*::after,
*::before{
    margin: 0;
    padding: 0;
}

button:focus {
    outline: none;
}

html {
    overflow-x: hidden;
    font-family: Poppins, sans-serif !important;
}

body {
    line-height: 1.6;
    font-family: Poppins, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    color: #6f8ba4;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
    color: #222;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 44px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
    line-height: 30px;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 16px;
    margin: 0px;
}

p {
    line-height: 30px;
}

.navbar-toggle .icon-bar {
    background: var(--background-color);
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
    box-shadow: none;
    height: 45px;
    outline: none;
    font-size: 14px;
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus {
    box-shadow: none;
    border: 1px solid var(--border-color);
}

.form-control {
    box-shadow: none;
    border-radius: 0;
}
.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--border-color);
}

.py-7 {
    padding: 7rem 0px;
}

.btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    font-family: var(--font-poppins);
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: all 0.35s ease;
}
.btn.btn-icon i {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    padding-left: 15px;
}
.btn:focus {
    outline: 0px;
    box-shadow: none;
}

.btn-main,
.btn-main:hover,
.btn-main-2,
.btn-main-2:hover {
    background: var(--pure-white);
    color: var(--color);
    border-color: var(--border-color);
}

.btn-solid-border {
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--color);
}
.btn-solid-border:hover {
    border: 2px solid var(--border-color);
    color: var(--pure-white);
    background: var(--background-color);
}
.btn-solid-border:hover.btn-icon i {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.btn-solid-border.btn-icon i {
    border-left: 1px solid rgba(0, 0, 0, 0.09);
}

.btn-transparent {
    background: transparent;
    color: #222;
    border-color: #6f8ba4;
}
.btn-transparent:hover {
    background: #6f8ba4;
    color: #fff;
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: #222;
}
.btn-white:hover {
    background: #de0808;
    color: #fff;
    border-color: #de0808;
}

.btn-solid-white {
    border-color: #fff;
    color: #fff;
}
.btn-solid-white:hover {
    background: #fff;
    color: #222;
}

.btn-round {
    border-radius: 4px;
}

.btn-round-full {
    border-radius: 0.5rem;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
    outline: 0;
}

.bg-gray {
    background: #eff0f3;
}

.bg-primary {
    background: #de0808;
}

.bg-primary-dark {
    background: #152440;
}

.bg-primary-darker {
    background: #090f1a;
}

.bg-dark {
    background: #222;
}

.bg-gradient {
    background-image: linear-gradient(
        145deg,
        rgba(19, 177, 205, 0.95) 0%,
        rgba(152, 119, 234, 0.95) 100%
    );
    background-repeat: repeat-x;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-bottom {
    padding-bottom: 100px;
}

.subtitle {
    color: #de0808;
    font-size: 14px;
    letter-spacing: 1px;
}

.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    /* background: #6f8ed2; */
    background-color: var(--background-color);
}

.overly-2 {
    position: relative;
}
.overly-2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.text-sm {
    font-size: 14px;
}

.text-md {
    font-size: 2.25rem;
}

.text-lg {
    font-size: 3.75rem;
}

.no-spacing {
    letter-spacing: 0px;
}

/* Links */
a {
    color: #222;
    text-decoration: none;
    transition: all 0.35s ease;
}

a:focus,
a:hover {
    color: var(--color);
    text-decoration: none;
}

a:focus {
    outline: none;
}

.content-title {
    font-size: 40px;
    line-height: 50px;
}

.page-title {
    padding: 50px 0px 50px 0px;
    position: relative;
}
.page-title .block h1 {
    color: #fff;
}
.page-title .block p {
    color: #fff;
}
.page-title .breadcumb-nav {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.slick-slide:focus,
.slick-slide a {
    outline: none;
}

@media (max-width: 480px) {
    h2,
    .h2 {
        font-size: 1.3rem;
        line-height: 36px;
    }
}
.title-color {
    color: var(--color);
}

.appointment-wrap .title-color {
    color: var(--pure-white);
}

.secondary-bg {
    background: #de0808;
}

.section-title {
    margin-bottom: 70px;
}
.section-title h2 {
    color: var(--pure-white);
    text-transform: uppercase;
}

.text-lg {
    font-size: 50px;
}

.gray-bg {
    background: #f4f9fc;
}

@media (max-width: 480px) {
    .text-lg {
        font-size: 28px;
    }
}
@media (max-width: 400px) {
    .text-lg {
        font-size: 28px;
    }
}

/* ========================  Navabar Main Section ======================= */

.navbar {
    margin: 0;
    padding: 10px;
    background-color: var(--background-color);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbarmain {
    width: 100%;
}

#navbarmain .nav-link {
    padding: 15px 15px;
    color: var(--pure-white);
    font-family: var(--font-poppins);
    text-transform: capitalize;
    font-size: 16px;
    transition: all 0.25s ease;
}
#navbarmain .nav-link:hover,
#navbarmain .active .nav-link {
    color: var(--pure-white);
}

.dropdown-toggle::after {
    display: none;
}

.navbar-brand {
    margin-top: 0px;
}

.header-top-bar {
    background: var(--pure-white);
    font-family: var(--font-poppins);
    font-size: 18px;
    padding: 10px 0px;
    color: var(--color);
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.header-top-bar ul.right {
    float: right;
    font-size: 18px;
}

.top-bar-info li a {
    color: #fff;
    margin-right: 20px;
}

.top-right-bar a span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    vertical-align: middle;
}
.top-right-bar a i {
    color: #fff;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .navigation {
        text-align: center;
    }
}
.navigation .dropdown-menu {
    padding: 0px;
    border: 0px;
    border-top: 5px solid var(--border-color);
    background: #fff;
    border-radius: 0px;
}
@media (max-width: 992px) {
    .navigation .dropdown-menu {
        text-align: center;
        float: left !important;
        width: 100%;
        margin: 0;
    }
}

.navigation .dropdown-toggle::after {
    display: none;
}
.navigation .dropleft .dropdown-menu,
.navigation .dropright .dropdown-menu {
    margin: 0;
}
.navigation .dropleft .dropdown-toggle::before,
.navigation .dropright .dropdown-toggle::after {
    font-weight: bold;
    font-size: 14px;
    border: 0;
    display: inline-block;
    font-family: IcoFont !important;
    vertical-align: 1px;
}
.navigation .dropleft .dropdown-toggle::before {
    content: "\eac9";
    margin-right: 5px;
}
.navigation .dropright .dropdown-toggle::after {
    content: "\eaca";
    margin-left: 5px;
}
.navigation .dropdown-item {
    padding: 13px 20px;
    font-weight: 400;
    color: #555;
    border-bottom: 1px solid #eee;
    background: var(--background-color);
    outline: none !important;
}
.navigation li:last-child .dropdown-item {
    border-bottom: 0;
}
.navigation .dropdown-submenu.active > .dropdown-toggle,
.navigation .dropdown-submenu:hover > .dropdown-item,
.navigation .dropdown-item.active,
.navigation .dropdown-item:hover {
    /* background: rgba(225, 36, 84, 0.05); */
    background-color: var(--background-color);
    color: var(--color);
    outline: none !important;
}
.navigation button:focus {
    outline: 0;
}
@media (min-width: 992px) {
    .navigation .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-in, visibility 0s linear 0.2s,
            transform 0.2s linear;
        display: block;
        visibility: hidden;
        opacity: 0;
        min-width: 200px;
        transform: translateY(10px);
    }
    .navigation .dropleft .dropdown-menu,
    .navigation .dropright .dropdown-menu {
        margin-top: -5px;
    }
    .navigation .dropdown:hover > .dropdown-menu {
        visibility: visible;
        transition: all 0.3s ease 0s;
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-1 {
    background: url("../images/bg/22.jpg") no-repeat 50% 50%;
    background-size: cover;
    position: relative;
}

.banner {
    position: relative;
    overflow: hidden;
    background: #fff;
    background: url("../images/bg/slider-bg-1.jpg") no-repeat;
    background-size: cover;
    min-height: 550px;
}
.banner .block {
    padding: 80px 0px 160px;
}
.banner .block h1 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    text-transform: capitalize;
    color: #de0808;
}

.letter-spacing {
    letter-spacing: 2px;
}

.text-color {
    color: #de0808;
}

.text-color-2 {
    color: #e12454;
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--pure-white);
}

@media (max-width: 480px) {
    .banner .block h1 {
        font-size: 38px;
        line-height: 50px;
    }
    .banner {
        min-height: 450px;
        background: #fff !important;
    }
}
@media (max-width: 400px) {
    .banner .block h1 {
        font-size: 28px;
        line-height: 40px;
    }
    .banner {
        min-height: 450px;
        background: #fff !important;
    }
}
@media (max-width: 768px) {
    .banner .block h1 {
        font-size: 56px;
        line-height: 70px;
    }
    .banner {
        background: #fff !important;
    }
}
@media (max-width: 992px) {
    .banner {
        background: #fff !important;
    }
}

.about_section,
.doctor_section,
.testimonial_section,
.about-section,
.chairman-msg,
.doctor_team_section,
.about_section_content,
.address-office,
.contact-form,
.treatment_services_section,
#empanelments_section,
.cashless_mediclaims_section,
.confirmation {
    background-image: url("../images/mhk_21.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-img img {
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}

.award-img {
    height: 120px;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #eff0f3;
}

.appoinment-content {
    position: relative;
}
.appoinment-content img {
    width: 85%;
}
.appoinment-content .emergency {
    position: absolute;
    content: "";
    right: 10px;
    bottom: 20px;
    background: var(--pure-white);
    padding: 48px;
}
.appoinment-content .emergency h2 {
    color: var(--color);
}
.appoinment-content .emergency i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.appoinment-form {
    margin-top: 40px;
}
.appoinment-form .form-control {
    background: var(--pure-white);
    height: 55px;
    border-color: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
}
.appoinment-form textarea.form-control {
    height: auto;
}

.client-thumb {
    text-align: center;
    background: #fff;
}

.features {
    margin-top: -70px;
}

.feature-item {
    flex-basis: 33.33%;
    margin: 0px 10px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}
.feature-item .feature-icon i {
    font-size: 50px;
    color: #de0808;
}
.feature-item h4 {
    color: #de0808;
}
.feature-item p {
    font-size: 14px;
}

.feature-section.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.w-hours li {
    padding: 6px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.blue-1,
.blue-2,
.blue-3,
.blue-4 {
    padding-block: 25px;
}

.blue-1 {
    border-radius: 5px 0 0 5px;
}

.blue-4 {
    border-radius: 0 5px 5px 0;
}

@media (max-width: 992px) {
    .blue-1 {
        border-radius: 5px 0 0 0;
    }
    .blue-2 {
        border-radius: 0 5px 0 0;
    }
    .blue-3 {
        border-radius: 0 0 0 5px;
    }
    .blue-4 {
        border-radius: 0 0 5px 0;
    }
}

@media (max-width: 576px) {
    .blue-1 {
        border-radius: 5px 5px 0 0;
    }
    .blue-2 {
        border-radius: 0;
    }
    .blue-3 {
        border-radius: 0;
    }
    .blue-4 {
        border-radius: 0 0 5px 5px;
    }
}

.counter-stat {
    text-align: center;
    padding: 75px 0px 75px 0px;
    position: relative;
}
.counter-stat i {
    display: block;
    color: rgba(255, 255, 255, 1);
    font-size: 70px;
    position: absolute;
    right: 0px;
    top: 60px;
    transform: translateY(25px);
}
.counter-stat span {
    /* font-size: 70px; */
    font-size: 48px;
    color: #fff;
    float: left;
}
.counter-stat p {
    /* margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: left; */
    position: absolute;
    top: 50px;
    font-size: 20px;
    color: var(--pure-white);
}

.mb--80 {
    margin-bottom: -80px;
}

.service {
    padding-top: 180px;
}
.service .service-item {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}
.service .icon {
    float: left;
    margin-bottom: 10px;
}
.service i {
    color: #e12454;
}
.service h4 {
    padding-left: 20px;
}
.service .content {
    clear: both;
}

.service-block {
    padding: 20px;
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 38px rgba(21, 40, 82, 0.07);
}
.service-block img {
    width: 100%;
    margin-top: -60px;
    border: 5px solid #fff;
}

.department-service {
    margin-bottom: 40px;
}
.department-service li {
    margin-bottom: 10px;
}
.department-service li i {
    color: #e12454;
}

.doctors .btn-group .btn {
    border-radius: 0px;
    margin: 0px 2px;
    text-transform: capitalize;
    font-size: 16px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
}
.doctors .btn-group .btn.active {
    box-shadow: none !important;
    border-color: transparent;
    background: #e12454;
    color: #fff;
}
.doctors .btn-group .btn.focus {
    box-shadow: none !important;
    border-color: transparent;
}
.doctors .btn-group .btn:focus {
    box-shadow: none !important;
    border-color: transparent;
    background: #e12454;
    color: #fff;
}
.doctors .btn-group .btn:hover {
    box-shadow: none !important;
    border-color: transparent;
    background: #e12454;
    color: #fff;
}
.doctors .btn-group > .btn-group:not(:last-child) > .btn,
.doctors .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.doctors .btn-group > .btn:not(:first-child) {
    border-radius: 3px;
}

.doctor-inner-box {
    overflow: hidden;
}
.doctor-inner-box .doctor-profile {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 8px 16px 0px rgba(200, 183, 255, 0.2);
}
.doctor-inner-box .doctor-profile .doctor-img {
    transition: all 0.35s ease;
    height: 200px;
}
.doctor-inner-box .doctor-profile .doctor-img:hover {
    transform: scale(1.1);
}

.lh-35 {
    line-height: 35px;
}

.doctor-info li {
    margin-bottom: 10px;
    color: #222;
}
.doctor-info li i {
    margin-right: 20px;
    color: #e12454;
}

.read-more {
    color: #de0808;
}

@media (max-width: 480px) {
    .doctors .btn-group {
        display: block;
    }
    .doctors .btn-group .btn {
        margin: 8px 3px;
    }
}
@media (max-width: 400px) {
    .doctors .btn-group {
        display: block;
    }
    .doctors .btn-group .btn {
        margin: 8px 3px;
    }
}
@media (max-width: 768px) {
    .doctors .btn-group {
        display: block;
    }
    .doctors .btn-group .btn {
        margin: 8px 3px;
    }
}
.cta {
    background: url("../images/bg/bg-4.jpg") no-repeat 50% 50%;
    background-size: cover;
    position: relative;
}
.cta:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(34, 58, 102, 0.95);
}

.mb-30 {
    margin-bottom: 30px;
}

.text-color-primary {
    color: #de0808;
}

.cta-section {
    /*
  margin-bottom: 50px;*/
}

.cta-2 {
    background: url("../images/bg/cta-bg.png") no-repeat;
    background-position: center center;
}

.cta-page {
    background: url("../images/bg/banner.jpg") no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial {
    position: relative;
}
.testimonial:before {
    width: 48%;
    height: 100%;
    top: 0;
    left: 0px;
    position: absolute;
    content: "";
    background: url("../images/bg/bg-2.jpg") no-repeat 50% 50%;
}
.testimonial .slick-dots {
    text-align: left;
}

.testimonial-block {
    position: relative;
    margin-bottom: 20px;
}
.testimonial-block p {
    background: #fff;
    font-size: 18px;
}
.testimonial-block .client-info {
    margin-bottom: 20px;
}
.testimonial-block .client-info h4 {
    margin-bottom: 0px;
}
.testimonial-block i {
    font-size: 60px;
    position: absolute;
    right: 46px;
    bottom: 89px;
    opacity: 0.08;
}
.testimonial-block .slick-dots {
    text-align: left;
}

.testimonial-wrap-2 .slick-dots {
    margin-left: -10px;
}

.testimonial-block.style-2 {
    background: #fff;
    padding: 30px;
    margin: 0px 4px;
    margin-bottom: 30px;
}
.testimonial-block.style-2 .testimonial-thumb {
    float: left;
}
.testimonial-block.style-2 .testimonial-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin-right: 20px;
    margin-bottom: 30px;
    border: 5px solid #eff0f3;
    margin-top: -5px;
}
.testimonial-block.style-2 .client-info p {
    clear: both;
    background: transparent;
}
.testimonial-block.style-2 i {
    bottom: -20px;
    color: var(--pure-white);
    opacity: 1;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    filter: drop-shadow(1px 2px 5px #333333);
}

@media (max-width: 480px) {
    .testimonial-wrap {
        margin-left: 0px;
    }
    .testimonial::before {
        display: none;
    }
}
@media (max-width: 400px) {
    .testimonial-wrap {
        margin-left: 0px;
    }
    .testimonial::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .testimonial-wrap {
        margin-left: 0px;
    }
    .testimonial::before {
        display: none;
    }
}
@media (max-width: 992px) {
    .testimonial-wrap {
        margin-left: 0px;
    }
    .testimonial::before {
        display: none;
    }
}
.contact-form-wrap .form-group {
    margin-bottom: 20px;
}
.contact-form-wrap .form-group .form-control {
    height: 60px;
    border: 1px solid #eef2f6;
    box-shadow: none;
    width: 100%;
    background: #f4f9fc;
}
.contact-form-wrap .form-group-2 {
    margin-bottom: 13px;
}
.contact-form-wrap .form-group-2 textarea {
    height: auto;
    border: 1px solid #eef2f6;
    box-shadow: none;
    background: #f4f9fc;
    width: 100%;
}

.social-icons li {
    margin: 0 6px;
}
.social-icons a {
    margin-right: 10px;
    font-size: 18px;
}

.google-map {
    position: relative;
}

.google-map #map {
    width: 100%;
    height: 500px;
}

.mt-90 {
    margin-top: 90px;
}

.contact-block {
    text-align: center;
    border: 5px solid #eef2f6;
    padding: 50px 25px;
}
.contact-block i {
    font-size: 50px;
    margin-bottom: 15px;
    display: inline-block;
    color: #e12454;
}

.blog-item-content h2 {
    font-weight: 600;
    font-size: 38px;
}

/*=================================================================
  Single Blog Page
==================================================================*/
.nav-links .page-numbers {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #eee;
    text-align: center;
    padding-top: 13px;
    font-weight: 600;
    margin-right: 10px;
}
.nav-links .page-numbers:hover {
    background: #de0808;
    color: #fff;
}
.nav-links .page-numbers.current {
    background: #de0808;
    color: #fff;
}

.comment-area .comment-thumb {
    margin-right: 20px;
    margin-bottom: 30px;
}
.comment-area h5 {
    font-size: 18px;
    font-weight: 500;
}
.comment-area span {
    font-size: 14px;
}

.posts-nav h6 {
    font-weight: 500;
}

.quote {
    font-size: 22px;
    color: #de0808;
    padding: 40px;
    font-style: italic;
    border-left: 5px solid #e12454;
    margin: 25px 0px;
}

.tag-option a {
    border: 1px solid #eff0f3;
    padding: 6px 12px;
    color: #6f8ba4;
    font-size: 14px;
}

.comment-form .form-control {
    background: #f7f8fb;
    border-radius: 5px;
    border-color: #f7f8fb;
    height: 50px;
}
.comment-form textarea.form-control {
    height: auto;
}

.post.post-single {
    border: none;
}
.post.post-single .post-thumb {
    margin-top: 30px;
}

.post-sub-heading {
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
}

.post-social-share {
    margin-bottom: 50px;
}

.post-comments {
    margin: 30px 0;
}
.post-comments .media {
    margin-top: 20px;
}
.post-comments .media > .pull-left {
    padding-right: 20px;
}
.post-comments .comment-author {
    margin-top: 0;
    margin-bottom: 0px;
    font-weight: 500;
}
.post-comments .comment-author a {
    color: #de0808;
    font-size: 14px;
    text-transform: uppercase;
}
.post-comments time {
    margin: 0 0 5px;
    display: inline-block;
    color: #808080;
    font-size: 12px;
}
.post-comments .comment-button {
    color: #de0808;
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
}
.post-comments .comment-button i {
    margin-right: 5px;
    display: inline-block;
}
.post-comments .comment-button:hover {
    color: #de0808;
}

.post-excerpt {
    margin-bottom: 60px;
}
.post-excerpt h3 a {
    color: #000;
}
.post-excerpt p {
    margin: 0 0 30px;
}
.post-excerpt blockquote.quote-post {
    margin: 20px 0;
}
.post-excerpt blockquote.quote-post p {
    line-height: 30px;
    font-size: 20px;
    color: #de0808;
}

.comments-section {
    margin-top: 35px;
}

.author-about {
    margin-top: 40px;
}

.post-author {
    margin-right: 20px;
}

.post-author > img {
    border: 1px solid #dedede;
    max-width: 120px;
    padding: 5px;
    width: 100%;
}

.comment-list ul {
    margin-top: 20px;
}
.comment-list ul li {
    margin-bottom: 20px;
}

.comment-wrap {
    border: 1px solid #dedede;
    border-radius: 1px;
    margin-left: 20px;
    padding: 10px;
    position: relative;
}
.comment-wrap .author-avatar {
    margin-right: 10px;
}
.comment-wrap .media .media-heading {
    font-size: 14px;
    margin-bottom: 8px;
}
.comment-wrap .media .media-heading a {
    color: #de0808;
    font-size: 13px;
}
.comment-wrap .media .comment-meta {
    font-size: 12px;
    color: #888;
}
.comment-wrap .media p {
    margin-top: 15px;
}

.comment-reply-form {
    margin-top: 80px;
}
.comment-reply-form input,
.comment-reply-form textarea {
    height: 35px;
    border-radius: 0;
    box-shadow: none;
}
.comment-reply-form input:focus,
.comment-reply-form textarea:focus {
    box-shadow: none;
    border: 1px solid #de0808;
}
.comment-reply-form textarea,
.comment-reply-form .btn-main {
    height: auto;
}

.sidebar-widget {
    margin-bottom: 30px;
    padding-bottom: 35px;
}
.sidebar-widget h5 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.sidebar-widget h5:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 35px;
    height: 3px;
    background: #e12454;
}
.sidebar-widget.latest-post .media img {
    border-radius: 7px;
}
.sidebar-widget.latest-post .media h6 {
    font-weight: 500;
    line-height: 1.4;
}
.sidebar-widget.latest-post .media p {
    font-size: 12px;
}
.sidebar-widget.category ul li {
    margin-bottom: 10px;
}
.sidebar-widget.category ul li a {
    color: #222;
    transition: all 0.3s ease;
}
.sidebar-widget.category ul li a:hover {
    color: #de0808;
    padding-left: 5px;
}
.sidebar-widget.category ul li span {
    margin-left: 10px;
}
.sidebar-widget.tags a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    line-height: 41px;
    height: 41px;
    font-weight: 500;
    border-radius: 20px;
    color: #666;
    display: inline-block;
    background-color: #eff0f3;
    margin: 0 7px 10px 0;
    padding: 0 25px;
    transition: all 0.2s ease;
}
.sidebar-widget.tags a:hover {
    color: #fff;
    background: #de0808;
}
.sidebar-widget.schedule-widget {
    background: #f4f9fc;
    padding: 25px;
}
.sidebar-widget.schedule-widget ul li {
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
}

.search-form {
    position: relative;
}
.search-form i {
    position: absolute;
    right: 15px;
    top: 35%;
}

.footer {
    padding-bottom: 10px;
}

/* .footer .copyright a {
  font-weight: 600;
} */

.footer .copyright {
    text-align: center;
    color: var(--pure-white);
    border-top: 1px solid #bbbaba;
    padding-top: 5px;
    font-weight: normal;
    font-size: 12px;
}

.footer .copyright a {
    font-size: 14px;
    color: var(--pure-white);
}

.lh-35 {
    line-height: 35px;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
}
.logo h3 {
    color: #de0808;
}
.logo span {
    color: #de0808;
}

.widget .divider {
    height: 3px;
}
.widget h4 {
    color: #de0808;
}
.widget .footer-menu a {
    color: var(--pure-white) !important;
}
.widget .footer-menu a:hover {
    color: var(--pure-white) !important;
    opacity: ;
}

.footer-contact-block span {
    font-weight: 400;
    color: var(--pure-white);
    padding: 5px;
}
.footer-contact-block i {
    font-size: 20px;
}

.footer-btm {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-socials li a {
    width: 45px;
    height: 45px;
    /* background: #6f8ba4; */
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    padding-top: 12px;
}

.widget-contact h6 {
    font-weight: 500;
    margin-bottom: 18px;
}
.widget-contact h6 i {
    color: #e12454;
}

.subscribe {
    position: relative;
}
.subscribe .form-control {
    border-radius: 50px;
    height: 60px;
    padding-left: 25px;
    border-color: #eee;
}
.subscribe .btn {
    position: absolute;
    right: 6px;
    top: 6px;
}

.backtop {
    border: 2px solid var(--pure-white);
    position: fixed;
    background: var(--background-color);
    z-index: 9999;
    display: inline-block;
    right: 55px;
    width: 50px;
    height: 50px;
    bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 50px;
    transition: 0.3s;
}
@media (max-width: 992px) {
    .backtop {
        bottom: 10px;
        right: 15px;
    }
}
@media (max-width: 768px) {
    .backtop {
        width: 45px;
        height: 45px;
    }
}
.backtop:hover {
    background-color: var(--accent-color);
}

.backtop i {
    color: #fff;
    font-size: 30px;
}

/* .backtop:hover i {
    color: var(--accent-color);
} */


.reveal {
    transition: all 0.3s;
    cursor: pointer;
    opacity: 1;
}
/*# sourceMappingURL=style.css.map */

.team-doctor {
    /* background: url(../images/bg/bg_our_team.jpg); */
    text-align: center;
    color: #000;
}

.team-doctor p {
    line-height: 28px;
    font-size: 16px;
}

.testimonial-2 {
    /* background: url(../images/bg/testimonial-bg.jpg) left no-repeat fixed; */
}

.doctors .section-title h2 {
    color: #4d4141;
}

.doctors i {
    color: #f79219;
    font-size: 24px;
}

.service-layer {
    margin-top: 50px;
    padding: 50px;
}

.service-layer p {
    font-size: 28px;
    line-height: 45px;
    letter-spacing: 1px;
    font-family: "Exo";
    color: #000;
    font-weight: 600;
}

.service-image img {
    max-width: 100%;
}

.nav .nav-tabs > li {
    width: 50% !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    background: #f18322;
    text-align: center;
    font-size: 32px;
    color: #fff;
    font-family: revert;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-tabs > li > a {
    background: #ffc99a;
    text-align: center;
    font-size: 32px;
    color: #f47200;
    font-family: revert;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav > li > a:focus,
.nav > li > a:hover,
.nav > li > a:active {
    text-decoration: none;
    background-color: #eee;
}

.service-info img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.service-info p {
    font-size: 18px;
    text-align: center;
    font-family: "Exo";
    color: #000;
}

.service-info p > span {
    font-weight: 700;
}

.tab-content {
    padding: 50px 0;
}

.service-bottom {
    background: var(--pure-white);
    color: var(--accent-color);
    padding: 10px 0;
}

.service-bottom {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.service-bottom .appointment_text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-bottom h4,
.service-bottom h3 {
    color: var(--accent-color);
    font-size: 24px;
}

.appointment_text p {
    /* margin-top: 20px; */
    margin-bottom: 0;
    text-align: center;
}

.hadphones {
    background: #fff;
    color: #000;
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

.hadphones i {
    display: block;
    text-align: center;
    /* vertical-align: middle; */
    padding: 17px;
    font-size: 65px;
}

.ser-appoin a {
    /* vertical-align: middle; */
    display: block;
    margin: 20px auto;
    background: var(--background-color);
    color: var(--pure-white);
    text-align: center;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 0.3rem;
}

@media (min-width: 768px) {
    .ser-appoin {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.navbar-brand {
    height: auto;
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }
}

.navbar-nav {
    float: right;
}

.services-home {
    background: var(--pure-white);
}

.services-home h2 {
    color: #000;
    text-align: center;
    padding: 50px 0;
}

.services-home img {
    margin: 0 auto;
    display: block;
    max-width: 100% !important;
    overflow: hidden;
}

.services-home p {
    font-size: 18px;
    text-align: center;
    font-family: "Exo";
    color: #000;
}

.services-home p > span {
    font-weight: 700;
}

.services-home a {
    padding: 0px !important;
    background: #ccc !important;
}

.services-home a h6 {
    margin: 5px 0;
    text-transform: uppercase;
}

.teamdoc {
    background: #f3fefe;
    border-bottom: 6px #0679bb solid;
    margin: 50px 0;
    text-align: center;
}

.teamdoc img {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 100px;
}

.teamdoc h3 {
    text-align: center;
    color: #000;
    font-style: italic;
}

.bg-2 {
    background: url("../images/bg/bg_contact.jpg") no-repeat;
    background-size: cover;
    position: relative;
    height: 400px;
}

.box-contact img {
    max-width: 100%;
}

@media (max-width: 992px) {
    .box-contact {
        text-align: center;
    }
    .box-contact img {
        max-width: 50%;
    }
}

.textbox {
    text-align: left;
    padding: 50px 70px 0 70px;
}

.textbox h3 {
    max-width: 560px;
    font-size: 28px;
    line-height: 44px;
    color: #282828;
    font-weight: 700;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.textbox h3 a {
    color: #f9bf34;
}

.box-contact {
    /* background: #fff;
  box-shadow: 2px 0px 4px #ccc; */
    /* position: relative;
  margin-top: -200px; */
}

.page-title .block h5 {
    color: #fff;
}

.our_centers_title {
    color: var(--accent-color);
}

@media (max-width: 576px) {
    .our_centers_title {
        font-size: 36px;
    }
}
.adres {
    text-align: center;
    padding: 20px;
    background: var(--pure-white);
    margin: 50px 0;
    border-radius: 0.5rem;
    min-height: 85%;
}

.adres img {
    border-radius: 0.45rem;
}

.adres h3,
.adres p {
    color: var(--accent-color);
}

.adres img {
    margin: 0 auto;
    display: block;
}

.widget-contact img {
    max-width: 60%;
}

.whatright {
    transform: translateY(0);
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    text-align: center;
    position: fixed;
    right: 10.7rem;
    bottom: 4.3rem;
    z-index: 20;
}

.floating-whatsapp {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    position: relative;
    background-color: #35d766;
    border: 1px solid #7dffa5;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    display: inline-block;
    margin-left: 0.5rem;
}

.floating-whatsapp:hover {
    box-shadow: 0 0 0.7rem 0.1rem #73ec98;
}

.icon-floating-whatsapp {
    position: absolute;
    top: 45%;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-45%) !important;
    text-decoration: none;
    color: #ecfff1;
    font-size: 2.5rem;
    overflow: hidden;
    left: 0;
    right: 0;
}

.floating-whatsapp a:hover {
    color: #fff;
}

.map-others {
    background-color: var(--pure-white);
}

.map-others h2 {
    padding: 10px;
    text-align: center;
}

.map-others .location_title {
    color: var(--accent-color);
}

.map-others .location_title h3 {
    color: var(--pure-white);
}

h3.location_area {
    color: var(--accent-color);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    h3.location_area {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

.map-others iframe {
    border-radius: 0.5rem;
}

.map h2 {
    padding: 10px;
    text-align: center;
}

.schemes {
    text-align: center;
}

.scheme-image img {
    background-color: var(--pure-white);
    width: 80%;
    margin: 20px 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.thankyou_title{
    font-family: var(--font-poppins) !important;
}

.thankyou_title_icon{
    color: var(--accent-color);
}
.empanelments_section_title{
    color: var(--accent-color);
}

@media(max-width:576px){
    .empanelments_section_title,
    .thankyou_title{
            font-size: 30px;
    }
    .thankyou_title_icon{
        font-size: 40px;
    }

}

.empanelments_section_content{
    margin-bottom: 60px;
    line-height: 1.5;
}

.scheme-image p{
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 500;
    font-family: var(--font-poppins);

}

.safety_measures_title{
    color: var(--accent);
}
.safety_measures_content{
    list-style-type: disc;
    margin-bottom: 2rem;
}


.ngo_section .ngo_title{
    color: var(--accent-color);
    font-family: var(--font-poppins) !important;
    font-weight: 700;
}

.ngo_section p{
    font-family: var(--font-poppins) !important;
    text-align: center;
    font-size: 18px !important;
}

.ngo_accounts_details{
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ngo_accounts_details h3{
    color: var(--bg) !important;
    font-family: var(--font-poppins) !important;
}
.ngo_accounts_details p{
    font-family: var(--font-poppins) !important;
    font-size: 16px !important;
    color: var(--bg) !important;
}

.ngo_join_msg h2{
    font-family: var(--font-poppins);
    color: var(--accent-color) !important;
}

.ngo_join_msg p{
    font-family: var(--font-poppins) !important;
    font-size: 18px !important;
}

.donation_msg_section{
    background-color: var(--accent-color);
}

.donation_msg_section p{
    font-family: var(--font-poppins) !important;
    color: var(--card) !important;
}

.safety_measures_content li{
    font-size: 16px;
    color: var(--muted);
    font-family: var(--font-poppins);
}

.tpa_list h3 {
    padding: 10px;
    text-align: center;
    background: var(--background-color);
    color: #fff;
    margin: 50px auto;
}

.tpa_list ul li {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
}

.terms-info ul {
    color: #063497;
    font-family: cursive;
    font-size: 18px;
    line-height: 35px;
}

.bg-112 {
    background: url("../images/bg/contact-bg.jpg") no-repeat 50% 70%;
    background-size: cover;
    position: relative;
}

/*faq start*/

.section_padding_130 {
    padding-top: 130px;
    padding-bottom: 130px;
}
.faq_area {
    position: relative;
    z-index: 1;
    background-color: #f5f5ff;
}

.faq-accordian {
    position: relative;
    z-index: 1;
}
.faq-accordian .card {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}
.faq-accordian .card:last-child {
    margin-bottom: 0;
}
.faq-accordian .card .card-header {
    background-color: #ffffff;
    padding: 0;
    border-bottom-color: #ebebeb;
}
.faq-accordian .card .card-header h6 {
    cursor: pointer;
    padding: 1.75rem 2rem;
    color: #3f43fd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.faq-accordian .card .card-header h6 span {
    font-size: 1.5rem;
}
.faq-accordian .card .card-header h6.collapsed {
    color: #070a57;
}
.faq-accordian .card .card-header h6.collapsed span {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.faq-accordian .card .card-body {
    padding: 1.75rem 2rem;
}
.faq-accordian .card .card-body p:last-child {
    margin-bottom: 0;
}

/*ngo page*/
.ngo1 {
    padding: 50px;
    margin: 50px auto;
}

.ngo1 h1 {
    font-size: 60px;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 100;
    font-family: math;
}

.ngo1 p {
    font-size: 22px;
    font-family: "Exo";
    letter-spacing: 1px;
    color: #424040;
}

.bankdetails {
    border: 5px solid #000;
    padding: 50px;
    text-align: center;
}
.ngo-2 p {
    font-size: 22px;
    font-family: "Exo";
    letter-spacing: 1px;
    color: #424040;
}

.bankdetails p span {
    font-weight: 700;
    text-decoration: underline;
}

.ngo-3 {
    padding: 70px 0 50px 0;
}
.ngo-3 p {
    text-align: center;
    font-size: 22px;
    font-family: "Exo";
    letter-spacing: 1px;
    color: #424040;
}

.ngo-4 {
    padding: 50px;
}
.ngo-4 h2 {
    font-size: 30px;
    color: blue;
}
.ngo-4 p {
    font-size: 22px;
    font-family: "Exo";
    letter-spacing: 1px;
    color: #424040;
    margin-bottom: 60px;
}

.pateintcare {
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 110, 255, 0.5)
    );
    margin-bottom: 20px;
    padding: 30px;
}
.pateintcare1 {
    background-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 0),
        rgba(0, 110, 255, 0.5)
    );
    margin-bottom: 20px;
    padding: 30px;
}
.pateintcare p {
    margin-bottom: 0;
}
.pateintcare1 p {
    margin-bottom: 0;
}
.pateintcare1 p > span {
    background: #0064ff;
    padding: 3px;
    color: #fff;
}
.pateintcare p > span {
    background: #0064ff;
    padding: 3px;
    color: #fff;
}

.ngo-5 {
    padding: 50px;
}
.ngo-5 h2 {
    text-align: center;
    color: var(--accent-color);
    font-family: var(--font-poppins);
}

.ngo_oragnise ul{
    font-family: var(--font-poppins) !important;
    list-style-type: disc;
    font-size: 16px !important;
}

.ngo_oragnise p{
    font-size: 18px !important;
    font-family: var(--font-poppins) !important;
}
.ngo-5 p {
    font-size: 22px;
    font-family: "Exo";
    letter-spacing: 1px;
    color: #424040;
}

.ngo-5 ul {
    font-size: 22px;
    font-family: "Exo";
    letter-spacing: 1px;
    color: #424040;
}


.pharmacy_section{
    display: flex;
    align-items: center;
}

/*about page*/
.about-pg h2 {
    padding: 50px 10px;
    text-align: center;
    color: #de0808;
}

.about-pg p {
    letter-spacing: 1px;
    color: #5b2eeb;
    font-weight: 600;
}

.about-pg ul {
    letter-spacing: 1px;
    color: #f42727;
    font-weight: 600;
}

.blue-1 {
    background-color: #0952a5;
}

.blue-2 {
    background-color: #0b63c6;
}

.blue-3 {
    background-color: #0a6cda;
}

.blue-4 {
    background-color: #077afc;
}

.vission-mission {
    background: url(../images/bg/bg-8.jpg);
    padding: 100px 0;
}

.vission-mission h2 {
    text-align: center;
    color: #f42727;
}

.mission {
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
    border-left: 10px solid #f42727;
    color: #000;
}

.mission h3 {
    color: #f42727;
    letter-spacing: 1px;
    font-size: 28px;
    font-family: unset;
}

.mission ul li {
    font-size: 18px;
    font-family: cursive;
    line-height: 36px;
}

.chairman-msg {
    padding: 50px 0px;
}

/* .chairman-msg img{
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 1px 1px 8px #9f8f8f;
  } */

/* .chairman-msg h2{
    text-align: center;
    color: #5b2eeb;
    margin-bottom: 20px;
  } */

/* .chairman-msg span{
    color: #f42727;
    font-weight: 700;
    font-family: cursive;
    font-size: 18px;
  } */

.chairman-msg p {
    letter-spacing: 1px;
}

/*optical and pharmacy*/
.optical-categ {
    border: 2px solid #0c274b;
    margin: 50px auto;
}
.optical-details h2 {
    text-align: center;
    padding: 20px 0;
    color: #124891;
}

.optical-details p {
    font-size: 18px;
    font-family: math;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 20px;
}

.optical-categ img {
    max-height: 200px;
    width: 100%;
    margin: 0 auto;
}

.optical-categ p {
    text-align: center;
    background: #0c274b;
    color: #fff;
    margin-bottom: 0px;
}

.optical-background {
    background: url(../images/contact-lens-technology.png);
    background-attachment: fixed;
}

.pharma1 {
    margin: 80px 0;
    padding: 15px;
}

.pharma1 {
    font-size: 18px;
}



.pha-img {
    max-height: 400px;
    overflow: hidden;
}
.pahrma-details {
    margin-bottom: 50px;
}

.pahrma-details p {
    font-family: var(--font-poppins);
    letter-spacing: 1px;
    color: #000;
}
.pahrma-details ul li {
    background: aliceblue;
    margin: 5px;
    padding-left: 5px;
    color: #000;
}

.list-styled {
    padding-left: 0;
}

.updates {
    margin: 50px auto;
}
.update-categ {
    box-shadow: 1px 1px 10px #b19f9f;
    margin-bottom: 40px;
}
.update-categ p {
    margin-left: 7px;
}
.update-categ h2 {
    margin-left: 7px;
}

.update-categ img {
    max-height: 250px;
    max-width: 100%;
    margin: 0 auto;
}
.description-updates {
    height: 150px;
    overflow-y: scroll;
    margin-left: 7px;
}

.update-fix {
    position: fixed;
    top: 50%;
    right: -28px;
    z-index: 1;
    transform: rotate(90deg);
    background: #0c274b;
    color: #fff;
    padding: 3px 10px;
    text-transform: uppercase;
}

.update-fix a {
    color: #fff;
}

@media (max-width: 992px) {
    .whatright {
        right: 6.7rem;
        bottom: 3.3rem;
    }
    .floating-whatsapp {
        height: 4.5rem;
        width: 4.5rem;
    }

    .icon-floating-whatsapp {
        top: 45%;
    }
}

@media (max-width: 768px) {
    .whatright {
        right: 6.7rem;
        bottom: 3.3rem;
    }
    .floating-whatsapp {
        height: 4.5rem;
        width: 4.5rem;
    }

    .icon-floating-whatsapp {
        top: 45%;
    }
}

.conrneal-treatment {
    text-align: center;
}
.conrneal-treatment h2 {
    background: #f6e5d7;
    padding: 10px;
}
.conrneal-treatment img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
    height: 150px;
}

.floating-bottom-bar {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%);
    z-index: 999999;
    height: 50px;
    background-color: var(--background-color);
    border-radius: 5rem;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
        rgba(17, 17, 26, 0.1) 0px 0px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    font-family: var(--font-poppins);
    color: var(--pure-white);
    font-size: 14px;
}

.floating-bottom-bar a {
    background-color: var(--pure-white);
    display: block;
    padding: 5px 20px;
    border-radius: 5rem;
    margin-inline: 0.5rem;
    color: var(--color);
}

.floating-bottom-bar i {
    font-size: 2rem;
    padding-right: 0.75rem;
}

.floating-bottom-bar ul {
    display: flexbox;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
}

.appointment_section {
    background-color: var(--background-color);
    padding: 100px 50px;
}

/*Services Section */

.services_section {
    padding: 100px 50px;
}

.services_section,
.appointment_section,
.footer_section,
.vission-mission {
    background-image: url(../images/25_afcas12.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section-title p {
    line-height: 24px;
}

.section-title .our_services {
    color: var(--pure-white);
    font-weight: 300;
}

.main_services_content{
    width: 100%; 
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: first baseline;
    justify-content: center;
}

.services_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.owl-carousel.owl-drag .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_card {
    width: 200px;
    height: 230px;
    background-color: var(--pure-white);
    border-radius: 0.7rem;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.service_card img {
    border-radius: 0.7rem 0.7rem 0 0;
    height: 150px;
}
.service_card p {
    padding: 10px;
    line-height: 20px;
    color: var(--accent-color);
    font-weight: 400;
    font-size: 14px;
}

.owl-nav,
.owl-dots {
    display: none;
}

.team_title {
    font-size: 4rem;
    color: var(--color);
    text-transform: uppercase;
}

.doctor_section {
    padding: 100px 50px;
}

.client-thumb {
    font-family: var(--font-poppins);
    background-color: var(--pure-white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-block: 20px;
    padding: 20px;
    border-radius: 0.5rem;
    min-height: 400px !important;
}

.team_name {
    color: var(--color);
    font-size: 18px !important;
    font-family: Poppins, sans-serif !important;
}

.team_position {
    font-size: 12px !important;
    line-height: 20px !important;
    font-family: Poppins, sans-serif !important;
}

.testimonial_section {
    padding-block: 50px;
}

.testimonial_section h2 {
    color: var(--color);
}

.testimonial_container {
    border-radius: 0.5rem;
    height: 250px;
    background-color: var(--background-color) !important;
}

@media (max-width: 576px) {
    .testimonial_container {
        height: 300px;
    }
}

.testimonial_client_name,
.testimonial_client_position,
.testimonial_client_desc {
    color: var(--pure-white) !important;
}

.testimonial_client_desc {
    text-align: justify;
    font-size: 14px !important;
}

.footer_section {
    background-color: var(--background-color);
}

.footer_details {
    color: var(--pure-white) !important;
    text-align: justify;
    padding-right: 10px;
    font-size: 14px;
    line-height: 22px;
    padding-top: 6px;
}

.footer_title {
    color: var(--pure-white) !important;
}

.icofont-email {
    color: var(--pure-white);
}

.footer_email a,
.footer_phone a {
    color: var(--pure-white) !important;
}

.icofont-support {
    color: var(--pure-white);
}

.nabh_logo img {
    width: 70px;
    height: 70px;
}

.header_top_container {
    padding: 0px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.navbar-brand {
    display: flex;
    align-items: end;
    justify-content: end;
}

@media (max-width: 992px) {
    .navbar-brand {
        justify-content: flex-start;
    }
    .navbar-brand img {
        width: 100px;
    }
}

.kapoorSlogan_bar {
    background-color: var(--background-color);
    color: var(--pure-white);
    text-align: center;
    padding: 10px;
    display: none;
}

.navbar_button {
    display: none;
}

@media (max-width: 992px) {
    .kapoorSlogan_bar {
        display: block;
    }

    .kapoorSloganMidbar {
        display: none;
    }
    .nabh_logo {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .navbar_button {
        display: block;
        text-align: right;
    }
}

.icofont-navigation-menu {
    font-size: 28px;
}

/* ========================================= Nav Toggler Menu ===================== */

#navtogglerMenu {
    display: none;
    border: none;
    background: none;
    padding: 6px;
}

@media (max-width: 992px) {
    #navtogglerMenu {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1200;
    }
}

.nav-dialog {
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 46, 132, 0.95);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-dialog.open {
    transform: translateX(0);
}

.nav-dialog-content {
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: -80px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.close-btn:hover {
    transform: rotate(90deg);
}

.nav-link,
.dropdown-item {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link:hover,
.dropdown-item:hover {
    color: #ffd700 !important;
}

.active > a {
    color: #ffd700 !important;
}

.navbar-toggler {
    width: 35px;
    height: 30px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-line {
    display: block;
    width: 100%;
    height: 4px;
    margin: 5px 0;
    background: #142e84;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.navbar-toggler.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #fff;
}
.navbar-toggler.active .burger-line:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #fff;
}


.navbar-nav>li>.dropdown-menu{
    background-color: var(--background-color);
}

.navbar-nav>li>.dropdown-menu li a:visited{
    background-color: var(--background-color);
}


/* ========================================= Achivement section ===================== */

.achievement_section {
    margin-top: 4rem;
    width: 95%;
}

@media (max-width: 576px) {
    .about_section,
    .services_section,
    .doctor_section,
    .appointment_section,
    .testimonial_section,
    .section {
        padding: 40px 0;
        padding-block: 40px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .services_section h2 {
        font-size: 4rem;
        padding-block: 15px;
    }

    .appointment_section h2 {
        font-size: 4rem;
        line-height: 5rem;
    }

    .testimonial_section h2 {
        font-size: 4rem;
    }
}

.dropdown-menu li a {
    font-size: 14px !important;
}

/* ======================================== Footer Section ======================================== */

.footer_address_list {
    list-style-type: none;
}

.footer_address_list strong,
.footer_address_list p {
    font-size: 14px;
    line-height: 22px;
    color: var(--pure-white);
}

.footer_menu_section li a {
    font-size: 14px;
}

.footer_contact span {
    font-size: 14px;
    font-weight: normal;
}

.footer_contact h4 {
    margin-top: -10px;
    padding-top: 10px;
    padding-left: 35px;
    font-size: 16px;
    font-weight: normal;
}

/* ======================================== Sticky Bar Section ======================================== */

/* Sticky Bar Wrapper (default: mobile view) */
.sticky-bar {
    position: fixed;
    /* right: 15px; */
    bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 1200;
    display: flex;
    justify-content: center;
    /* border: 1px solid white; */
    width: 100%;
}

/* Common Button Styles */
.sticky-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: popIn 0.6s ease forwards;
    opacity: 0;
}

.sticky-btn:hover i {
    color: var(--pure-white) !important;
    transform: scale(1.1);
}

/* Animate sequentially */
.sticky-btn:nth-child(1) {
    animation-delay: 0.1s;
}
.sticky-btn:nth-child(2) {
    animation-delay: 0.2s;
}
.sticky-btn:nth-child(3) {
    animation-delay: 0.3s;
}
.sticky-btn:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes popIn {
    from {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Hover effect */
.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

/* Brand Colors */
.sticky-btn.appointment {
    background: #164e3e;
    border: 2px solid var(--pure-white);
} /* Appointment green */
.sticky-btn.whatsapp {
    background: #07d653;
    border: 2px solid var(--pure-white);

} /* WhatsApp green */
.sticky-btn.gmail {
    background: #f0311f;    
    border: 2px solid var(--pure-white);

} /* Gmail red */
.sticky-btn.call {
    background: #1b446d;
    border: 2px solid var(--pure-white);

} /* Call blue */

/* Desktop: bottom horizontal */
@media (min-width: 768px) { 
    .sticky-bar {
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 18px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
}
a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
section {
    padding: 60px 0;
    /* min-height: 100vh;*/
}

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
}

.sec-title h2:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
}

.sec-title.light h2 {
    color: #ffffff;
}

.sec-title.text-center h2:before {
    left: 50%;
    margin-left: -25px;
}

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: var(--background-color);
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
    color: #44bce2;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: var(--accent-color);
}

.btn-style-one:hover {
    color: var(--pure-white);
}

.btn-box a:link,
.btn-box a:active,
.btn-box a:visited {
    color: var(--pure-white);
}
.about-section {
    position: relative;
    padding: 120px 0 70px;
}

.about-section .sec-title {
    margin-bottom: 45px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-section .text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
}

.about-section .list-style-one {
    margin-bottom: 45px;
}

.about-section .btn-box {
    position: relative;
}

.about-section .btn-box a {
    padding: 15px 50px;
}

.about-section .image-column {
    position: relative;
}

.about-section .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-left: 120px;
    padding-bottom: 125px;
}

.about-section .image-column .inner-column:before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 520px;
    width: 520px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
}

.about-section .image-column .image-1 {
    position: relative;
}

.about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
}

.about-section .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
}

.about-section .image-column .video-link .link {
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about_us_first_msg {
    display: none;
}

.about_us_image img {
    border-radius: 0.5rem;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .about_us_first_msg {
        display: inline-block;
        padding: 15px;
        margin-bottom: 20px;
    }

    .about_us_second_msg {
        display: none;
    }

    .about_us_msg {
        margin-block: 20px;
        margin-top: 0;
    }
}

.vission_card {
    border-radius: 0.5rem;
    background-color: var(--pure-white);
    padding: 20px;
    margin: 20px;
    color: #222222;
    font-family: var(--font-poppins);
    min-height: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.vission_card img {
    border-radius: 0.5rem;
}

.vission_card h2 {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .v-m-card {
        margin-bottom: 20px;
    }
    .v-m-card h2 {
        font-size: 36px;
    }

    .v-m-card p {
        text-align: center;
    }
}

.chairman_container {
    background-color: var(--pure-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 0.5rem;
    padding: 25px;
}

.chairman_img {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chairman_img br {
    display: none;
}
.chairman_msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chairman_msg .sec-title {
    margin-bottom: 0;
}

.chairman_msg .second_msg h2 {
    font-size: 36px;
}

.chairman_container .first_msg {
    display: none;
}

@media (max-width: 992px) {
    .chairman_msg .second_msg {
        display: none;
    }

    .chairman_container .first_msg {
        display: inline-block;
        text-align: center;
    }

    .chairman_container .first_msg h3 {
        line-height: 36px;
    }

    .chairman_container .sec-title {
        margin-bottom: 20px;
    }

    .chairman_msg p {
        text-align: center;
        margin-top: 20px;
    }
}

.our_team_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.our_team_content .sec-title {
    margin-bottom: 20px;
}

.our_team_section {
    margin-top: 50px;
}

#symptoms_section {
    margin-top: 20px;
    padding: 75px 0;
}

.symptons_section_btn {
    color: var(--pure-white);
    padding: 16px;
    font-size: 24px;
    background: var(--background-color);
}

.symptons_section_txt {
    margin-top: 20px;
    line-height: 1.9;
    text-align: justify;
}

.treatment_services_section {
    padding-inline: 30px;
}

/* styles.css — Clean, responsive table styles */
/* styles.css — Clean, responsive table styles */
:root {
  --max-width: 1100px;
  --accent: #0b5ed7;
  --muted: #666;
  --bg: #fff;
  --card: #f9fafb;
  --radius: 10px;
}

.container {
  max-width: var(--max-width);
  width: 100%;
}
.site-header {
  width: 100%;
  margin-bottom: 18px;
  text-align: left;
}
.site-header h1 {
  margin: 0 0 6px 0;
  font-size: 1.6rem;
}
.note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 12px 0;
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.responsive-table thead {
  background: linear-gradient(90deg, var(--accent), #2d9bf0);
  color: #fff;
}
.responsive-table thead th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}
.responsive-table tbody tr {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.responsive-table tbody td {
  padding: 10px 14px;
  font-size: 14px;
}
.responsive-table tbody tr:nth-child(even) {
  background: transparent;
}
@media (max-width: 720px) {
  .responsive-table thead {
    display: none;
  }
  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table tr {
    margin-bottom: 12px;
    border-radius: 8px;
    background: var(--bg);
    padding: 10px;
  }
  .responsive-table td {
    padding: 6px 8px;
    position: relative;
    text-align: right;
  }
  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 8px;
    top: 6px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--muted);
  }
  .responsive-table td:last-child {
    border-bottom: 0;
  }
}
.site-footer {
  max-width: var(--max-width);
  width: 100%;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}
/* Authorised & Empanelled section styles (plain CSS) */
#authorised-empanelled {
  margin-top: 20px;
}
#authorised-empanelled h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--accent);
}
.two-tables {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.table-card {
  flex: 1 1 320px;
  background: var(--card);
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  min-width: 260px;
}
.table-card h3 {
  margin: 0 0 8px 0;
  font-size: 14px ;
  color: var(--accent);
}
.org-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  column-count: 2;
  column-gap: 18px;
}
.org-list li {
  break-inside: avoid;
  padding: 6px 0;
  font-size: 14px;
  color: #111;
}
@media (max-width: 720px) {
  .org-list {
    column-count: 1;
  }
  .two-tables {
    flex-direction: column;
  }
}

.appointment_first_message{
    display: none;

}

@media(max-width: 992px){
    .appointment_first_message{
        display: block;
        color: var(--pure-white);
        margin-bottom: 30px !important;
        text-align: center;
    }
    .appointment_second_message{
        display: none;
    }
    .appoinment-content{
        text-align:center;
    }
}


.text-appointement strong{
    font-size: 20px;
}



.slick-prev:before, .slick-next:before{
    color: var(--accent-color);
    font-size: 24px;
    opacity: 1.0;
}


.footer-btm{
    margin-bottom: 6rem!important;
}

@media(max-width: 768px){
    .footer-btm{
        margin-bottom: 3.8rem !important;
    }
}


/* Make table scroll horizontally if too wide */
.responsive-table-wrapper {
  overflow-x: auto;
}

/* Base styling */
.custom-responsive-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dee2e6;
}

.custom-responsive-table td {
  padding: 12px;
  border: 1px solid #dee2e6;
}

/* Odd-even row background */
.custom-responsive-table tr:nth-child(odd) {
  background-color: #f9f9f9; /* light gray */
}

.custom-responsive-table tr:nth-child(even) {
  background-color: #ffffff; /* white */
}

/* Mobile view: stack columns */
@media (max-width: 768px) {
  .custom-responsive-table,
  .custom-responsive-table tbody,
  .custom-responsive-table tr,
  .custom-responsive-table td {
    display: block;
    width: 100%;
  }

  .custom-responsive-table tr {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
  }

  .custom-responsive-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: left;
    background: none !important; /* remove odd/even effect inside stacked view */
  }

  .custom-responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 12px;
    font-weight: bold;
    color: #495057;
  }

  .custom-responsive-table td:last-child {
    border-bottom: none;
  }
}

